fix paste error

This commit is contained in:
dborth 2010-12-26 23:16:53 +00:00
parent 66d8370ff0
commit bf36bc2fec

View File

@ -211,18 +211,16 @@ void setFrameTimerMethod()
* IOS Check * IOS Check
***************************************************************************/ ***************************************************************************/
#ifdef HW_RVL #ifdef HW_RVL
bool SaneIOS() bool SupportedIOS(u32 ios)
{ {
bool SupportedIOS(u32 ios)
{
if(ios == 58 || ios == 61) if(ios == 58 || ios == 61)
return true; return true;
return false; return false;
} }
bool SaneIOS(u32 ios) bool SaneIOS(u32 ios)
{ {
bool res = false; bool res = false;
u32 num_titles=0; u32 num_titles=0;
u32 tmd_size; u32 tmd_size;