From 101940d727bbc09638a07be37c0f323094f2e1f6 Mon Sep 17 00:00:00 2001 From: terminx Date: Mon, 14 Mar 2016 00:07:01 +0000 Subject: [PATCH] Make PLUTOPAKSPRITE glow on the startup screen like it glows in the menu, because the startup screen is displayed until input is received on mobile. git-svn-id: https://svn.eduke32.com/eduke32@5654 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/screens.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/source/screens.c b/polymer/eduke32/source/screens.c index eb1a0f640..5aa7f7527 100644 --- a/polymer/eduke32/source/screens.c +++ b/polymer/eduke32/source/screens.c @@ -1579,7 +1579,7 @@ void G_DisplayLogo(void) // JBF 20030804 if (totalclock >= 280 && totalclock < 395) { - rotatesprite_fs(160<<16, (151)<<16, (410-totalclock)<<12, 0, PLUTOPAKSPRITE+1, 0, 0, 2+8); + rotatesprite_fs(160<<16, (151)<<16, (410-totalclock)<<12, 0, PLUTOPAKSPRITE+1, (sintable[(totalclock<<4)&2047]>>11), 0, 2+8); if (soundanm == 2) { soundanm++; @@ -1593,7 +1593,7 @@ void G_DisplayLogo(void) soundanm++; S_PlaySound(PIPEBOMB_EXPLODE); } - rotatesprite_fs(160<<16, (151)<<16, 30<<11, 0, PLUTOPAKSPRITE+1, 0, 0, 2+8); + rotatesprite_fs(160<<16, (151)<<16, 30<<11, 0, PLUTOPAKSPRITE+1, (sintable[(totalclock<<4)&2047]>>11), 0, 2+8); } }