1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 22:12:59 +00:00

Fix some compiler errors and a mistake in config.cpp.

This commit is contained in:
Arthur O'Dwyer
2022-07-01 14:04:45 -04:00
parent 2486937720
commit 48800f58f8
3 changed files with 5 additions and 5 deletions

View File

@@ -2737,7 +2737,7 @@ EX void selectLanguageScreen() {
int v = vid.language;
dynamicval<int> d(vid.language, -1);
for(int i=0; i<NUMLAN-1 || i == v; i++) {
for(int i=0; i<NUMLAN; i++) {
vid.language = i;
dialog::addSelItem(XLAT("EN"), its(100 * transcompleteness[i] / transcompleteness[0]) + "%", 'a'+i);
}