mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 02:52:30 +02:00
Remove VolumeCreator logs
These logs are very rarely useful and cause the issue https://bugs.dolphin-emu.org/issues/9767
This commit is contained in:
parent
b0e2642883
commit
d6731d34ef
@ -64,14 +64,7 @@ std::unique_ptr<IVolume> CreateVolumeFromFilename(const std::string& filename, u
|
|||||||
return CreateVolumeFromCryptedWiiImage(std::move(reader), partition_group, 0, volume_number);
|
return CreateVolumeFromCryptedWiiImage(std::move(reader), partition_group, 0, volume_number);
|
||||||
|
|
||||||
case DISC_TYPE_UNK:
|
case DISC_TYPE_UNK:
|
||||||
default:
|
return nullptr;
|
||||||
std::string name, extension;
|
|
||||||
SplitPath(filename, nullptr, &name, &extension);
|
|
||||||
name += extension;
|
|
||||||
NOTICE_LOG(DISCIO,
|
|
||||||
"%s does not have the Magic word for a gcm, wiidisc or wad file\n"
|
|
||||||
"Set Log Verbosity to Warning and attempt to load the game again to view the values",
|
|
||||||
name.c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
@ -206,12 +199,7 @@ EDiscType GetDiscType(IBlobReader& _rReader)
|
|||||||
if (GCMagic == 0xC2339F3D)
|
if (GCMagic == 0xC2339F3D)
|
||||||
return DISC_TYPE_GC;
|
return DISC_TYPE_GC;
|
||||||
|
|
||||||
WARN_LOG(DISCIO, "No known magic words found");
|
// No known magic words found
|
||||||
WARN_LOG(DISCIO, "Wii offset: 0x18 value: 0x%08x", WiiMagic);
|
|
||||||
WARN_LOG(DISCIO, "WiiC offset: 0x60 value: 0x%08x", WiiContainerMagic);
|
|
||||||
WARN_LOG(DISCIO, "WAD offset: 0x02 value: 0x%08x", WADMagic);
|
|
||||||
WARN_LOG(DISCIO, "GC offset: 0x1C value: 0x%08x", GCMagic);
|
|
||||||
|
|
||||||
return DISC_TYPE_UNK;
|
return DISC_TYPE_UNK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user