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