mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
-fix for categories menu since updating to ppc r30
This commit is contained in:
parent
33a6fdb893
commit
de868d15c8
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
@ -193,9 +193,15 @@ void CMenu::_CategorySettings(bool fromGameSet)
|
||||
}
|
||||
else
|
||||
{
|
||||
const char *requiredCats = m_cat.getString("GENERAL", "required_categories").c_str();
|
||||
const char *selectedCats = m_cat.getString("GENERAL", "selected_categories").c_str();
|
||||
const char *hiddenCats = m_cat.getString("GENERAL", "hidden_categories").c_str();
|
||||
//const char *requiredCats = m_cat.getString("GENERAL", "required_categories").c_str();
|
||||
//const char *selectedCats = m_cat.getString("GENERAL", "selected_categories").c_str();
|
||||
//const char *hiddenCats = m_cat.getString("GENERAL", "hidden_categories").c_str();
|
||||
char requiredCats[10];
|
||||
char selectedCats[10];
|
||||
char hiddenCats[10];
|
||||
strcpy(requiredCats, m_cat.getString("GENERAL", "required_categories").c_str());
|
||||
strcpy(selectedCats, m_cat.getString("GENERAL", "selected_categories").c_str());
|
||||
strcpy(hiddenCats, m_cat.getString("GENERAL", "hidden_categories").c_str());
|
||||
u8 numReqCats = strlen(requiredCats);
|
||||
u8 numSelCats = strlen(selectedCats);
|
||||
u8 numHidCats = strlen(hiddenCats);
|
||||
|
Loading…
Reference in New Issue
Block a user