mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-12-17 23:01:51 +01:00
fix paste error
This commit is contained in:
parent
66d8370ff0
commit
bf36bc2fec
@ -211,24 +211,22 @@ void setFrameTimerMethod()
|
||||
* IOS Check
|
||||
***************************************************************************/
|
||||
#ifdef HW_RVL
|
||||
bool SaneIOS()
|
||||
bool SupportedIOS(u32 ios)
|
||||
{
|
||||
bool SupportedIOS(u32 ios)
|
||||
{
|
||||
if(ios == 58 || ios == 61)
|
||||
return true;
|
||||
if(ios == 58 || ios == 61)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool SaneIOS(u32 ios)
|
||||
{
|
||||
bool res = false;
|
||||
u32 num_titles=0;
|
||||
u32 tmd_size;
|
||||
|
||||
if(ios > 200)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool SaneIOS(u32 ios)
|
||||
{
|
||||
bool res = false;
|
||||
u32 num_titles=0;
|
||||
u32 tmd_size;
|
||||
|
||||
if(ios > 200)
|
||||
return false;
|
||||
|
||||
if (ES_GetNumTitles(&num_titles) < 0)
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user