mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix hardestroom not being translated
`hardestroom` currently stores the current roomname, but it was missing a call to get the translated string. This has been added, fixing the hardest room appearing as untranslated.
This commit is contained in:
parent
d112dee72c
commit
188fc996bd
1 changed files with 1 additions and 1 deletions
|
@ -4189,7 +4189,7 @@ void Game::gethardestroom(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
hardestroom = map.roomname;
|
hardestroom = loc::gettext_roomname(map.custommode, roomx, roomy, map.roomname, map.roomname_special);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue