1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 10:44:48 +00:00

in creative menu, animations and history are now separate

This commit is contained in:
Zeno Rogue 2019-04-03 20:32:46 +02:00
parent 6b91dc2d7d
commit ac1c588d7d

View File

@ -450,9 +450,12 @@ void showCreative() {
dialog::addItem(XLAT("screenshots"), 's');
dialog::add_action_push(shot::menu);
dialog::addBoolItem(XLAT("animations/history"), anims::any_on(), 'a');
dialog::addBoolItem(XLAT("animations"), anims::any_on(), 'a');
dialog::add_action_push(anims::show);
dialog::addBoolItem(XLAT("history mode"), conformal::on || conformal::includeHistory, 'h');
dialog::add_action_push(conformal::history_menu);
#if CAP_TEXTURE
if(DIM == 2) {
dialog::addBoolItem(XLAT("texture mode"), texture::config.tstate == texture::tsActive, 't');