hyperweb:: use XLAT1 not XLAT

This commit is contained in:
Zeno Rogue 2023-12-03 14:29:26 +01:00
parent c63969a21b
commit 0cdd6f8d5d
1 changed files with 3 additions and 3 deletions

View File

@ -151,9 +151,9 @@ void showDemo() {
dialog::addBreak(100);
dialog::addTitle("highlights", 0xC00000, 120);
dialog::addItem(XLAT("Temple of Cthulhu"), 't');
dialog::addItem(XLAT("Land of Storms"), 'l');
dialog::addItem(XLAT("Burial Grounds"), 'b');
dialog::addItem(XLAT1("Temple of Cthulhu"), 't');
dialog::addItem(XLAT1("Land of Storms"), 'l');
dialog::addItem(XLAT1("Burial Grounds"), 'b');
dialog::display();