GOB: Remove useless variable

This commit is contained in:
Sven Hesse 2012-06-14 15:27:37 +02:00
parent ccad083ab9
commit 0e6fb43779
4 changed files with 0 additions and 6 deletions

View File

@ -111,7 +111,6 @@ Global::Global(GobEngine *vm) : _vm(vm) {
_dontSetPalette = false;
_debugFlag = 0;
_inVM = 0;
_inter_animDataSize = 10;

View File

@ -127,7 +127,6 @@ public:
SurfacePtr _primarySurfDesc;
int16 _debugFlag;
int16 _inVM;
int16 _inter_animDataSize;

View File

@ -41,8 +41,6 @@ void Init_v1::initVideo() {
_vm->_global->_mousePresent = 1;
_vm->_global->_inVM = 0;
if ((_vm->_global->_videoMode == 0x13) && !_vm->isEGA())
_vm->_global->_colorCount = 256;

View File

@ -45,8 +45,6 @@ void Init_v2::initVideo() {
_vm->_global->_mousePresent = 1;
_vm->_global->_inVM = 0;
_vm->_global->_colorCount = 16;
if (!_vm->isEGA() &&
((_vm->getPlatform() == Common::kPlatformPC) ||