mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA: Fix -Wimplicit-function-declaration warning
GCC 14 promotes this to an error. source/gl_hud.c:1697:2: warning: implicit declaration of function 'Save_Achivements' [-Wimplicit-function-declaration] 1697 | Save_Achivements(); | ^~~~~~~~~~~~~~~~
This commit is contained in:
parent
251c34708c
commit
a40c8e34d4
1 changed files with 3 additions and 0 deletions
|
@ -1684,6 +1684,9 @@ void HUD_Achievement (void)
|
|||
|
||||
}
|
||||
|
||||
// from menu.c
|
||||
void Save_Achivements(void);
|
||||
|
||||
void HUD_Parse_Achievement (int ach)
|
||||
{
|
||||
if (achievement_list[ach].unlocked)
|
||||
|
|
Loading…
Reference in a new issue