summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-03-26 10:02:57 +0100
committerTony Wasserka <NeoBrainX@gmail.com>2014-03-26 10:02:57 +0100
commitc6070b94cec613bb4bd26ae2e1b0835c52b7480c (patch)
tree1dc017f50b4dae284116cbf8673951740876c408 /Source/Core/VideoCommon
parent5fc6ce59c3b42da3d0d220fc1f1a8725d361e2de (diff)
BPMemory: Fix an enum to use u32 as its underlying type.
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/BPMemory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/BPMemory.h b/Source/Core/VideoCommon/BPMemory.h
index 1519d542fd..b5466097ac 100644
--- a/Source/Core/VideoCommon/BPMemory.h
+++ b/Source/Core/VideoCommon/BPMemory.h
@@ -884,7 +884,7 @@ union AlphaTest
ALWAYS = 7
};
- enum Op
+ enum Op : u32
{
AND = 0,
OR = 1,