[Scummvm-git-logs] scummvm master -> 338749136d8516234be8b2b975c72ad5e2ed62e4
Strangerke
noreply at scummvm.org
Sun Apr 30 17:06:07 UTC 2023
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:
338749136d EFH: Removed a couple of unused variables
Commit: 338749136d8516234be8b2b975c72ad5e2ed62e4
https://github.com/scummvm/scummvm/commit/338749136d8516234be8b2b975c72ad5e2ed62e4
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2023-04-30T18:05:58+01:00
Commit Message:
EFH: Removed a couple of unused variables
Changed paths:
engines/efh/efh.h
engines/efh/init.cpp
diff --git a/engines/efh/efh.h b/engines/efh/efh.h
index af9727af9d1..23b24366cb6 100644
--- a/engines/efh/efh.h
+++ b/engines/efh/efh.h
@@ -262,7 +262,6 @@ public:
EfhEngine(OSystem *syst, const ADGameDescription *gd);
~EfhEngine() override;
- OSystem *_system;
Graphics::Surface *_mainSurface;
Common::RandomSource *_rnd;
@@ -286,7 +285,6 @@ public:
bool _shouldQuit;
protected:
- Common::EventManager *_eventMan;
int _lastTime;
// Engine APIs
Common::Error run() override;
diff --git a/engines/efh/init.cpp b/engines/efh/init.cpp
index b19ba6d4579..f3d0b1fc4c0 100644
--- a/engines/efh/init.cpp
+++ b/engines/efh/init.cpp
@@ -241,7 +241,6 @@ EfhEngine::EfhEngine(OSystem *syst, const ADGameDescription *gd) : Engine(syst),
_rnd = nullptr;
_shouldQuit = false;
- _eventMan = nullptr;
_lastTime = 0;
_platform = Common::kPlatformUnknown;
_mainSurface = nullptr;
More information about the Scummvm-git-logs
mailing list