1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

fixed unused capture warning

This commit is contained in:
Zeno Rogue 2020-05-31 17:45:02 +02:00
parent dacc93ee50
commit b0c6c95305

View File

@ -485,14 +485,14 @@ EX void configure() {
});
dialog::addSelItem("original", fts(around_orig()), 'O');
dialog::add_action([e] {
dialog::add_action([] {
around = around_orig();
popScreen();
change_around();
});
dialog::addSelItem("double original", fts(2 * around_orig()), 'D');
dialog::add_action([e] {
dialog::add_action([] {
around = 2 * around_orig();
popScreen();
change_around();