Minor comment fix

This commit is contained in:
Henrik Rydgård 2024-04-05 18:21:02 +02:00
parent 8a1ec96626
commit 6f825e4ff3

View file

@ -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;
}