Minor comment tweaks
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user