aboutsummaryrefslogtreecommitdiff
path: root/core.h
diff options
context:
space:
mode:
authorneonloop2023-01-09 14:36:40 +0000
committerneonloop2023-01-09 14:36:40 +0000
commit6d0d8f2ce924a0b1a433280160d90f71121509a4 (patch)
treef2e99784fa3e708ae8ac70d65f721c65cf171184 /core.h
parent50d426b6d2c84d4ddc32009268d99047e83ced7f (diff)
downloadpicoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.tar.gz
picoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.tar.bz2
picoarch-6d0d8f2ce924a0b1a433280160d90f71121509a4.zip
Adds initial Funkey S support
Diffstat (limited to 'core.h')
-rw-r--r--core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core.h b/core.h
index 847510b..a667e36 100644
--- a/core.h
+++ b/core.h
@@ -43,7 +43,7 @@ extern unsigned audio_buffer_size_override;
extern int state_slot;
extern int resume_slot;
-void config_file_name(char *buf, size_t len, int is_game);
+void config_file_name(char *buf, size_t len, config_type config_type);
void save_relative_path(char *buf, size_t len, const char *basename);
void sram_read(void);
@@ -51,6 +51,7 @@ void sram_write(void);
bool state_allowed(void);
void state_file_name(char *name, size_t size, int slot);
+bool state_exists(int slot);
int state_read(void);
int state_write(void);
int state_resume(void);