We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595bebd commit 6dd3a37Copy full SHA for 6dd3a37
src/core/sio.cc
@@ -857,13 +857,15 @@ void PCSX::SIO::FormatMcdBlock(int mcd, int block) {
857
void PCSX::SIO::SaveMcd(int mcd) {
858
const auto data = GetMcdData(mcd);
859
switch (mcd) {
860
- case 1:
+ case 1: {
861
const auto path = PCSX::g_emulator->settings.get<PCSX::Emulator::SettingMcd1>().string();
862
SaveMcd(path, data, 0, MCD_SIZE);
863
break;
864
- case 2:
+ }
865
+ case 2: {
866
const auto path = PCSX::g_emulator->settings.get<PCSX::Emulator::SettingMcd2>().string();
867
868
869
870
}
871
0 commit comments