diff --git a/src/test/atlasTest.h b/src/test/atlasTest.h index af7ddd3..d3824a0 100644 --- a/src/test/atlasTest.h +++ b/src/test/atlasTest.h @@ -21,13 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../common.h" extern void initWorld(void); -extern void initMap(void); extern void initHub(void); -extern void initEntities(void); -extern void loadWorld(char *id); -extern void saveConfig(void); extern void loadGame(void); -extern void saveGame(void); -extern void awardTrophy(char *id); extern Dev dev; diff --git a/src/world/objectives.c b/src/world/objectives.c index f832b0b..6fb3e5d 100644 --- a/src/world/objectives.c +++ b/src/world/objectives.c @@ -34,6 +34,9 @@ void initObjectives(void) isReturnVisit = world.currentStatus == MS_PARTIAL || world.currentStatus == MS_MISSING_HEART_CELL; missingHeartCell = world.currentStatus == MS_MISSING_HEART_CELL; + + SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "isReturnVisit = %d", isReturnVisit); + SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "missingHeartCell = %d", missingHeartCell); for (o = world.objectiveHead.next ; o != NULL ; o = o->next) { diff --git a/src/world/world.h b/src/world/world.h index 3f58e14..3a2f220 100644 --- a/src/world/world.h +++ b/src/world/world.h @@ -86,8 +86,6 @@ extern void destroyQuadtree(void); extern void loadWorld(char *id); extern void initMap(void); extern void initEntities(void); -extern void saveGame(void); -extern void saveWorld(void); extern void initPostMission(void); extern void addKeysFromStash(void);