[Scummvm-cvs-logs] SF.net SVN: scummvm: [25084] scummvm/trunk/engines/parallaction
wjpalenstijn at users.sourceforge.net
wjpalenstijn at users.sourceforge.net
Sun Jan 14 22:58:18 CET 2007
Revision: 25084
http://scummvm.svn.sourceforge.net/scummvm/?rev=25084&view=rev
Author: wjpalenstijn
Date: 2007-01-14 13:58:18 -0800 (Sun, 14 Jan 2007)
Log Message:
-----------
mark 64bit issues
Modified Paths:
--------------
scummvm/trunk/engines/parallaction/music.cpp
scummvm/trunk/engines/parallaction/parallaction.cpp
Modified: scummvm/trunk/engines/parallaction/music.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/music.cpp 2007-01-14 21:29:12 UTC (rev 25083)
+++ scummvm/trunk/engines/parallaction/music.cpp 2007-01-14 21:58:18 UTC (rev 25084)
@@ -71,6 +71,7 @@
_music_command(17, 1, 0, 0); // set source segment
_music_command(7, 1, 0, 0); // set source offset and do SOMETHING
+ // FIXME: casting pointer to uint32
_music_command(2, (uint32)_musicBits, 0, 0); // play
_playing = true;
Modified: scummvm/trunk/engines/parallaction/parallaction.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/parallaction.cpp 2007-01-14 21:29:12 UTC (rev 25083)
+++ scummvm/trunk/engines/parallaction/parallaction.cpp 2007-01-14 21:58:18 UTC (rev 25084)
@@ -594,12 +594,14 @@
_hoverZone = z;
_input._event = kEvEnterZone;
+ // FIXME: casting pointer to int32
_input._data= (int32)&z->_label;
return &_input;
}
if ((_mouseButtons == kMouseLeftUp) && ((_activeItem._id != 0) || ((z->_type & 0xFFFF) == kZoneCommand))) {
+ // FIXME: casting pointer to int32
_input._data = (int32)z;
if (z->_flags & kFlagsNoWalk) {
// printf("7.1\n");
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