Misc.
This commit is contained in:
parent
9f8ef4ad42
commit
299b15dac5
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue