mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Fixed Issue 1979 - Crash when scanning WAD files with no title information...
Removed the panic alert about HCI_CMD_INQUIRY because it doesn't crash Dolphin or anything like that... It's called from MiiChannel, when you try to upload your Miis to a WiiMote. And it works just fine! (except for the warning "Can't find Wiimote by bd: xx:xx:xx:xx:xx:xx", which is really odd)... git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4800 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1a5817f6fd
commit
175162e661
5 changed files with 14 additions and 8 deletions
|
@ -152,14 +152,14 @@ std::string CVolumeWiiCrypted::GetName() const
|
|||
{
|
||||
if (m_pReader == NULL)
|
||||
{
|
||||
return(false);
|
||||
return("");
|
||||
}
|
||||
|
||||
char name[0xFF];
|
||||
|
||||
if (!Read(0x20, 0x60, (u8*)&name))
|
||||
{
|
||||
return(false);
|
||||
return("");
|
||||
}
|
||||
|
||||
return(name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue