Skip to content

Commit 7cc3523

Browse files
committed
Mon 10 Feb 2020 11:48:02 EST - added cover art reading and option from https://github.com/retro-esp32/Convert-Image-to-ROM-art
1 parent 5b6568d commit 7cc3523

File tree

8 files changed

+185
-103
lines changed

8 files changed

+185
-103
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Emulators/handy-go/sdkconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ CONFIG_MONITOR_BAUD=115200
8383
#
8484
# Retro ESP32 Configuration
8585
#
86-
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=
87-
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=y
88-
CONFIG_DEFAULT_MENU_KEY=
89-
CONFIG_COMBO_MENU_KEY=y
86+
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=y
87+
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=
88+
CONFIG_DEFAULT_MENU_KEY=y
89+
CONFIG_COMBO_MENU_KEY=
9090
CONFIG_IN_GAME_MENU_YES=y
9191
CONFIG_IN_GAME_MENU_NO=
9292

Launchers/retro-esp32/main/includes/declarations.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ void draw_settings();
2626
void draw_toggle();
2727
void get_toggle();
2828
void set_toggle();
29+
void draw_cover_toggle();
30+
void get_cover_toggle();
31+
void set_cover_toggle();
2932

3033
/*
3134
Volume
@@ -90,6 +93,7 @@ void has_save_file(char *save_name);
9093
/*
9194
Cover
9295
*/
96+
9397
void get_cover();
9498
void preview_cover(bool error);
9599
void draw_cover();

Launchers/retro-esp32/main/includes/structures.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ LIST ROMS = {8, 0, 0, 0, 0};
2929
typedef struct{
3030
char name[256];
3131
char path[256];
32+
char art[256];
3233
uint32_t crc;
3334
bool ready;
3435
} LOAD;

0 commit comments

Comments
 (0)