From be4eef5e052009f9b2564b3a0a701486391d2c7a Mon Sep 17 00:00:00 2001 From: Rob Campbell Date: Sun, 4 Jan 2009 20:33:15 +0000 Subject: [PATCH] Fix a compile error --- stepmania/src/lua-5.1/src/lundump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/lua-5.1/src/lundump.c b/stepmania/src/lua-5.1/src/lundump.c index f1fe7e54c8..5d9f2b7179 100644 --- a/stepmania/src/lua-5.1/src/lundump.c +++ b/stepmania/src/lua-5.1/src/lundump.c @@ -67,7 +67,7 @@ static int LoadInt(LoadState* S) LoadVar(S,x); if (S->flip) x = Swap32(x); - IF ((int32_t)x<0, "bad integer"); + if ((uint32_t)x<0, "bad integer"); return x; }