[Scummvm-git-logs] scummvm master -> 795a92f8193875e312773c8578ea2f7428e9907b

lotharsm noreply at scummvm.org
Mon Aug 1 21:12:16 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:
795a92f819 WIN32: Add missing / to icons path


Commit: 795a92f8193875e312773c8578ea2f7428e9907b
    https://github.com/scummvm/scummvm/commit/795a92f8193875e312773c8578ea2f7428e9907b
Author: Lothar Serra Mari (mail at serra.me)
Date: 2022-08-01T23:12:05+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