Skip to content

Commit

Permalink
final attributions
Browse files Browse the repository at this point in the history
  • Loading branch information
311993 committed Dec 3, 2023
1 parent 652419e commit afa0e56
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#This file modified by David Stuckey to prevent library auto-update

LIBRARYREPO := simulator_libraries

ifeq ($(OS),Windows_NT)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
1 change: 1 addition & 0 deletions simulator_libraries/FEHLCD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
5 changes: 4 additions & 1 deletion simulator_libraries/Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)
Expand Down

0 comments on commit afa0e56

Please sign in to comment.