mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-11 18:00:34 +00:00
previous page button
This commit is contained in:
parent
15c9a78093
commit
0cf4487a50
@ -1066,6 +1066,11 @@ void show() {
|
|||||||
spos = 0;
|
spos = 0;
|
||||||
else spos = nextpos;
|
else spos = nextpos;
|
||||||
});
|
});
|
||||||
|
dialog::addItem(XLAT("previous page"), '=');
|
||||||
|
dialog::add_action([] () {
|
||||||
|
spos -= 10;
|
||||||
|
if(spos < 0) spos = 0;
|
||||||
|
});
|
||||||
|
|
||||||
if(archimedean) {
|
if(archimedean) {
|
||||||
dialog::addSelItem(XLAT("size of the world"), current.world_size(), 0);
|
dialog::addSelItem(XLAT("size of the world"), current.world_size(), 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user