[Scummvm-git-logs] scummvm branch-2-6 -> 3fd93d92d29320dd7593d713c9cf92a4ec8f53c2
lotharsm
noreply at scummvm.org
Mon Aug 1 21:15:27 UTC 2022
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
63d3d22edd WIN32: Fix auto-detection of Icons path for grid view
3fd93d92d2 WIN32: Add missing / to icons path
Commit: 63d3d22eddcc6d4e9aea73699dae840e7f12bb0c
https://github.com/scummvm/scummvm/commit/63d3d22eddcc6d4e9aea73699dae840e7f12bb0c
Author: Lothar Serra Mari (mail at serra.me)
Date: 2022-08-01T23:14:04+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);
}
Commit: 3fd93d92d29320dd7593d713c9cf92a4ec8f53c2
https://github.com/scummvm/scummvm/commit/3fd93d92d29320dd7593d713c9cf92a4ec8f53c2
Author: Lothar Serra Mari (mail at serra.me)
Date: 2022-08-01T23:14:15+02:00
Commit Message:
WIN32: Add missing / to icons path
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 4694469baab..eacd276da45 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("\\Icons"));
+ _tcscat(iconsPath, TEXT("\\Icons\\"));
CreateDirectory(iconsPath, nullptr);
}
More information about the Scummvm-git-logs
mailing list