[Scummvm-git-logs] scummvm master -> 1b64bf837b5420962259a18b4f4c782aad7ea63d

athrxx noreply at scummvm.org
Mon Nov 15 21:46:18 UTC 2021


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:
1b64bf837b GUI: fix for 9e92ffe (missing code line)


Commit: 1b64bf837b5420962259a18b4f4c782aad7ea63d
    https://github.com/scummvm/scummvm/commit/1b64bf837b5420962259a18b4f4c782aad7ea63d
Author: athrxx (athrxx at scummvm.org)
Date: 2021-11-15T22:45:41+01:00

Commit Message:
GUI: fix for 9e92ffe (missing code line)

(somehow one line went missing when moving that commit to master. It would still work, but much, much less efficiently)

Changed paths:
    common/gui_options.cpp


diff --git a/common/gui_options.cpp b/common/gui_options.cpp
index f3e4bfc01f..70c7154476 100644
--- a/common/gui_options.cpp
+++ b/common/gui_options.cpp
@@ -119,6 +119,7 @@ String parseGameGUIOptions(const String &str) {
 				c_end = str.size();
 			if (str.substr(ii, c_end - ii).equals((g_gameOptions[i].desc)))
 				res += g_gameOptions[i].option;
+			ii = c_end;
 		}
 	}
 




More information about the Scummvm-git-logs mailing list