diff --git a/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp b/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp index 6f644bb9b9..ee8acabb86 100644 --- a/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp +++ b/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp @@ -166,7 +166,7 @@ error_code open_msg_dialog(bool is_blocking, u32 type, vm::cptr msgString, const auto notify = std::make_shared>(false); - const auto res = manager->create()->show(is_blocking, msgString.get_ptr(), _type, [callback, userData, &return_code, is_blocking, ¬ify](s32 status) + const auto res = manager->create()->show(is_blocking, msgString.get_ptr(), _type, [callback, userData, &return_code, is_blocking, notify](s32 status) { if (is_blocking && return_code) { diff --git a/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_menu.cpp b/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_menu.cpp index e7be8ab684..9fb8458bad 100644 --- a/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_menu.cpp +++ b/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_menu.cpp @@ -166,7 +166,7 @@ namespace rsx overlayman.attach_thread_input( uid, "Home menu", - [¬ify]() { *notify = true; notify->notify_one(); } + [notify]() { *notify = true; notify->notify_one(); } ); if (g_cfg.misc.pause_during_home_menu) diff --git a/rpcs3/Emu/RSX/Overlays/overlay_message_dialog.cpp b/rpcs3/Emu/RSX/Overlays/overlay_message_dialog.cpp index b76009af99..239be314bb 100644 --- a/rpcs3/Emu/RSX/Overlays/overlay_message_dialog.cpp +++ b/rpcs3/Emu/RSX/Overlays/overlay_message_dialog.cpp @@ -302,14 +302,14 @@ namespace rsx { overlayman.attach_thread_input( uid, "Message dialog", - [¬ify]() { *notify = true; notify->notify_one(); } + [notify]() { *notify = true; notify->notify_one(); } ); } else { overlayman.attach_thread_input( uid, "Message dialog", - [¬ify]() { *notify = true; notify->notify_one(); }, + [notify]() { *notify = true; notify->notify_one(); }, nullptr, [&]() { diff --git a/rpcs3/Emu/RSX/Overlays/overlay_osk.cpp b/rpcs3/Emu/RSX/Overlays/overlay_osk.cpp index 8ad296861a..6f85de0f42 100644 --- a/rpcs3/Emu/RSX/Overlays/overlay_osk.cpp +++ b/rpcs3/Emu/RSX/Overlays/overlay_osk.cpp @@ -1625,7 +1625,7 @@ namespace rsx overlayman.attach_thread_input( uid, "OSK", - [¬ify]() { *notify = true; notify->notify_one(); } + [notify]() { *notify = true; notify->notify_one(); } ); while (!Emu.IsStopped() && !*notify) diff --git a/rpcs3/Emu/RSX/Overlays/overlay_user_list_dialog.cpp b/rpcs3/Emu/RSX/Overlays/overlay_user_list_dialog.cpp index 95a144e1bb..d2b6d85a4c 100644 --- a/rpcs3/Emu/RSX/Overlays/overlay_user_list_dialog.cpp +++ b/rpcs3/Emu/RSX/Overlays/overlay_user_list_dialog.cpp @@ -244,7 +244,7 @@ namespace rsx overlayman.attach_thread_input( uid, "User list dialog", - [¬ify]() { *notify = true; notify->notify_one(); } + [notify]() { *notify = true; notify->notify_one(); } ); while (!Emu.IsStopped() && !*notify)