mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- Duke: Amend af9f2f3eb6
to not reset the skill if incoming skill is -1;
This commit is contained in:
parent
adb9547ba9
commit
1fa0863a52
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ void GameInterface::Render()
|
|||
|
||||
void GameInterface::NextLevel(MapRecord* map, int skill)
|
||||
{
|
||||
ud.player_skill = skill + 1;
|
||||
if (skill != -1) ud.player_skill = skill + 1;
|
||||
enterlevel(map, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue