mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
DiscIO: Get rid of unsafe cast
This commit is contained in:
parent
5346e791bc
commit
492aa5c391
2 changed files with 6 additions and 6 deletions
|
@ -239,9 +239,9 @@ bool CVolumeWiiCrypted::IsWiiDisc() const
|
|||
|
||||
bool CVolumeWiiCrypted::IsDiscTwo() const
|
||||
{
|
||||
bool discTwo = false;
|
||||
m_pReader->Read(6, 1, (u8*)&discTwo);
|
||||
return discTwo;
|
||||
u8 disc_two_check;
|
||||
m_pReader->Read(6, 1, &disc_two_check);
|
||||
return (disc_two_check == 1);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue