From d8045ae339990bb2e4d3a8b89a82346bd4d334c3 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Wed, 25 Feb 2015 21:16:03 +1100 Subject: [PATCH] Minor comment tweaks --- client/client_application.cpp | 1 + client/gameplay_scenes/world_logic.cpp | 2 +- README.txt => instructions.txt | 0 makefile | 2 +- 4 files changed, 3 insertions(+), 2 deletions(-) rename README.txt => instructions.txt (100%) diff --git a/client/client_application.cpp b/client/client_application.cpp index caf465d..cbb670d 100644 --- a/client/client_application.cpp +++ b/client/client_application.cpp @@ -169,6 +169,7 @@ void ClientApplication::Quit() { //------------------------- void ClientApplication::LoadScene(SceneList sceneIndex) { + //BUG: #16 Resources are being reloaded between scenes UnloadScene(); switch(sceneIndex) { //add scene creation calls here diff --git a/client/gameplay_scenes/world_logic.cpp b/client/gameplay_scenes/world_logic.cpp index dcb74d0..0a09c12 100644 --- a/client/gameplay_scenes/world_logic.cpp +++ b/client/gameplay_scenes/world_logic.cpp @@ -173,7 +173,7 @@ void World::Render(SDL_Surface* const screen) { //draw the entities for (auto& it : characterMap) { - //TODO: (1) depth ordering + //BUG: #29 Characters (and other entities) are drawn out of order it.second.DrawTo(screen, camera.x, camera.y); } for (auto& it : monsterMap) { diff --git a/README.txt b/instructions.txt similarity index 100% rename from README.txt rename to instructions.txt diff --git a/makefile b/makefile index 0c09a5e..bc3a86b 100644 --- a/makefile +++ b/makefile @@ -20,7 +20,7 @@ release: clean all package #For use on my machine ONLY package: rar a -r -ep Tortuga.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll - rar a -r Tortuga.rar rsc/* copyright.txt README.txt + rar a -r Tortuga.rar rsc/* copyright.txt instructions.txt $(OUTDIR): mkdir $(OUTDIR)