[Scummvm-git-logs] scummvm master -> 20533b819bd55ec77f27599c8f0a45be1347cf0a
criezy
criezy at scummvm.org
Sat Nov 28 18:12:24 UTC 2020
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:
20533b819b CRYOMNI3D: Fix compilation
Commit: 20533b819bd55ec77f27599c8f0a45be1347cf0a
https://github.com/scummvm/scummvm/commit/20533b819bd55ec77f27599c8f0a45be1347cf0a
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2020-11-28T18:12:04Z
Commit Message:
CRYOMNI3D: Fix compilation
Changed paths:
engines/cryomni3d/font_manager.h
diff --git a/engines/cryomni3d/font_manager.h b/engines/cryomni3d/font_manager.h
index 9312fd2235..f4871a5393 100644
--- a/engines/cryomni3d/font_manager.h
+++ b/engines/cryomni3d/font_manager.h
@@ -44,7 +44,7 @@ class CryoString : public Common::BaseString<Common::u32char_type_t> {
public:
CryoString() : Common::BaseString<Common::u32char_type_t>() {}
- CryoString(const CryoString &str) : BaseString<Common::u32char_type_t>(str) {}
+ CryoString(const CryoString &str) : Common::BaseString<Common::u32char_type_t>(str) {}
CryoString &operator=(const CryoString &str) {
assign(str);
return *this;
More information about the Scummvm-git-logs
mailing list