Closed dlancer closed 9 years ago
Error on make:
LaserTank.cpp:1270:78: error: cast from pointer to smaller type 'Dword' (aka 'unsigned int') loses information
kos_DefineAndDrawWindow(10, 40, 384 + 9, 384 + 25, 0x33, 0x444444, 0, 0, (Dword)header);
Latest MacOS X use clang compiler by default, so this is probably related. In my macosx port I just remove this cast:
kos_DefineAndDrawWindow(10, 40, 384 + 9, 384 + 25, 0x33, 0x444444, 0, 0, header);
First form must be used only on KOS
Error on make:
LaserTank.cpp:1270:78: error: cast from pointer to smaller type 'Dword' (aka 'unsigned int') loses information
Latest MacOS X use clang compiler by default, so this is probably related. In my macosx port I just remove this cast: