Rename register func to InitFasterPauseMenu

This commit is contained in:
Eblo 2025-06-26 17:26:35 -04:00
commit a502c07e55
No known key found for this signature in database
GPG key ID: 214AFBC4697F23AC

View file

@ -21,7 +21,7 @@ void OnKaleidoUpdateFaster() {
}
}
void RegisterFasterPauseMenu() {
void InitFasterPauseMenu() {
COND_HOOK(GameInteractor::OnKaleidoUpdate, CVAR_FASTER_PAUSE_MENU_VALUE, OnKaleidoUpdateFaster);
// Reset register values on close. These values are only used by z_kaleido_scope_PAL.c
@ -32,4 +32,4 @@ void RegisterFasterPauseMenu() {
});
}
static RegisterShipInitFunc initFunc(RegisterFasterPauseMenu, { CVAR_FASTER_PAUSE_MENU_NAME });
static RegisterShipInitFunc initFunc(InitFasterPauseMenu, { CVAR_FASTER_PAUSE_MENU_NAME });