1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-04 08:50:15 +00:00

touch interface

This commit is contained in:
Zeno Rogue
2025-12-12 11:39:41 +01:00
parent bf7c437dad
commit 6727efb9d4
4 changed files with 37 additions and 1 deletions

View File

@@ -1833,6 +1833,9 @@ EX void show_menu_button() {
displayButton(vid.xres-8, vid.yres-vid.fsize, XLAT("menu"), SDLK_ESCAPE, 16);
else
displayButton(vid.xres-8, vid.yres-vid.fsize, XLAT("(v) menu"), 'v', 16);
if(touch_interface)
displayButton(vid.xres - 8, vid.yres - 3 * vid.fsize, XLAT(touch_description[(int) touchmode]), PSEUDOKEY_TOUCH, 16);
}
EX void normalscreen() {