[Scummvm-git-logs] scummvm master -> 3f0af4e8675424165b12586b56633c57a38fe144

mduggan noreply at scummvm.org
Sat Dec 9 23:48:47 UTC 2023


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:
3f0af4e867 ULTIMA8: Fix typo


Commit: 3f0af4e8675424165b12586b56633c57a38fe144
    https://github.com/scummvm/scummvm/commit/3f0af4e8675424165b12586b56633c57a38fe144
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2023-12-10T10:48:37+11:00

Commit Message:
ULTIMA8: Fix typo

Changed paths:
    engines/ultima/ultima8/games/treasure_loader.cpp


diff --git a/engines/ultima/ultima8/games/treasure_loader.cpp b/engines/ultima/ultima8/games/treasure_loader.cpp
index aebdede0926..20d35e6d173 100644
--- a/engines/ultima/ultima8/games/treasure_loader.cpp
+++ b/engines/ultima/ultima8/games/treasure_loader.cpp
@@ -205,7 +205,7 @@ bool TreasureLoader::parseUIntRange(const Std::string &val,
 	Std::string::size_type pos = val.find('-');
 	if (pos == 0 || pos == Std::string::npos || pos + 1 >= val.size())
 		return false;
-	int t1 = 0
+	int t1 = 0;
 	int t2 = 0;
 	bool ok = true;
 	ok = ok && parseInt(val.substr(0, pos), t1);




More information about the Scummvm-git-logs mailing list