I'm starting to think this has to do with your aspect ratio, where you have width/height
Thank You
From initialize():
[source]
aspectRatio = ScreenWidth / ScreenHeight;
[/source]
Both ScreenWidth and ScreenHeight are integers, so you're performing an integer division and the results is thus an integer. That is, your aspect ratio is wrong. Cast the numerator and/or the denominator to a floating point value to perform a floating point division.
Thank You