From 497f4bee0c7e548249b25251051763fa7f5bf250 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Thu, 14 May 2015 14:23:20 -0400
Subject: [PATCH] pica: Add the ULL specifier in IsDefaultAttribute

This is necessary otherwise there are warnings about a 32-bit result being casted to a 64-bit value.
---
 src/video_core/pica.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 {