]> code.bitgloo.com Git - clyne/gamedev.git/commitdiff
changelog
authorClyne Sullivan <tullivan99@gmail.com>
Mon, 5 Oct 2015 12:49:20 +0000 (08:49 -0400)
committerClyne Sullivan <tullivan99@gmail.com>
Mon, 5 Oct 2015 12:49:20 +0000 (08:49 -0400)
Bugs
Changelog
Makefile

diff --git a/Bugs b/Bugs
index 2a19fbc221f3beb488473100e94fbf4d81ef6d73..c6a125b4af8e8ec30fa8afc1c6b8d421dcc5673c 100644 (file)
--- a/Bugs
+++ b/Bugs
@@ -6,7 +6,8 @@ Major bugs:
 Minor bugs:
 ===========
 
-       - 
+       - Structure sometimes flys off screen
+       - Player can't jump through platforms
        
 Maybe bugs:
 ===========
index b8315487dec86716de6456cb88102d387fb1c77d..540d8fefe5c6bb8f09a9f14ec64ec9ca0e4e42ad 100644 (file)
--- a/Changelog
+++ b/Changelog
        - added a basic inventory
        - quests can reward one type of item (but any quantity of that item)
        - added texture loading, began working on player textures
+
+10/5/2015:
+==========
+
+       - added NPC/player/structure textures
+       - textures flip with direction
+       - made a beautiful Makefile
+       - moved main game loop into separate function
index e571e03fff4343a0ee0ff7d30776654176fae614..d04582b3de9151ffdf2e0513d296776d01d6eb69 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,5 +18,7 @@ all: $(OUT)
        @g++ -o main main.cpp out/*.o $(LIBS_LINUX) $(FLAGS)\r
 \r
 clean:\r
-       -rm main\r
-       -rm out/*.o\r
+       @echo "  RM main"\r
+       @-rm -f main\r
+       @echo "  RM out/*.o"\r
+       @-rm -f out/*.o\r