mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Minor comment fix
This commit is contained in:
parent
8a1ec96626
commit
6f825e4ff3
1 changed files with 2 additions and 5 deletions
|
@ -522,16 +522,13 @@ static void load_integration_callback(int result, const char *error_message, rc_
|
|||
switch (result) {
|
||||
case RC_OK:
|
||||
{
|
||||
// If not successful, just report the error and bail. Shouldn't happen.
|
||||
|
||||
// DLL was loaded.
|
||||
// DLL was loaded correctly.
|
||||
g_OSD.Show(OSDType::MESSAGE_SUCCESS, ac->T("RAIntegration DLL loaded."));
|
||||
|
||||
// Hook up menu.
|
||||
HWND hWnd = (HWND)userdata;
|
||||
rc_client_raintegration_set_event_handler(g_rcClient, &raintegration_event_handler);
|
||||
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));
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue