[Scummvm-git-logs] scummvm master -> 3d5a93ce42756c614b52a9ae22dd8d4dc0273ad1
lotharsm
noreply at scummvm.org
Mon Aug 1 21:07:50 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3d5a93ce42 WIN32: Fix auto-detection of Icons path for grid view
Commit: 3d5a93ce42756c614b52a9ae22dd8d4dc0273ad1
https://github.com/scummvm/scummvm/commit/3d5a93ce42756c614b52a9ae22dd8d4dc0273ad1
Author: Lothar Serra Mari (mail at serra.me)
Date: 2022-08-01T23:07:35+02:00
Commit Message:
WIN32: Fix auto-detection of Icons path for grid view
Changed paths:
backends/platform/sdl/win32/win32.cpp
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp
index a03f9b4f9b5..4694469baab 100644
--- a/backends/platform/sdl/win32/win32.cpp
+++ b/backends/platform/sdl/win32/win32.cpp
@@ -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);
}
More information about the Scummvm-git-logs
mailing list