mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-24 18:16:56 +01:00
debugging for SelectIos
This commit is contained in:
parent
5021cc26a8
commit
4a3784d71a
@ -7,6 +7,7 @@
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include "main.h"
|
||||
#include "xprintf.h"
|
||||
|
||||
std::vector<int> ioslist;
|
||||
int selectedIos = IOS_GetVersion();
|
||||
@ -240,6 +241,7 @@ int nextIos()
|
||||
selectedIos= ioslist[ios_pos];
|
||||
}
|
||||
|
||||
xprintf("Previous IOS: %d\n", selectedIos);
|
||||
return selectedIos;
|
||||
}
|
||||
int previousIos()
|
||||
@ -253,6 +255,7 @@ int previousIos()
|
||||
selectedIos= ioslist[ios_pos];
|
||||
}
|
||||
|
||||
xprintf("Next IOS: %d\n", selectedIos);
|
||||
return selectedIos;
|
||||
}
|
||||
|
||||
@ -347,10 +350,15 @@ bool listIOS()
|
||||
isStub = false;
|
||||
}
|
||||
|
||||
xprintf("testing IOS: %d\n", titleID);
|
||||
|
||||
if(!isStub)
|
||||
{
|
||||
if(titleID == 254)
|
||||
{
|
||||
bootmii = 1;
|
||||
}
|
||||
xprintf("added IOS %d to list.\n", titleID);
|
||||
ioslist.push_back(titleID);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user