Cleanup: Remove now unneeded KyraEngine_v1::quitGame.

Peres proposal for this commit log was: 'fixing .... as peres pointed out in his very interesting mail on -devel that everybody should read'.

svn-id: r34282
This commit is contained in:
Johannes Schickel 2008-09-02 14:36:47 +00:00
parent 34d43e3319
commit ced14e186e
2 changed files with 0 additions and 12 deletions

View File

@ -198,15 +198,6 @@ KyraEngine_v1::~KyraEngine_v1() {
delete _debugger;
}
void KyraEngine_v1::quitGame() {
debugC(9, kDebugLevelMain, "KyraEngine_v1::quitGame()");
Common::Event event;
event.type = Common::EVENT_QUIT;
_eventMan->pushEvent(event);
// Nothing to do here
}
Common::Point KyraEngine_v1::getMousePos() const {
Common::Point mouse = _eventMan->getMousePos();

View File

@ -151,9 +151,6 @@ public:
void setVolume(kVolumeEntry vol, uint8 value);
uint8 getVolume(kVolumeEntry vol);
// quit handling
virtual void quitGame();
// game flag handling
int setGameFlag(int flag);
int queryGameFlag(int flag) const;