What about the typo:
Quote:
this is part of my code, checking if such a wrs file exists:
if (NewGame->_fileManager->CheckLoaded("Betapolis.wrs") == true)
{
add_resource ("Betapolis.wrs");
);
should be:
Code:
this is part of my code, checking if such a wrs file exists:
if (NewGame->_fileManager->CheckLoaded("Betapolis.wrs") == true)
{
add_resource ("Betapolis.wrs");
}
maybe this is it ...?