Просмотр исходного кода

moved enums into Memory:: namespace

bunnei 12 лет назад
Родитель
Сommit
fb026f6b46
1 измененных файлов с 2 добавлено и 4 удалено
  1. 2 4
      src/core/mem_map.h

+ 2 - 4
src/core/mem_map.h

@@ -4,11 +4,11 @@
 
 #pragma once
 
-////////////////////////////////////////////////////////////////////////////////////////////////////
-
 #include "common/common.h"
 #include "common/common_types.h"
 
+namespace Memory {
+
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 
 enum {
@@ -49,8 +49,6 @@ enum {
 
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 
-namespace Memory {
-
 // Base is a pointer to the base of the memory map. Yes, some MMU tricks
 // are used to set up a full GC or Wii memory map in process memory.  on
 // 32-bit, you have to mask your offsets with 0x3FFFFFFF. This means that