mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- buildutils: Replace sintable[]
use within Duke's sbar_*.cpp with bsin()
/bcos()
.
This commit is contained in:
parent
0781d627dc
commit
410c2cf41f
2 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ public:
|
|||
{
|
||||
int s = -8;
|
||||
if (althud_flashing && p->last_extra > max_player_health)
|
||||
s += (sintable[(I_GetBuildTime() << 5) & 2047] / 768);
|
||||
s += bsin(I_GetBuildTime() << 5) / 768;
|
||||
int intens = clamp(255 - 6 * s, 0, 255);
|
||||
format.Format("%d", p->last_extra);
|
||||
SBar_DrawString(this, numberFont, format, 25, texty, DI_TEXT_ALIGN_LEFT, CR_UNTRANSLATED, intens / 255., 0, 0, 1, 1);
|
||||
|
|
|
@ -112,7 +112,7 @@ public:
|
|||
{
|
||||
int s = -8;
|
||||
if (althud_flashing && p->last_extra > max_player_health)
|
||||
s += (sintable[(I_GetBuildTime() << 5) & 2047] / 768);
|
||||
s += bsin(I_GetBuildTime() << 5) / 768;
|
||||
int intens = clamp(255 - 6 * s, 0, 255);
|
||||
format.Format("%d", p->last_extra);
|
||||
SBar_DrawString(this, numberFont, format, 26.5, -numberFont->mFont->GetHeight() * scale + 4, DI_TEXT_ALIGN_LEFT, CR_UNTRANSLATED, intens / 255., 0, 0, scale, scale);
|
||||
|
|
Loading…
Reference in a new issue