aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/mips_mem_ram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/mips_mem_ram.cpp')
-rw-r--r--src/shared/mips_mem_ram.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/mips_mem_ram.cpp b/src/shared/mips_mem_ram.cpp
index 0a01b5b..3d4d6d2 100644
--- a/src/shared/mips_mem_ram.cpp
+++ b/src/shared/mips_mem_ram.cpp
@@ -18,7 +18,7 @@ struct mips_mem_provider
extern "C" mips_mem_h mips_mem_create_ram(
uint32_t cbMem //!< Total number of bytes of ram
){
- if(cbMem>0x10000000){
+ if(cbMem>0x20000000){
return 0; // No more than 256MB of RAM
}