Should we just make a thread if we find a bug or some other issue?
I was just messing with the game API in 0.4 and created a new project through the IDE - Game API Advanced Project.
It was nice to have the framework there, but there's a problem:
in WinMain
---> Global(KeysPressed$, keys$);
I couldn't get any keypresses to work until I removed the 'keys$' declaration like the samples have. I assume it's declared somewhere else, right? Should there be a warning that you've already defined a variable with the same name?
There also appears to be something strange with the colors of lines... i.e.
G_LINE(20,30,40,50, G_RGB(255,0,0) );
draws a green line instead of red.
