diff --git a/Source/Project64/UserInterface/Debugger/Debugger-MemoryDump.cpp b/Source/Project64/UserInterface/Debugger/Debugger-MemoryDump.cpp index 291bc5791..843ef9d5c 100644 --- a/Source/Project64/UserInterface/Debugger/Debugger-MemoryDump.cpp +++ b/Source/Project64/UserInterface/Debugger/Debugger-MemoryDump.cpp @@ -180,7 +180,7 @@ bool CDumpMemory::DumpMemory(LPCTSTR FileName, DumpFormat Format, DWORD StartPC, } uint32_t dumpLen = EndPC - StartPC; - std::unique_ptr dumpBuf = std::make_unique(dumpLen); + std::unique_ptr dumpBuf = std::make_unique(dumpLen); uint32_t dumpIdx = 0; for (uint32_t pc = StartPC; pc < EndPC; pc++, dumpIdx++)