aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-05-18 08:08:49 -0400
committerGravatar bunnei <bunneidev@gmail.com>2015-05-18 08:08:49 -0400
commitf0365f28c2ca0d33dcb5f1f4be1d328cbb9dfdd6 (patch)
treef124508f5115244765f6320223c40088f60e1c26 /src/video_core/pica.h
parent1b47da41153c9955749ea23bea884d4f22f32b5a (diff)
parent497f4bee0c7e548249b25251051763fa7f5bf250 (diff)
Merge pull request #772 from lioncash/warn
core/video_core: Fix a few warnings when compiling on MSVC.
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 3fbf9572..e9bc7fb3 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -614,7 +614,7 @@ struct Regs {
}
inline bool IsDefaultAttribute(int id) const {
- return (id >= 12) || (attribute_mask & (1 << id)) != 0;
+ return (id >= 12) || (attribute_mask & (1ULL << id)) != 0;
}
inline int GetNumTotalAttributes() const {