[Scummvm-git-logs] scummvm master -> 8f54265dee5b24887df834cad7b965ddac5d3542
whoozle
noreply at scummvm.org
Tue Feb 10 19:51:05 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:
8f54265dee PHOENIXVR: feeble attempt to fix riscos build
Commit: 8f54265dee5b24887df834cad7b965ddac5d3542
https://github.com/scummvm/scummvm/commit/8f54265dee5b24887df834cad7b965ddac5d3542
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-02-10T19:50:14Z
Commit Message:
PHOENIXVR: feeble attempt to fix riscos build
Changed paths:
engines/phoenixvr/commands.h
diff --git a/engines/phoenixvr/commands.h b/engines/phoenixvr/commands.h
index 0c4e045948c..2cfd1819d22 100644
--- a/engines/phoenixvr/commands.h
+++ b/engines/phoenixvr/commands.h
@@ -648,7 +648,7 @@ Script::CommandPtr createCommand(const Common::String &cmd, const Common::Array<
}
struct IfAnd : public Script::Conditional {
- using Script::Conditional::Conditional;
+ using Conditional::Conditional;
void exec(Script::ExecutionContext &ctx) const override {
bool result = true;
for (auto &var : vars) {
@@ -667,7 +667,7 @@ struct IfAnd : public Script::Conditional {
};
struct IfOr : public Script::Conditional {
- using Script::Conditional::Conditional;
+ using Conditional::Conditional;
void exec(Script::ExecutionContext &ctx) const override {
bool result = false;
for (auto &var : vars) {
More information about the Scummvm-git-logs
mailing list