don't set a log interface for linux libretro, seems like va args don't work here and can crash?
This commit is contained in:
parent
95ecbe9983
commit
78ed3ca1d3
Binary file not shown.
|
@ -218,8 +218,13 @@ public:
|
|||
case RETRO_ENVIRONMENT::GET_LOG_INTERFACE:
|
||||
{
|
||||
retro_log_callback* cb = static_cast<retro_log_callback*>(data);
|
||||
#ifdef _WIN32
|
||||
cb->log = &RetroLog;
|
||||
return true;
|
||||
#else
|
||||
cb->log = nullptr;
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
case RETRO_ENVIRONMENT::GET_PERF_INTERFACE:
|
||||
//callbacks for performance counters?
|
||||
|
|
Loading…
Reference in New Issue