diff options
author | Lioncash <mathew1800@gmail.com> | 2015-05-14 20:23:20 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-05-14 20:23:23 +0200 |
commit | 497f4bee0c7e548249b25251051763fa7f5bf250 (patch) | |
tree | 6fe946485249d3bdf18e22b713649a449da5db3f /src/video_core | |
parent | vfp: Get rid of warnings (diff) | |
download | yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar.gz yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar.bz2 yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar.lz yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar.xz yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.tar.zst yuzu-497f4bee0c7e548249b25251051763fa7f5bf250.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/pica.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index a53429716..b28b0f864 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -616,7 +616,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 { |