[Scummvm-git-logs] scummvm master -> 0e5498b7f7819f524b5a25e39a80083ab09870f6

AndywinXp noreply at scummvm.org
Tue Jun 17 18:09:46 UTC 2025


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:
0e5498b7f7 LASTEXPRESS: Attempt to fix riscOS build


Commit: 0e5498b7f7819f524b5a25e39a80083ab09870f6
    https://github.com/scummvm/scummvm/commit/0e5498b7f7819f524b5a25e39a80083ab09870f6
Author: AndywinXp (andywinxp at gmail.com)
Date: 2025-06-17T20:09:39+02:00

Commit Message:
LASTEXPRESS: Attempt to fix riscOS build

Changed paths:
    engines/lastexpress/fight/fighter.h


diff --git a/engines/lastexpress/fight/fighter.h b/engines/lastexpress/fight/fighter.h
index 10ac4e7cf08..045cbeb9f3f 100644
--- a/engines/lastexpress/fight/fighter.h
+++ b/engines/lastexpress/fight/fighter.h
@@ -73,14 +73,14 @@ protected:
 
 class CCath : public CFighter {
 public:
-	using CFighter::CFighter;
+	CCath(LastExpressEngine *engine, CFight *fight) : CFighter(engine, fight) {}
 
 	virtual void timer() override;
 };
 
 class COpponent : public CFighter {
 public:
-	using CFighter::CFighter;
+	COpponent(LastExpressEngine *engine, CFight *fight) : CFighter(engine, fight) {}
 
 	virtual void timer() override;
 };




More information about the Scummvm-git-logs mailing list