Skip to content

Commit

Permalink
Fri 21 Feb 2020 14:52:34 EST - working with @ducalex codebase for nes…
Browse files Browse the repository at this point in the history
…emu-go
  • Loading branch information
32teeth committed Feb 21, 2020
1 parent c413908 commit 78ca01e
Show file tree
Hide file tree
Showing 8 changed files with 730 additions and 1,397 deletions.
5 changes: 2 additions & 3 deletions Components/retro-go/components/odroid/odroid_hud.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ const uint16_t FONT_5x7[7][250] = {
ACTION = STATE.action;
switch(ACTION) {
case 0: // "Resume Game"
ili9341_clear(0);
//ili9341_blank_screen();
return 0;
break;
case 1: // "Restart Game"
Expand All @@ -523,13 +523,12 @@ const uint16_t FONT_5x7[7][250] = {
break;
case 3: // "Save Game"
case 4: // "Overwrite Game"
ili9341_clear(0);
return 0;
break;
case 5: // "Delete Save"
hud_progress("Deleting...", true);
hud_prepare_delete(1);
ili9341_clear(0);
ili9341_blank_screen();
esp_restart();
//return 0;
break;
Expand Down
2 changes: 1 addition & 1 deletion Components/retro-go/nesemu-go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
PROJECT_NAME := nesemu-go

CWD := $(shell cd ../ && (bash -c "dirs +0"))
EXTRA_COMPONENT_DIRS := ~/Desktop/github/R32/Software/Emulators/retro-go/components
EXTRA_COMPONENT_DIRS := $(CWD)/components

$(info CWD is $(CWD))
$(info EXTRA_COMPONENT_DIRS is $(EXTRA_COMPONENT_DIRS))
Expand Down
Loading

0 comments on commit 78ca01e

Please sign in to comment.