mark 64bit issues

svn-id: r25084
This commit is contained in:
Willem Jan Palenstijn 2007-01-14 21:58:18 +00:00
parent e5c7ce83b8
commit d38d85b8bc
2 changed files with 3 additions and 0 deletions

View file

@ -71,6 +71,7 @@ void playMusic() {
_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;

View file

@ -594,12 +594,14 @@ Parallaction::InputData *Parallaction::translateInput() {
_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");