diff options
Diffstat (limited to 'c')
| -rw-r--r-- | c/echo.c | 2 | ||||
| -rw-r--r-- | c/echo.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -53,7 +53,7 @@ static const uint8_t psg_volumes[] = { // param list: pointer to instrument list //*************************************************************************** -void echo_init(const void **list) { +void echo_init(const void* const* list) { // Take over the Z80 Z80_RESET(); Z80_REQUEST(); @@ -24,7 +24,7 @@ enum { #define ECHO_STAT_BUSY 0x8000 /* Echo still didn't parse command */ /* Function prototypes */ -void echo_init(const void **list); +void echo_init(const void* const* list); void echo_play_bgm(const void *esf); void echo_stop_bgm(void); void echo_pause_bgm(void); |
