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:
CasualPokePlayer 2022-05-27 14:17:08 -07:00
parent 95ecbe9983
commit 78ed3ca1d3
2 changed files with 5 additions and 0 deletions

BIN
Assets/dll/libLibretroBridge.so Normal file → Executable file

Binary file not shown.

View File

@ -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?