From f17b15bdffe45810eebc7695c10f1d7fc34af014 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Thu, 10 Aug 2017 22:39:31 +0200 Subject: + System timer functions now moved to a separate source file, Timer.c/Timer.h. * Added some more comments on Game.c. * On GamePathToTile(), duplicate checks for existing tile have been replaced by calls to GameWaypointCheckExisting(). --- Source/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Makefile') diff --git a/Source/Makefile b/Source/Makefile index dfe4290..5c47192 100644 --- a/Source/Makefile +++ b/Source/Makefile @@ -35,11 +35,11 @@ GNU_SIZE = mipsel-unknown-elf-size OBJECTS = $(addprefix $(OBJ_DIR)/,main.o System.o Menu.o Gfx.o Pad.o MainMenuBtnAni.o \ LoadMenu.o GameGui.o Sfx.o Camera.o EndAnimation.o \ PSXSDKIntro.o PltParser.o Game.o Font.o MemCard.o \ - Aircraft.o Serial.o) + Aircraft.o Serial.o Timer.o) DEPS = $(OBJECTS:.o=.d) -build: levels $(PROJECT).bin +build: levels $(PROJECT).bin rebuild: clean build -- cgit v1.2.3