[Scummvm-git-logs] scummvm master -> fddfc47e5b5da14b593e3be26fef9ce2645fd8e1
aquadran
noreply at scummvm.org
Sun Sep 11 21:51:11 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:
fddfc47e5b WINTERMUTE: Fixed AmigaOS4 compilation
Commit: fddfc47e5b5da14b593e3be26fef9ce2645fd8e1
https://github.com/scummvm/scummvm/commit/fddfc47e5b5da14b593e3be26fef9ce2645fd8e1
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2022-09-11T23:51:05+02:00
Commit Message:
WINTERMUTE: Fixed AmigaOS4 compilation
Changed paths:
engines/wintermute/base/gfx/xmodel.cpp
diff --git a/engines/wintermute/base/gfx/xmodel.cpp b/engines/wintermute/base/gfx/xmodel.cpp
index de72a18526a..fef8a356e13 100644
--- a/engines/wintermute/base/gfx/xmodel.cpp
+++ b/engines/wintermute/base/gfx/xmodel.cpp
@@ -141,7 +141,7 @@ bool XModel::loadFromFile(const Common::String &filename, XModel *parentModel) {
_rootFrame = new FrameNode(_gameRef);
- uint32 numChildren = 0;
+ uint numChildren = 0;
xfile->getEnum().getChildren(numChildren);
for (uint i = 0; i < numChildren; i++) {
resLoop = xfile->getEnum().getChild(i, xobj);
@@ -196,7 +196,7 @@ bool XModel::mergeFromFile(const Common::String &filename) {
XFileData xobj;
bool resLoop = false;
- uint32 numChildren = 0;
+ uint numChildren = 0;
xfile->getEnum().getChildren(numChildren);
for (uint i = 0; i < numChildren; i++) {
resLoop = xfile->getEnum().getChild(i, xobj);
More information about the Scummvm-git-logs
mailing list