Skip to content

Commit

Permalink
quick fix for cia release
Browse files Browse the repository at this point in the history
  • Loading branch information
RSDuck committed Oct 28, 2017
1 parent 3e6d83a commit b5d15d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/GameStates.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

typedef enum { GameState_SelectWorld, GameState_Playing } GameState;

#define CRAFTUS_VERSION_STR "0.3 Pre 1"
#define CRAFTUS_VERSION_STR "0.3 Pre 2"
4 changes: 2 additions & 2 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ void releaseWorld(ChunkWorker* chunkWorker, SaveManager* savemgr, World* world)
World_UnloadChunk(world, world->chunkCache[i][j]);
}
}
ChunkWorker_Finish(&chunkWorker);
ChunkWorker_Finish(chunkWorker);
World_Reset(world);

SaveManager_Unload(&savemgr);
SaveManager_Unload(savemgr);
}

int main() {
Expand Down

0 comments on commit b5d15d7

Please sign in to comment.