diff options
| author | 2015-02-20 11:41:30 -0500 | |
|---|---|---|
| committer | 2015-02-20 11:41:30 -0500 | |
| commit | 5f9939070e81691e04facca9ff431070988e5b05 (patch) | |
| tree | 9bd54cdde2c34dd2f63e0396260335f267a46ce1 /src/video_core | |
| parent | Merge pull request #587 from archshift/assert (diff) | |
| parent | Misc cleanup of common and related functions (diff) | |
| download | yuzu-5f9939070e81691e04facca9ff431070988e5b05.tar.gz yuzu-5f9939070e81691e04facca9ff431070988e5b05.tar.xz yuzu-5f9939070e81691e04facca9ff431070988e5b05.zip | |
Merge pull request #588 from archshift/somebranch
Sweeping cleanup of Common
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/pica.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index e4a5ef78e..d03b811d3 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h | |||
| @@ -39,13 +39,6 @@ namespace Pica { | |||
| 39 | 39 | ||
| 40 | struct Regs { | 40 | struct Regs { |
| 41 | 41 | ||
| 42 | // helper macro to properly align structure members. | ||
| 43 | // Calling INSERT_PADDING_WORDS will add a new member variable with a name like "pad121", | ||
| 44 | // depending on the current source line to make sure variable names are unique. | ||
| 45 | #define INSERT_PADDING_WORDS_HELPER1(x, y) x ## y | ||
| 46 | #define INSERT_PADDING_WORDS_HELPER2(x, y) INSERT_PADDING_WORDS_HELPER1(x, y) | ||
| 47 | #define INSERT_PADDING_WORDS(num_words) u32 INSERT_PADDING_WORDS_HELPER2(pad, __LINE__)[(num_words)]; | ||
| 48 | |||
| 49 | INSERT_PADDING_WORDS(0x10); | 42 | INSERT_PADDING_WORDS(0x10); |
| 50 | 43 | ||
| 51 | u32 trigger_irq; | 44 | u32 trigger_irq; |
| @@ -709,10 +702,6 @@ struct Regs { | |||
| 709 | 702 | ||
| 710 | INSERT_PADDING_WORDS(0x22); | 703 | INSERT_PADDING_WORDS(0x22); |
| 711 | 704 | ||
| 712 | #undef INSERT_PADDING_WORDS_HELPER1 | ||
| 713 | #undef INSERT_PADDING_WORDS_HELPER2 | ||
| 714 | #undef INSERT_PADDING_WORDS | ||
| 715 | |||
| 716 | // Map register indices to names readable by humans | 705 | // Map register indices to names readable by humans |
| 717 | // Used for debugging purposes, so performance is not an issue here | 706 | // Used for debugging purposes, so performance is not an issue here |
| 718 | static std::string GetCommandName(int index) { | 707 | static std::string GetCommandName(int index) { |