[Scummvm-git-logs] scummvm master -> 87618cd16359b55715aeb9748a59370552299cba
sev-
noreply at scummvm.org
Tue Apr 21 21:55:03 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
87618cd163 MADS: PHANTOM: Add missing override keywords
Commit: 87618cd16359b55715aeb9748a59370552299cba
https://github.com/scummvm/scummvm/commit/87618cd16359b55715aeb9748a59370552299cba
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-04-21T23:54:38+02:00
Commit Message:
MADS: PHANTOM: Add missing override keywords
Changed paths:
engines/mads/madsv2/phantom/sound_phantom.h
diff --git a/engines/mads/madsv2/phantom/sound_phantom.h b/engines/mads/madsv2/phantom/sound_phantom.h
index 19e2936e75c..fe1429eb69b 100644
--- a/engines/mads/madsv2/phantom/sound_phantom.h
+++ b/engines/mads/madsv2/phantom/sound_phantom.h
@@ -96,7 +96,7 @@ private:
int commandMusic2(); // sub_11F0E â starts at 0x3688
int commandMusic3(); // sub_11F36 â starts at 0x3D52
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
@@ -143,7 +143,7 @@ private:
typedef int (ASound2::*CommandPtr)();
static const CommandPtr _commandList[73];
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
@@ -201,7 +201,7 @@ private:
// Called by command34 which then adds ch8.
void sub11CC6();
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
@@ -261,7 +261,7 @@ private:
typedef int (ASound4::*CommandPtr)();
static const CommandPtr _commandList[71];
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
@@ -311,7 +311,7 @@ private:
typedef int (ASound5::*CommandPtr)();
static const CommandPtr _commandList[79];
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
@@ -362,7 +362,7 @@ public:
class ASound9 : public PhantomASound {
private:
typedef int (ASound9:: *CommandPtr)();
- int command0();
+ int command0() override;
int command1();
int command2();
int command3();
More information about the Scummvm-git-logs
mailing list