CRYO: Remove unused variable

This commit is contained in:
Cameron Cawley 2021-09-02 21:35:15 +01:00 committed by Filippos Karapetis
parent e022d80447
commit f24b71100b
2 changed files with 0 additions and 2 deletions

View File

@ -86,7 +86,6 @@ public:
private: private:
int _mouseButton; int _mouseButton;
// byte _keyState[256];
}; };
extern CryoEngine *g_ed; extern CryoEngine *g_ed;

View File

@ -278,7 +278,6 @@ void CryoEngine::pollEvents() {
case Common::EVENT_KEYDOWN: case Common::EVENT_KEYDOWN:
return; return;
case Common::EVENT_KEYUP: case Common::EVENT_KEYUP:
// _keyState[(byte)toupper(event.kbd.ascii)] = false;
return; return;
case Common::EVENT_LBUTTONDOWN: case Common::EVENT_LBUTTONDOWN:
_mouseButton = 1; _mouseButton = 1;