Skip to content

Commit

Permalink
Fix game_ai_lib.so loading path in game_ai.c (#17456)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatPoliquin authored Jan 22, 2025
1 parent 0903eea commit aa49c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai/game_ai.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ extern void game_ai_init()
retro_assert(game_ai_lib_set_debug_log);
}
#else
g_lib_handle = dlopen("libgame_ai.so", RTLD_NOW);
g_lib_handle = dlopen("./libgame_ai.so", RTLD_NOW);
retro_assert(g_lib_handle);

if(g_lib_handle != NULL)
Expand Down

0 comments on commit aa49c05

Please sign in to comment.