Pass a C string for logging argument

This commit is contained in:
sephiroth99 2015-12-30 11:08:47 -05:00
parent d982b54bda
commit 16ade60d37
1 changed files with 1 additions and 1 deletions
src/xenia

View File

@ -504,7 +504,7 @@ X_STATUS Emulator::CompleteLaunch(const std::wstring& path,
XELOGI("Launching module %s", next_module.c_str());
auto module = kernel_state_->LoadUserModule(next_module.c_str());
if (!module) {
XELOGE("Failed to load user module %s", path);
XELOGE("Failed to load user module %s", path.c_str());
return X_STATUS_NOT_FOUND;
}