From 2095641af0348b40befe91f4f36d81d992f822e2 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 5 Mar 2013 16:16:33 -0600 Subject: [PATCH] OK, seriously, buildfix. I shouldn't even have commit access! --- Source/Core/Common/Src/MathUtil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/MathUtil.h b/Source/Core/Common/Src/MathUtil.h index b4c73e6457..506412a0cb 100644 --- a/Source/Core/Common/Src/MathUtil.h +++ b/Source/Core/Common/Src/MathUtil.h @@ -164,7 +164,7 @@ inline u64 Log2(u64 val) return result; #else - T result = -1; + u64 result = -1; while (val != 0) { val >>= 1;