diff options
author | bunnei <bunneidev@gmail.com> | 2014-10-08 23:06:28 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-10-08 23:06:28 -0400 |
commit | 8fb064cd62d3091b88bb2660a0264997f5cb163d (patch) | |
tree | a7f2983c43d910b15fe42396e074f5b26cab5ff8 /src/video_core/pica.h | |
parent | 8d1154c24e731795eae3ef5a565fbfed37290708 (diff) | |
parent | eb5054e6eb0d810f26caff9f09e43dbeee4a69fa (diff) |
Merge pull request #119 from lioncash/warn
Fix warnings in video_core
Diffstat (limited to 'src/video_core/pica.h')
-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 374cd83c1..5fe15a218 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -563,7 +563,7 @@ struct Regs { return map[index]; } - static inline int NumIds() { + static inline size_t NumIds() { return sizeof(Regs) / sizeof(u32); } |