[Scummvm-cvs-logs] SF.net SVN: scummvm: [22530] scummvm/trunk/engines/kyra/kyra3.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Fri May 19 00:13:02 CEST 2006


Revision: 22530
Author:   fingolfin
Date:     2006-05-19 00:12:38 -0700 (Fri, 19 May 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22530&view=rev

Log Message:
-----------
Fix warning

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/kyra3.cpp
Modified: scummvm/trunk/engines/kyra/kyra3.cpp
===================================================================
--- scummvm/trunk/engines/kyra/kyra3.cpp	2006-05-19 00:35:13 UTC (rev 22529)
+++ scummvm/trunk/engines/kyra/kyra3.cpp	2006-05-19 07:12:38 UTC (rev 22530)
@@ -136,8 +136,10 @@
 	_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 @@
 }
 
 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 @@
 		int curY = top + i * _screen->getFontHeight();
 		// XXX
 	}
+#endif
 }
 
 void KyraEngine_v3::playVQA(const char *filename) {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list