Complete.Org: Mailing Lists: Archives: freeciv-dev: April 2003:
[Freeciv-Dev] (PR#4016) compile fix for gui-win32
Home

[Freeciv-Dev] (PR#4016) compile fix for gui-win32

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: undisclosed-recipients:;
Subject: [Freeciv-Dev] (PR#4016) compile fix for gui-win32
From: "Jason Short" <jdorje@xxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 16 Apr 2003 12:00:24 -0700
Reply-to: rt@xxxxxxxxxxxxxx

The attached patch fixes a compile-error-causing typo a recent patch
introduced into gui-win32.

jason

? client/diff
Index: client/gui-win32/mapview.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/gui-win32/mapview.c,v
retrieving revision 1.67
diff -u -r1.67 mapview.c
--- client/gui-win32/mapview.c  2003/04/16 08:26:56     1.67
+++ client/gui-win32/mapview.c  2003/04/16 18:56:45
@@ -886,7 +886,7 @@
     rc.left = OVERVIEW_TILE_WIDTH * x;
     rc.right = rc.left + OVERVIEW_TILE_WIDTH;
     rc.top = OVERVIEW_TILE_HEIGHT * y;
-    rc.bottom = rc.top + OVERVIEEW_TILE_HEIGHT;
+    rc.bottom = rc.top + OVERVIEW_TILE_HEIGHT;
     FillRect(overviewstoredc, &rc, brush_std[overview_tile_color(x, y)]);
 
     map_to_overview_pos(&overview_x, &overview_y, x, y);

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#4016) compile fix for gui-win32, Jason Short <=