[Scummvm-git-logs] scummvm master -> 136f69721d82096818d21af6894016fc1f56c656
yuv422
noreply at scummvm.org
Mon Feb 24 11:49:54 UTC 2025
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:
136f69721d DARKSEED: Coverity CID 1592307 MISSING_RETURN
Commit: 136f69721d82096818d21af6894016fc1f56c656
https://github.com/scummvm/scummvm/commit/136f69721d82096818d21af6894016fc1f56c656
Author: Eric Fry (yuv422 at reversedgames.com)
Date: 2025-02-24T22:48:42+11:00
Commit Message:
DARKSEED: Coverity CID 1592307 MISSING_RETURN
Changed paths:
engines/darkseed/kofont.cpp
diff --git a/engines/darkseed/kofont.cpp b/engines/darkseed/kofont.cpp
index b4050d2b2f9..31b95299193 100644
--- a/engines/darkseed/kofont.cpp
+++ b/engines/darkseed/kofont.cpp
@@ -263,6 +263,7 @@ Common::U32String KoFont::getLocationString(const Common::U32String &object) {
if (isConsonant(object[object.size() - 1])) {
return object + convertToU32String("\xb7\x61", Common::KO_KOR); // -eu
}
+ return object;
}
int KoFont::getOtherCharIdx(uint32 chr) const {
More information about the Scummvm-git-logs
mailing list