overlays: Fix linux compilation

This commit is contained in:
Megamouse 2023-02-07 00:03:21 +01:00
parent 3b09a39576
commit 69435dd951
5 changed files with 15 additions and 5 deletions

View file

@ -659,7 +659,7 @@ void pad_thread::open_home_menu()
return;
}
input_log.warning("opening home menu...");
input_log.notice("opening home menu...");
const error_code result = manager->create<rsx::overlays::home_menu_dialog>()->show([this](s32 status)
{
@ -669,5 +669,7 @@ void pad_thread::open_home_menu()
send_close_home_menu_cmds();
});
(result ? input_log.error : input_log.notice)("opened home menu with result %d", s32{result});
}
}