[Scummvm-git-logs] scummvm master -> 25d485cc633de52e4c33f483850841589aee1775
digitall
noreply at scummvm.org
Sun Jul 14 23:02:05 UTC 2024
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:
25d485cc63 MTROPOLIS: Fix GCC Compiler Warning
Commit: 25d485cc633de52e4c33f483850841589aee1775
https://github.com/scummvm/scummvm/commit/25d485cc633de52e4c33f483850841589aee1775
Author: D G Turner (digitall at scummvm.org)
Date: 2024-07-15T00:01:27+01:00
Commit Message:
MTROPOLIS: Fix GCC Compiler Warning
Changed paths:
engines/mtropolis/runtime.cpp
diff --git a/engines/mtropolis/runtime.cpp b/engines/mtropolis/runtime.cpp
index 65269583b46..e236bae959d 100644
--- a/engines/mtropolis/runtime.cpp
+++ b/engines/mtropolis/runtime.cpp
@@ -3300,7 +3300,7 @@ Structural::Structural(Runtime *runtime) : _parent(nullptr), _paused(false), _lo
}
Structural::Structural(const Structural &other)
- : RuntimeObject(other), _parent(other._parent), _children(other._children), _modifiers(other._modifiers), _name(other._name), _assets(other._assets)
+ : RuntimeObject(other), Debuggable(other), _parent(other._parent), _children(other._children), _modifiers(other._modifiers), _name(other._name), _assets(other._assets)
, _paused(other._paused), _loop(other._loop), _flushPriority(other._flushPriority)/*, _hooks(other._hooks)*/, _runtime(other._runtime) {
}
More information about the Scummvm-git-logs
mailing list