summaryrefslogtreecommitdiff
path: root/settings_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-09 21:25:44 +0000
committertron <tron@openttd.org>2005-01-09 21:25:44 +0000
commit49584082a08db84344a54ae7e0a7927915261edf (patch)
tree3a16c9375ca0fbd2f06a419b1b0876bf48c7a3e0 /settings_gui.c
parentc6c86abeeec71db7ae8ef484af6f6e2373528a71 (diff)
downloadopenttd-49584082a08db84344a54ae7e0a7927915261edf.tar.xz
(svn r1451) Fix some of the signed/unsigned comparison warnings
Diffstat (limited to 'settings_gui.c')
-rw-r--r--settings_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings_gui.c b/settings_gui.c
index b607d2960..120dfc363 100644
--- a/settings_gui.c
+++ b/settings_gui.c
@@ -1006,7 +1006,7 @@ void ConsoleSetPatchSetting(char *name, char *value)
const PatchPage *page;
const PatchEntry *pe = NULL;
bool found = false;
- int i;
+ uint i;
unsigned int j;
int val;
@@ -1066,7 +1066,7 @@ void ConsoleGetPatchSetting(char *name)
const PatchEntry *pe = NULL;
char value[50];
bool found = false;
- int i;
+ uint i;
unsigned int j;
/* Search for the name in the patch-settings */