Skip to content

Commit 78ca01e

Browse files
committed
Fri 21 Feb 2020 14:52:34 EST - working with @ducalex codebase for nesemu-go
1 parent c413908 commit 78ca01e

File tree

8 files changed

+730
-1397
lines changed

8 files changed

+730
-1397
lines changed

Components/retro-go/components/odroid/odroid_hud.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ const uint16_t FONT_5x7[7][250] = {
510510
ACTION = STATE.action;
511511
switch(ACTION) {
512512
case 0: // "Resume Game"
513-
ili9341_clear(0);
513+
//ili9341_blank_screen();
514514
return 0;
515515
break;
516516
case 1: // "Restart Game"
@@ -523,13 +523,12 @@ const uint16_t FONT_5x7[7][250] = {
523523
break;
524524
case 3: // "Save Game"
525525
case 4: // "Overwrite Game"
526-
ili9341_clear(0);
527526
return 0;
528527
break;
529528
case 5: // "Delete Save"
530529
hud_progress("Deleting...", true);
531530
hud_prepare_delete(1);
532-
ili9341_clear(0);
531+
ili9341_blank_screen();
533532
esp_restart();
534533
//return 0;
535534
break;

Components/retro-go/nesemu-go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
PROJECT_NAME := nesemu-go
77

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

1111
$(info CWD is $(CWD))
1212
$(info EXTRA_COMPONENT_DIRS is $(EXTRA_COMPONENT_DIRS))

0 commit comments

Comments
 (0)