From: SourceForge.net <no...@so...> - 2009-01-25 15:04:05
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=6245953 By: wpvanpaassen Hi, That's because tuxcap is currently not 64 bit clean. The original framework uses unsigned long for a lot of their variables. This will work fine on 64 bit windows (LLP64) but not on 64 bit Linux which is LP64. The ulong typedef can be found in Common.h and for 64 bit Linux should be unsigned int instead of unsigned long. The problem you encounter has to do with image loading. See file ImageLib.cpp. These image loading problems are also caused by the current typedef of ulong to unsigned long. Let me know if you're interested in making tuxcap 64 bit clean so I can give you more information. Thanks and cheers WP ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=709544 |