mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 10:11:04 +00:00
- more warning fixes in 'core'.
This commit is contained in:
parent
1168341d5a
commit
783b94f922
9 changed files with 34 additions and 23 deletions
|
@ -116,10 +116,10 @@ void FNotifyBuffer::DrawNative()
|
|||
|
||||
FFont* font = isBlood() ? SmallFont2 : SmallFont;
|
||||
|
||||
int line = isBlood() ? Top : (g_gameType & GAMEFLAG_SW) ? 40 : font->GetDisplacement();
|
||||
double line = isBlood() ? Top : (g_gameType & GAMEFLAG_SW) ? 40 : font->GetDisplacement();
|
||||
bool canskip = isBlood();
|
||||
double scale = 1 / (NotifyFontScale * con_notifyscale);
|
||||
int lineadv = font->GetHeight() / NotifyFontScale;
|
||||
double lineadv = font->GetHeight() / NotifyFontScale;
|
||||
|
||||
for (unsigned i = topline; i < Text.Size(); ++i)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue