[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.550,1.551
kirben
kirben at users.sourceforge.net
Wed Dec 7 19:36:01 CET 2005
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/simon game.cpp,1.23,1.24 intern.h,1.59,1.60
- Next message: [Scummvm-cvs-logs] CVS: scummvm/simon charset.cpp,1.45,1.46 debug.h,1.25,1.26 items.cpp,1.141,1.142 saveload.cpp,1.23,1.24 simon.cpp,1.551,1.552 simon.h,1.171,1.172 verb.cpp,1.34,1.35 vga.cpp,1.170,1.171
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1238/simon
Modified Files:
simon.cpp
Log Message:
Correct mouse position in FF.
Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.550
retrieving revision 1.551
diff -u -d -r1.550 -r1.551
--- simon.cpp 23 Nov 2005 01:31:51 -0000 1.550
+++ simon.cpp 8 Dec 2005 03:34:46 -0000 1.551
@@ -1689,13 +1689,13 @@
if (_mouseX >= 32768)
_mouseX = 0;
- if (_mouseX >= 638 / 2)
- _mouseX = 638 / 2;
+ if (_mouseX >= _screenWidth - 1)
+ _mouseX = _screenWidth - 1;
if (_mouseY >= 32768)
_mouseY = 0;
- if (_mouseY >= 199)
- _mouseY = 199;
+ if (_mouseY >= _screenHeight - 1)
+ _mouseY = _screenHeight - 1;
if (_hitAreaUnk4) {
uint id = 101;
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/simon game.cpp,1.23,1.24 intern.h,1.59,1.60
- Next message: [Scummvm-cvs-logs] CVS: scummvm/simon charset.cpp,1.45,1.46 debug.h,1.25,1.26 items.cpp,1.141,1.142 saveload.cpp,1.23,1.24 simon.cpp,1.551,1.552 simon.h,1.171,1.172 verb.cpp,1.34,1.35 vga.cpp,1.170,1.171
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list