Skip to content

Commit

Permalink
Memmap: Make the constants aligned to 8 nibble characters
Browse files Browse the repository at this point in the history
Otherwise, the constants can be a bit confusing to read.
  • Loading branch information
magcius committed Nov 3, 2014
1 parent 6317721 commit 5a2340f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/Core/HW/Memmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ enum
RAM_MASK = RAM_SIZE - 1,
FAKEVMEM_SIZE = 0x02000000,
FAKEVMEM_MASK = FAKEVMEM_SIZE - 1,
L1_CACHE_SIZE = 0x40000,
L1_CACHE_SIZE = 0x00040000,
L1_CACHE_MASK = L1_CACHE_SIZE - 1,
EFB_SIZE = 0x200000,
EFB_SIZE = 0x00200000,
EFB_MASK = EFB_SIZE - 1,
IO_SIZE = 0x10000,
IO_SIZE = 0x00010000,
EXRAM_SIZE = 0x04000000,
EXRAM_MASK = EXRAM_SIZE - 1,

Expand Down

0 comments on commit 5a2340f

Please sign in to comment.