diff --git a/Makefile b/Makefile index 0334717..6c59427 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +#This file modified by David Stuckey to prevent library auto-update + LIBRARYREPO := simulator_libraries ifeq ($(OS),Windows_NT) diff --git a/README.md b/README.md index 5ec7ce3..8df2548 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Shape Dash -V1.1 - 12/02/2023 +V1.1 - 12/03/2023 Programmed by David Stuckey and Olivia Smith -For the Software Development Project component of the FEH Program at The Ohio State University +Art by Olivia Smith + +Creted for the Software Development Project component of the FEH Program at The Ohio State University Using the FEH Proteus Simulator Libraries diff --git a/simulator_libraries/FEHLCD.cpp b/simulator_libraries/FEHLCD.cpp index 3b275c6..8a75430 100644 --- a/simulator_libraries/FEHLCD.cpp +++ b/simulator_libraries/FEHLCD.cpp @@ -182,6 +182,7 @@ bool FEHLCD::Touch(int *x_pos, int *y_pos) return (mouseButton & 0x01) == 1; } +//Get pressed/unpressed state of a key on the system keyboard as defined in tigr library- Written by David Stuckey int FEHLCD::KeyState(int key) { tigrKeyHeld(screen, key); diff --git a/simulator_libraries/Makefile b/simulator_libraries/Makefile index bb1dc64..448366d 100644 --- a/simulator_libraries/Makefile +++ b/simulator_libraries/Makefile @@ -1,3 +1,5 @@ +#This file modified by David Stuckey to rename output executable + CC = g++ CPPFLAGS = -MMD -MP -Os -DOBJC_OLD_DISPATCH_PROTOTYPES -g IGNORED_WARNINGS = -w @@ -7,7 +9,8 @@ OBJS = FEHLCD.o FEHRandom.o FEHSD.o tigr.o FEHUtility.o FEHImages.o ifeq ($(OS),Windows_NT) LDFLAGS = -lopengl32 -lgdi32 - EXEC = ShapeDash.exe + # + EXEC = ShapeDash.exe else UNAME := $(shell uname) ifeq ($(UNAME),Darwin)