mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Implement GetRevision() for wii disks.
This commit is contained in:
parent
68c5758151
commit
fa5e3ec292
3 changed files with 16 additions and 3 deletions
|
@ -92,11 +92,11 @@ int CVolumeGC::GetRevision() const
|
|||
if (!m_pReader)
|
||||
return 0;
|
||||
|
||||
u8 Revision;
|
||||
if (!Read(7, 1, &Revision))
|
||||
u8 revision;
|
||||
if (!Read(7, 1, &revision))
|
||||
return 0;
|
||||
|
||||
return Revision;
|
||||
return revision;
|
||||
}
|
||||
|
||||
std::vector<std::string> CVolumeGC::GetNames() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue