mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-25 03:42:34 +01:00
- fix "Out of Tape" height, align DEMO text
This commit is contained in:
parent
583cae8b56
commit
4086bbaf9c
@ -2318,7 +2318,7 @@ void RenderGame2(int view)
|
||||
colour = 32 - colour;
|
||||
|
||||
SetTextColour((colour & 0x1f) << 3, 0, 0);
|
||||
PrintString(G_LTXT(GTXT_DEMO), 32, 15);
|
||||
PrintString(G_LTXT(GTXT_DEMO), gOverlayXPos, 15);
|
||||
}
|
||||
|
||||
for (i = 0; i < 2; i++)
|
||||
|
@ -131,7 +131,7 @@ void DrawMission(void)
|
||||
if (gOutOfTape)
|
||||
{
|
||||
SetTextColour(128, 128, 64);
|
||||
PrintString(G_LTXT(GTXT_OutOfTape), gOverlayXPos, 236);
|
||||
PrintString(G_LTXT(GTXT_OutOfTape), gOverlayXPos, SCREEN_H - 20);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -675,26 +675,6 @@ void DisplayOverlays(void)
|
||||
{
|
||||
short* felony;
|
||||
|
||||
if (NoPlayerControl || gInGameCutsceneActive || gInGameCutsceneDelay)
|
||||
return;
|
||||
|
||||
if (NumPlayers > 1)
|
||||
{
|
||||
if (CurrentPlayerView == 0)
|
||||
return;
|
||||
|
||||
SetFullscreenDrawing();
|
||||
}
|
||||
|
||||
UpdateFlashValue();
|
||||
|
||||
if (gShowMap == 0)
|
||||
{
|
||||
FastForward = 0;
|
||||
|
||||
if (!gDoOverlays)
|
||||
return;
|
||||
|
||||
#ifndef PSX
|
||||
if (gWidescreenOverlayAlign)
|
||||
{
|
||||
@ -716,6 +696,26 @@ void DisplayOverlays(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
if (NoPlayerControl || gInGameCutsceneActive || gInGameCutsceneDelay)
|
||||
return;
|
||||
|
||||
if (NumPlayers > 1)
|
||||
{
|
||||
if (CurrentPlayerView == 0)
|
||||
return;
|
||||
|
||||
SetFullscreenDrawing();
|
||||
}
|
||||
|
||||
UpdateFlashValue();
|
||||
|
||||
if (gShowMap == 0)
|
||||
{
|
||||
FastForward = 0;
|
||||
|
||||
if (!gDoOverlays)
|
||||
return;
|
||||
|
||||
if(!gInvincibleCar || ActiveCheats.cheat3)
|
||||
{
|
||||
DrawPercentageBar(&PlayerDamageBar);
|
||||
|
Loading…
Reference in New Issue
Block a user