microVU: Fix program dumping

This commit is contained in:
Connor McLaughlin 2022-09-02 19:21:45 +10:00 committed by refractionpcsx2
parent 5fc73f87f4
commit 97960a2232
1 changed files with 1 additions and 1 deletions

View File

@ -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;