mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 13:18:24 +00:00
FS: fix log with incorrect type
This commit is contained in:
parent
438751075f
commit
5150de8613
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ static ArchiveBackend* GetArchive(ArchiveHandle handle) {
|
|||
}
|
||||
|
||||
ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code, FileSys::Path& archive_path) {
|
||||
NGLOG_TRACE(Service_FS, "Opening archive with id code 0x{:08X}", id_code);
|
||||
NGLOG_TRACE(Service_FS, "Opening archive with id code 0x{:08X}", static_cast<u32>(id_code));
|
||||
|
||||
auto itr = id_code_map.find(id_code);
|
||||
if (itr == id_code_map.end()) {
|
||||
|
|
Loading…
Reference in a new issue