Skip to content

Commit 63806b8

Browse files
committed
Wed 26 Feb 2020 16:49:19 EST - preparing for v.2.2
1 parent 5a74e24 commit 63806b8

File tree

5 files changed

+115
-87
lines changed

5 files changed

+115
-87
lines changed

Launchers/retro-esp32/components/odroid/odroid_settings.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int32_t odroid_settings_Volume_get()
174174
err = nvs_get_i32(my_handle, NvsKey_Volume, &result);
175175
if (err == ESP_OK)
176176
{
177-
printf("odroid_settings_Volume_get: value=%d\n", result);
177+
//printf("odroid_settings_Volume_get: value=%d\n", result);
178178
}
179179

180180
// Close

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
char *remove_ext (char* myStr, char extSep, char pathSep);
55
char *get_filename (char* myStr);
66
char *get_ext (char* myStr);
7+
int get_application (char* ext);
78

89
/*
910
Debounce

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/*
4141
4242
*/
43-
#define BUILD "Version 2 Build 1 (v.2.1)"
43+
#define BUILD "Version 2 Build 2 (v.2.2)"
4444

4545

4646
#define _GNU_SOURCE

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ typedef struct{
3030
char name[256];
3131
char path[256];
3232
char art[256];
33+
char ext[256];
3334
uint32_t crc;
3435
bool ready;
3536
bool favorite;

0 commit comments

Comments
 (0)