mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- fixed episode default.
This commit is contained in:
parent
ca288d08f4
commit
8b8c6a5e3a
2 changed files with 2 additions and 2 deletions
|
@ -929,7 +929,7 @@ void C_DrawConsole ()
|
|||
}
|
||||
if (conline && visheight < screen->GetHeight())
|
||||
{
|
||||
twod->AddColorOnlyQuad(0, visheight, screen->GetWidth(), visheight+1, 0xff000000);
|
||||
twod->AddColorOnlyQuad(0, visheight, screen->GetWidth(), 1, 0xff000000);
|
||||
}
|
||||
|
||||
if (ConBottom >= 12)
|
||||
|
|
|
@ -432,7 +432,7 @@ static void BuildEpisodeMenu()
|
|||
ld->mItems.Pop(popped);
|
||||
}
|
||||
|
||||
ld->mSelectedItem = gDefaultVolume + ld->mItems.Size(); // account for pre-added items
|
||||
ld->mSelectedItem = gDefaultSkill + ld->mItems.Size(); // account for pre-added items
|
||||
int y = ld->mYpos;
|
||||
|
||||
for (int i = 0; i < MAXSKILLS; i++)
|
||||
|
|
Loading…
Reference in a new issue