diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-09-08 21:44:03 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-09-08 21:44:03 -0400 |
| commit | 22800dc711b1acc6090b17f623d05111de9edfb0 (patch) | |
| tree | da7ce4b43d18ef901580d32d8fdb8ad3dbd06000 /Source/Core/Common/MemArena.cpp | |
| parent | 859f86ac2db6fe296381ea204493d4a29bea23fa (diff) | |
Common: Remove unused variable in MemoryMap_Setup
Diffstat (limited to 'Source/Core/Common/MemArena.cpp')
| -rw-r--r-- | Source/Core/Common/MemArena.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/Common/MemArena.cpp b/Source/Core/Common/MemArena.cpp index 193c4ce9b6..8e91359661 100644 --- a/Source/Core/Common/MemArena.cpp +++ b/Source/Core/Common/MemArena.cpp @@ -233,7 +233,6 @@ bail: u8 *MemoryMap_Setup(const MemoryView *views, int num_views, u32 flags, MemArena *arena) { u32 total_mem = 0; - int base_attempts = 0; for (int i = 0; i < num_views; i++) { @@ -266,8 +265,6 @@ u8 *MemoryMap_Setup(const MemoryView *views, int num_views, u32 flags, MemArena } #endif - if (base_attempts) - PanicAlert("No possible memory base pointer found!"); return base; } |
