mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
VolumeDirectory: Use correct endianness when writing apploader -1
This commit is contained in:
parent
eb50533201
commit
240cb0ca11
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ bool VolumeDirectory::SetApploader(const std::string& apploader)
|
||||||
{
|
{
|
||||||
m_apploader.resize(0x20);
|
m_apploader.resize(0x20);
|
||||||
// Make sure BS2 HLE doesn't try to run the apploader
|
// Make sure BS2 HLE doesn't try to run the apploader
|
||||||
*(u32*)&m_apploader[0x10] = (u32)-1;
|
Write32(static_cast<u32>(-1), 0x10, &m_apploader);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue