aboutsummaryrefslogtreecommitdiff
path: root/sword2/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/memory.h')
-rw-r--r--sword2/memory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword2/memory.h b/sword2/memory.h
index 5c83ee12dd..1a91dd01a1 100644
--- a/sword2/memory.h
+++ b/sword2/memory.h
@@ -60,7 +60,7 @@ typedef struct {
#define UID_savegame_buffer 0xfffffff6
#define UID_restoregame_buffer 0xfffffff5
-class MemoryManager {
+class Sword2MemoryManager {
private:
// Address of init malloc to be freed later
uint8 *_freeMemman;
@@ -100,6 +100,6 @@ public:
void displayMemory(void);
};
-extern MemoryManager memory;
+extern Sword2MemoryManager memory;
#endif