mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-09 17:43:07 +00:00
Forgot to commit compilation corrections last night
- Fix repeat for GDGONER_VIDEO text - M_GonerSurveyResponse
This commit is contained in:
parent
11fcb0b9ae
commit
f09c0a4b6c
1 changed files with 15 additions and 13 deletions
|
|
@ -464,16 +464,6 @@ void M_GonerTick(void)
|
|||
|
||||
M_GonerResetLooking(GDGONER_INIT);
|
||||
|
||||
if (gamedata->gonerlevel != lastseenlevel)
|
||||
{
|
||||
if (goner_levelworking >= gamedata->gonerlevel)
|
||||
{
|
||||
// If the valid range has changed, try the current one again
|
||||
goner_levelworking--;
|
||||
}
|
||||
lastseenlevel = gamedata->gonerlevel;
|
||||
}
|
||||
|
||||
if (first)
|
||||
{
|
||||
first = goner_gdq = false;
|
||||
|
|
@ -487,6 +477,18 @@ void M_GonerTick(void)
|
|||
gamedata->gonerlevel = GDGONER_INTRO;
|
||||
|
||||
M_GonerRailroad(false);
|
||||
|
||||
lastseenlevel = gamedata->gonerlevel;
|
||||
}
|
||||
else if (gamedata->gonerlevel != lastseenlevel)
|
||||
{
|
||||
if (goner_levelworking >= gamedata->gonerlevel)
|
||||
{
|
||||
// If the valid range has changed, try the current one again
|
||||
goner_levelworking--;
|
||||
}
|
||||
|
||||
lastseenlevel = gamedata->gonerlevel;
|
||||
}
|
||||
|
||||
goner_typewriter.WriteText();
|
||||
|
|
@ -529,7 +531,7 @@ void M_GonerTick(void)
|
|||
else if (goner_levelworking <= gamedata->gonerlevel)
|
||||
{
|
||||
if (goner_levelworking == GDGONER_INTRO && gamedata->gonerlevel < GDGONER_VIDEO)
|
||||
gamedata->gonerlevel = GDGONER_VIDEO;
|
||||
gamedata->gonerlevel = lastseenlevel = GDGONER_VIDEO;
|
||||
|
||||
if (++goner_levelworking > gamedata->gonerlevel)
|
||||
{
|
||||
|
|
@ -658,9 +660,9 @@ void M_GonerProfile(INT32 choice)
|
|||
M_GonerResetLooking(GDGONER_PROFILE);
|
||||
}
|
||||
|
||||
static boolean M_GonerSurveyResponse(INT32 ch)
|
||||
static void M_GonerSurveyResponse(INT32 ch)
|
||||
{
|
||||
if (ch != CH_YES)
|
||||
if (ch != MA_YES)
|
||||
return;
|
||||
|
||||
if (gamedata->gonerlevel < GDGONER_OUTRO)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue