unintended change and merge issue
log: revert change that wasn't supposed to be committed emulator: fix incorrect merge
This commit is contained in:
parent
5b169b7f9d
commit
b5879e6e1d
|
@ -346,9 +346,9 @@ static void loadSpecialSettings()
|
|||
INFO_LOG(BOOT, "Enabling specific JVS setup for game %s", prod_id.c_str());
|
||||
settings.input.JammaSetup = JVS::_18Wheeler;
|
||||
}
|
||||
else if (prod_id == "F355 CHALLENGE JAPAN", naomi_game_id)
|
||||
else if (prod_id == "F355 CHALLENGE JAPAN")
|
||||
{
|
||||
INFO_LOG(BOOT, "Enabling specific JVS setup for game %s", naomi_game_id);
|
||||
INFO_LOG(BOOT, "Enabling specific JVS setup for game %s", prod_id.c_str());
|
||||
settings.input.JammaSetup = JVS::F355;
|
||||
}
|
||||
else if (prod_id == "INU NO OSANPO") // Dog Walking
|
||||
|
|
|
@ -185,8 +185,6 @@ static std::string GetTimeFormatted()
|
|||
void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char* file,
|
||||
int line, const char* format, va_list args)
|
||||
{
|
||||
if (settings.naomi.multiboard && !settings.naomi.slave)
|
||||
return;
|
||||
return LogWithFullPath(level, type, file + m_path_cutoff_point, line, format, args);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue