diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-25 16:12:10 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-25 16:12:10 -0400 |
commit | 97fd8fc38d4f9c288779cddb06538860124c6263 (patch) | |
tree | bc99e0fceaae732f9c8d4831fcdb8f661b49ccb8 /src/core/hw/gpu.h | |
parent | 613b0a8df85578c97790c5b116195e8bd2fad6f4 (diff) | |
parent | a79644c9baaeaa88e79db9837e9ed6e2b74e9889 (diff) |
Merge pull request #50 from neobrain/pica
Further work on Pica emulation
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r-- | src/core/hw/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index d20311a00..7186bfa84 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h @@ -42,7 +42,7 @@ struct Regs { // depending on the current source line to make sure variable names are unique. #define INSERT_PADDING_WORDS_HELPER1(x, y) x ## y #define INSERT_PADDING_WORDS_HELPER2(x, y) INSERT_PADDING_WORDS_HELPER1(x, y) -#define INSERT_PADDING_WORDS(num_words) u32 INSERT_PADDING_WORDS_HELPER2(pad, __LINE__)[(num_words)]; +#define INSERT_PADDING_WORDS(num_words) u32 INSERT_PADDING_WORDS_HELPER2(pad, __LINE__)[(num_words)] // helper macro to make sure the defined structures are of the expected size. #if defined(_MSC_VER) @@ -53,7 +53,7 @@ struct Regs { #else #define ASSERT_MEMBER_SIZE(name, size_in_bytes) \ static_assert(sizeof(name) == size_in_bytes, \ - "Structure size and register block length don't match"); + "Structure size and register block length don't match") #endif enum class FramebufferFormat : u32 { |