I'm making an attempt at compiling Pentagram. At first I'll get in running with SDL under x86 binaries then I'll port it to the gp2x if I'm sucessful. My problem is these error messages. I'm not huge on C++, I use C mostly so these messages are quite cryptic to me. Surely there is an easy way to fix it.
I have about 50+ messages similar to those. They all have to do with static_cast and reinterpret_cast, things I know nothing about. Any help is appreciated.
Code:
graphics/SoftRenderSurface.inl:122: error: invalid operands of types `int*' and `unsigned int' to binary `operator*'
graphics/SoftRenderSurface.inl:122: error: invalid operands of types `int*' and `sint32' to binary `operator*'
graphics/SoftRenderSurface.inl:207: error: ISO C++ forbids comparison between pointer and integer
graphics/SoftRenderSurface.inl:211: error: invalid operands of types `sint32' and `int*' to binary `operator*'
graphics/SoftRenderSurface.inl:289: error: ISO C++ forbids comparison between pointer and integer
graphics/SoftRenderSurface.inl:291: error: invalid operands of types `sint32' and `int*' to binary `operator*'
I have about 50+ messages similar to those. They all have to do with static_cast and reinterpret_cast, things I know nothing about. Any help is appreciated.