Fix broken errors, log ISO path
This commit is contained in:
@@ -30,8 +30,10 @@ DiscImageDevice::~DiscImageDevice() = default;
|
||||
bool DiscImageDevice::Initialize() {
|
||||
mmap_ = MappedMemory::Open(host_path_, MappedMemory::Mode::kRead);
|
||||
if (!mmap_) {
|
||||
XELOGE("Disc image could not be mapped");
|
||||
XELOGE("Disc image {} could not be mapped", xe::path_to_utf8(host_path_));
|
||||
return false;
|
||||
} else {
|
||||
XELOGFS("DiscImageDevice::Initialize({})", xe::path_to_utf8(host_path_));
|
||||
}
|
||||
|
||||
ParseState state = {0};
|
||||
|
||||
Reference in New Issue
Block a user