mirror of
https://github.com/libretro/RetroArch
synced 2025-03-20 19:21:27 +00:00
Merge pull request #8608 from orbea/cxxbuild
Fix some CXX_BUILD errors.
This commit is contained in:
commit
26bbf46054
@ -5357,7 +5357,7 @@ void rarch_log_file_init(void)
|
||||
* logging to file, and wish to do so */
|
||||
|
||||
/* > Check whether we are already logging to console */
|
||||
fp = retro_main_log_file();
|
||||
fp = (FILE*)retro_main_log_file();
|
||||
if (fp)
|
||||
{
|
||||
/* De-initialise existing logger */
|
||||
@ -5413,7 +5413,7 @@ void rarch_log_file_deinit(void)
|
||||
}
|
||||
|
||||
/* If logging is currently disabled... */
|
||||
fp = retro_main_log_file();
|
||||
fp = (FILE*)retro_main_log_file();
|
||||
if (!fp)
|
||||
{
|
||||
/* ...initialise logging to console */
|
||||
|
Loading…
x
Reference in New Issue
Block a user