changeset 4279:41f710dfab62 draft

(svn r5909) -Fix (r5908): silence signedness warning
author rubidium <rubidium@openttd.org>
date Tue, 15 Aug 2006 09:03:35 +0000
parents a8f33594ffbc
children 6d168a3986e1
files console_cmds.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -1342,7 +1342,7 @@
 	if (argc == 2) {
 		IConsoleGetPatchSetting(argv[1]);
 	} else {
-		int32 val;
+		uint32 val;
 		if (GetArgumentInteger(&val, argv[2])) IConsoleSetPatchSetting(argv[1], val);
 	}