'go back' on web is now Backspace, not ESC

This commit is contained in:
Zeno Rogue 2020-09-23 14:53:24 +02:00
parent b50c32e775
commit b6450fc5bc
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ EX namespace dialog {
EX color_t dialogcolor = 0xC0C0C0;
EX void addBack() {
addItem(XLAT("go back"), SDLK_ESCAPE);
addItem(XLAT("go back"), ISWEB ? SDLK_BACKSPACE : SDLK_ESCAPE);
}
EX void addHelp() {