summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-15 09:03:35 +0000
committerrubidium <rubidium@openttd.org>2006-08-15 09:03:35 +0000
commitcb21b5b076eaee64d37dcd8ed2c49c91986e34b8 (patch)
tree5f84a1c5c507ef00e87b4cab712075c46e22de31 /console_cmds.c
parent029105ea1cc21aad58c4163b414dc70dcd6c1819 (diff)
downloadopenttd-cb21b5b076eaee64d37dcd8ed2c49c91986e34b8.tar.xz
(svn r5909) -Fix (r5908): silence signedness warning
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 9ceca60cc..ed8ba8d0a 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -1342,7 +1342,7 @@ DEF_CONSOLE_CMD(ConPatch)
if (argc == 2) {
IConsoleGetPatchSetting(argv[1]);
} else {
- int32 val;
+ uint32 val;
if (GetArgumentInteger(&val, argv[2])) IConsoleSetPatchSetting(argv[1], val);
}