diff options
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 3fbf95721..e9bc7fb3b 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 { | 
