A couple more.
This commit is contained in:
parent
ba248f8264
commit
bf01637f57
12
src/game.c
12
src/game.c
|
@ -1879,8 +1879,8 @@ static void game_doHud()
|
||||||
}
|
}
|
||||||
screen_blitTextInPlace(TS_PLASMA_T);
|
screen_blitTextInPlace(TS_PLASMA_T);
|
||||||
sprintf(text, "%.3d", player.ammo[0]);
|
sprintf(text, "%.3d", player.ammo[0]);
|
||||||
gfx_createTextObject(TS_PLASMA, text, screen->w * 5 / 16 + 70, screen->h - 49, fontColor);
|
gfx_createTextObject(TS_PLASMA, text, 0, 0, fontColor);
|
||||||
screen_blitTextInPlace(TS_PLASMA);
|
screen_blitText(TS_PLASMA, screen->w * 5 / 16 + 70, screen->h - 49);
|
||||||
|
|
||||||
screen_blitTextInPlace(TS_AMMO_T);
|
screen_blitTextInPlace(TS_AMMO_T);
|
||||||
|
|
||||||
|
@ -1891,8 +1891,8 @@ static void game_doHud()
|
||||||
else
|
else
|
||||||
fontColor = FONT_WHITE;
|
fontColor = FONT_WHITE;
|
||||||
sprintf(text, "%.2d", player.ammo[1]); // rocket ammo
|
sprintf(text, "%.2d", player.ammo[1]); // rocket ammo
|
||||||
gfx_createTextObject(TS_AMMO, text, screen->w / 2 + 80, screen->h - 49, fontColor);
|
gfx_createTextObject(TS_AMMO, text, 0, 0, fontColor);
|
||||||
screen_blitTextInPlace(TS_AMMO);
|
screen_blitText(TS_AMMO, screen->w / 2 + 80, screen->h - 49);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((player.weaponType[1] == W_CHARGER) || (player.weaponType[1] == W_LASER)) && (player.ammo[1] > 0))
|
if (((player.weaponType[1] == W_CHARGER) || (player.weaponType[1] == W_LASER)) && (player.ammo[1] > 0))
|
||||||
|
@ -2538,8 +2538,8 @@ int game_mainLoop()
|
||||||
|
|
||||||
if (engine.paused)
|
if (engine.paused)
|
||||||
{
|
{
|
||||||
gfx_createTextObject(TS_PAUSED, "PAUSED", -1, screen->h / 2, FONT_WHITE);
|
gfx_createTextObject(TS_PAUSED, "PAUSED", 0, 0, FONT_WHITE);
|
||||||
screen_blitTextInPlace(TS_PAUSED);
|
screen_blitText(TS_PAUSED, -1, screen->h / 2);
|
||||||
renderer_update();
|
renderer_update();
|
||||||
audio_pauseMusic();
|
audio_pauseMusic();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue