1
0
Fork 0

Change: Log video driver info string instead of just name in crashlog

pull/9878/head
Niels Martin Hansen 2022-04-30 22:22:56 +02:00
parent 345dcd3c7b
commit 5b86bce7b2
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ char *CrashLog::LogConfiguration(char *buffer, const char *last) const
SoundDriver::GetInstance() == nullptr ? "none" : SoundDriver::GetInstance()->GetName(),
BaseSounds::GetUsedSet() == nullptr ? "none" : BaseSounds::GetUsedSet()->name.c_str(),
BaseSounds::GetUsedSet() == nullptr ? UINT32_MAX : BaseSounds::GetUsedSet()->version,
VideoDriver::GetInstance() == nullptr ? "none" : VideoDriver::GetInstance()->GetName()
VideoDriver::GetInstance() == nullptr ? "none" : VideoDriver::GetInstance()->GetInfoString()
);
buffer += seprintf(buffer, last,