mirror of https://github.com/PCSX2/pcsx2.git
microVU: Fix program dumping
This commit is contained in:
parent
5fc73f87f4
commit
97960a2232
|
@ -55,7 +55,7 @@ void __mVUdumpProgram(microVU& mVU, microProgram& prog)
|
|||
int bPC = iPC;
|
||||
mVUbranch = 0;
|
||||
|
||||
const std::string logname(fmt::format("microVU{} prog - {:02d}.html"), mVU.index, prog.idx);
|
||||
const std::string logname(fmt::format("microVU{} prog - {:02d}.html", mVU.index, prog.idx));
|
||||
mVU.logFile = FileSystem::OpenCFile(Path::Combine(EmuFolders::Logs, logname).c_str(), "w");
|
||||
if (!mVU.logFile)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue