diff options
author | Max Horn | 2006-05-19 07:12:38 +0000 |
---|---|---|
committer | Max Horn | 2006-05-19 07:12:38 +0000 |
commit | d113bf3a08595a07d6123273380a378120daf50f (patch) | |
tree | 8a4c70ef3766b85a8cd71262aa43c423d1fbb210 | |
parent | 9bc90636f2c9b0e086c218bc9b7c764089c14328 (diff) | |
download | scummvm-rg350-d113bf3a08595a07d6123273380a378120daf50f.tar.gz scummvm-rg350-d113bf3a08595a07d6123273380a378120daf50f.tar.bz2 scummvm-rg350-d113bf3a08595a07d6123273380a378120daf50f.zip |
Fix warning
svn-id: r22530
-rw-r--r-- | engines/kyra/kyra3.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/kyra/kyra3.cpp b/engines/kyra/kyra3.cpp index c7bf6e12b8..faa3ae1f22 100644 --- a/engines/kyra/kyra3.cpp +++ b/engines/kyra/kyra3.cpp @@ -136,8 +136,10 @@ int KyraEngine_v3::handleMainMenu(WSAMovieV3 *logo) { _screen->setScreenDim(3); _screen->copyCurPageBlock(_screen->_curDim->sx, _screen->_curDim->sy, _screen->_curDim->w, _screen->_curDim->h, _screen->getPagePtr(3)); - int left = _screen->_curDim->sx << 3; int top = _screen->_curDim->sy; - int right = left + (_screen->_curDim->w << 3); int bottom = top + _screen->_curDim->h; +// int left = _screen->_curDim->sx << 3; +// int top = _screen->_curDim->sy; +// int right = left + (_screen->_curDim->w << 3); +// int bottom = top + _screen->_curDim->h; // XXX // gui_unk1(left, top, right, bottom, 1, 0); @@ -187,6 +189,7 @@ int KyraEngine_v3::handleMainMenu(WSAMovieV3 *logo) { } void KyraEngine_v3::drawMainMenu(const char * const *strings, int unk1) { +#if 0 static const uint16 _menuTable[] = { 0x01, 0x04, 0x0C, 0x04, 0x00, 0xFF, 0x00, 0x01, 0x02, 0x03 }; int left = _screen->_curDim->sx << 3; int top = _screen->_curDim->sy; @@ -198,6 +201,7 @@ void KyraEngine_v3::drawMainMenu(const char * const *strings, int unk1) { int curY = top + i * _screen->getFontHeight(); // XXX } +#endif } void KyraEngine_v3::playVQA(const char *filename) { |