1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 09:50:34 +00:00

previous page button

This commit is contained in:
Zeno Rogue 2018-08-24 23:52:02 +02:00
parent 15c9a78093
commit 0cf4487a50

View File

@ -1066,6 +1066,11 @@ void show() {
spos = 0;
else spos = nextpos;
});
dialog::addItem(XLAT("previous page"), '=');
dialog::add_action([] () {
spos -= 10;
if(spos < 0) spos = 0;
});
if(archimedean) {
dialog::addSelItem(XLAT("size of the world"), current.world_size(), 0);