Skip to content

Commit

Permalink
Derp.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble authored Nov 25, 2023
1 parent 0861d98 commit a766fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/psxmem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ int PCSX::Memory::init() {

// Init all memory as named mappings
bool success = m_wramShared.init("wram", 0x00800000, true);
if (success) g_system->message(_("SharedMem failed to share memory for wram, falling back to memory alloc\n"));
if (!success) g_system->message(_("SharedMem failed to share memory for wram, falling back to memory alloc\n"));
m_wram = m_wramShared.getPtr();

m_exp1 = (uint8_t *)calloc(0x00800000, 1);
Expand Down

0 comments on commit a766fe2

Please sign in to comment.