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 3d03cfe commit 8e34ddcCopy full SHA for 8e34ddc
src/main/VGMSampColl.cpp
@@ -96,7 +96,7 @@ bool VGMSampColl::OnSaveAllAsWav() {
96
wstring dirpath = pRoot->UI_GetSaveDirPath();
97
if (dirpath.length() != 0) {
98
for (uint32_t i = 0; i < samples.size(); i++) {
99
- wstring filepath = dirpath + L"\\" + ConvertToSafeFileName(samples[i]->sampName) + L".wav";
+ wstring filepath = dirpath + L"\\" + ConvertToSafeFileName(samples[i]->name) + L".wav";
100
samples[i]->SaveAsWav(filepath);
101
}
102
return true;
0 commit comments