mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
Common: Migrate logging to fmt
Continues the migration of our code over to the fmt logger.
This commit is contained in:
parent
4f5c8bb42a
commit
4e8df93f41
18 changed files with 154 additions and 152 deletions
|
@ -2439,7 +2439,7 @@ static void* GetFuncAddress(GLContext* context, const std::string& name, void**
|
|||
*func = dlsym(RTLD_NEXT, name.c_str());
|
||||
#endif
|
||||
if (*func == nullptr)
|
||||
ERROR_LOG(VIDEO, "Couldn't load function %s", name.c_str());
|
||||
ERROR_LOG_FMT(VIDEO, "Couldn't load function {}", name);
|
||||
}
|
||||
return *func;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue