mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Build the RAIntegration menu on the right thread
This commit is contained in:
parent
9ec5efdcc5
commit
00acaa3299
1 changed files with 4 additions and 2 deletions
|
@ -531,8 +531,10 @@ static void load_integration_callback(int result, const char *error_message, rc_
|
|||
rc_client_raintegration_set_write_memory_function(g_rcClient, &raintegration_write_memory_handler);
|
||||
rc_client_raintegration_set_get_game_name_function(g_rcClient, &raintegration_get_game_name_handler);
|
||||
|
||||
HWND hWnd = (HWND)userdata;
|
||||
rc_client_raintegration_rebuild_submenu(g_rcClient, GetMenu(hWnd));
|
||||
System_RunCallbackInWndProc([](void *vhWnd, void *userdata) {
|
||||
HWND hWnd = reinterpret_cast<HWND>(vhWnd);
|
||||
rc_client_raintegration_rebuild_submenu(g_rcClient, GetMenu(hWnd));
|
||||
}, nullptr);
|
||||
break;
|
||||
}
|
||||
case RC_MISSING_VALUE:
|
||||
|
|
Loading…
Add table
Reference in a new issue