1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-15 10:39:10 +00:00

(svn r5909) -Fix (r5908): silence signedness warning

This commit is contained in:
rubidium
2006-08-15 09:03:35 +00:00
parent 029105ea1c
commit cb21b5b076

View File

@@ -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);
}