make a small change to sound interface

add a const
This commit is contained in:
nhmall
2023-01-22 13:49:38 -05:00
parent 5e0fea186c
commit 595d425d73
5 changed files with 7 additions and 7 deletions

View File

@@ -1753,7 +1753,7 @@ struct sound_procs nosound_procs = {
(void (*)(const char *)) 0, /* exit_nhsound */
(void (*)(schar, schar, int32_t)) 0, /* achievement */
(void (*)(char *, int32_t, int32_t)) 0, /* sound effect */
(void (*)(int32_t, char *, int32_t)) 0, /* hero_playnotes */
(void (*)(int32_t, const char *, int32_t)) 0, /* hero_playnotes */
(void (*)(char *, int32_t, int32_t)) 0, /* play_usersound */
};