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 { | |||
| 614 | } | 614 | } |
| 615 | 615 | ||
| 616 | inline bool IsDefaultAttribute(int id) const { | 616 | inline bool IsDefaultAttribute(int id) const { |
| 617 | return (id >= 12) || (attribute_mask & (1 << id)) != 0; | 617 | return (id >= 12) || (attribute_mask & (1ULL << id)) != 0; |
| 618 | } | 618 | } |
| 619 | 619 | ||
| 620 | inline int GetNumTotalAttributes() const { | 620 | inline int GetNumTotalAttributes() const { |