diff options
| author | 2014-04-13 00:39:05 -0400 | |
|---|---|---|
| committer | 2014-04-13 00:39:05 -0400 | |
| commit | ce822b68152fe2a35c30fd38d0e98d92db2e8d04 (patch) | |
| tree | 0ada7fc6b4cc974ac19e26e0a8854d1636238c20 | |
| parent | added some very initial command parsing for SRV Sync (diff) | |
| download | yuzu-ce822b68152fe2a35c30fd38d0e98d92db2e8d04.tar.gz yuzu-ce822b68152fe2a35c30fd38d0e98d92db2e8d04.tar.xz yuzu-ce822b68152fe2a35c30fd38d0e98d92db2e8d04.zip | |
replace tabs with spaces
| -rw-r--r-- | src/core/mem_map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index ab2c2d4ec..d0308fa5c 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h | |||
| @@ -50,8 +50,8 @@ extern u8 *g_base; | |||
| 50 | // These are guaranteed to point to "low memory" addresses (sub-32-bit). | 50 | // These are guaranteed to point to "low memory" addresses (sub-32-bit). |
| 51 | // 64-bit: Pointers to low-mem (sub-0x10000000) mirror | 51 | // 64-bit: Pointers to low-mem (sub-0x10000000) mirror |
| 52 | // 32-bit: Same as the corresponding physical/virtual pointers. | 52 | // 32-bit: Same as the corresponding physical/virtual pointers. |
| 53 | extern u8* g_fcram; ///< Main memory | 53 | extern u8* g_fcram; ///< Main memory |
| 54 | extern u8* g_vram; ///< Video memory (VRAM) | 54 | extern u8* g_vram; ///< Video memory (VRAM) |
| 55 | extern u8* g_scratchpad; ///< Stack memory | 55 | extern u8* g_scratchpad; ///< Stack memory |
| 56 | 56 | ||
| 57 | void Init(); | 57 | void Init(); |
| @@ -71,7 +71,7 @@ void Write32(const u32 addr, const u32 data); | |||
| 71 | u8* GetPointer(const u32 Address); | 71 | u8* GetPointer(const u32 Address); |
| 72 | 72 | ||
| 73 | inline const char* GetCharPointer(const u32 address) { | 73 | inline const char* GetCharPointer(const u32 address) { |
| 74 | return (const char *)GetPointer(address); | 74 | return (const char *)GetPointer(address); |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | } // namespace | 77 | } // namespace |