aboutsummaryrefslogtreecommitdiff
path: root/base/gameDetector.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/gameDetector.h')
-rw-r--r--base/gameDetector.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/base/gameDetector.h b/base/gameDetector.h
index bdbb68bf90..0cada3e597 100644
--- a/base/gameDetector.h
+++ b/base/gameDetector.h
@@ -65,14 +65,13 @@ public:
bool detectMain();
String _targetName;
- GameSettings _game; // TODO: Eventually get rid of this?!
- const Plugin *_plugin;
+ String _gameid;
bool _dumpScripts;
bool _force1xOverlay;
- void setTarget(const String &name);
+ const Plugin *_plugin; // TODO: This should be protected
public:
Engine *createEngine(OSystem *system);
@@ -81,8 +80,8 @@ public:
static GameSettings findGame(const String &gameName, const Plugin **plugin = NULL);
-protected:
- bool detectGame(void);
+//protected:
+ void setTarget(const String &name); // TODO: This should be protected
};
#endif