I decided to base my "game" on the Advanced Ogre Framework (many thanks to Spacegaier and jacmoe for making it, it's an enormous help). It compiles fine, however, I got a few warnings, and I wanted to eliminate them. I managed to do it, apart from a few "Suspicious semicolon" warnings in DotSceneLoader.cpp. The code looks like this:
Code: Select all
if(pElement)
;
Code: Select all
if(pElement)
{
}
Could someone shed some light on this? Thank you in advance. And sorry for being a total noob...