Skip to content

Commit

Permalink
WIN32: Fix auto-detection of Icons path for grid view
Browse files Browse the repository at this point in the history
  • Loading branch information
lotharsm committed Aug 1, 2022
1 parent ae22e10 commit 3d5a93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/platform/sdl/win32/win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Common::String OSystem_Win32::getDefaultIconsPath() {
if (!Win32::getApplicationDataDirectory(iconsPath)) {
return Common::String();
}
_tcscat(iconsPath, TEXT("\\ScummVM\\Icons"));
_tcscat(iconsPath, TEXT("\\Icons"));
CreateDirectory(iconsPath, nullptr);
}

Expand Down

0 comments on commit 3d5a93c

Please sign in to comment.