Skip to content

Commit c0c236d

Browse files
committed
* Small fix for overlay menu (Freeze on hacks menu)
1 parent 2b33fee commit c0c236d

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

es/SMenu.c

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,14 @@ void __configloadcfg( void )
218218
if( PL == NULL )
219219
{
220220
PL = (HacksConfig *)malloca( sizeof(HacksConfig), 32);
221-
PL->EULang = 1;
222-
PL->USLang = 1;
223-
PL->Config = 0;
224-
PL->Autoboot = 0;
225-
PL->ChNbr = 0;
226-
PL->DolNr = 0;
227-
PL->TitleID = 0x0000000100000002LL;
221+
PL->EULang = 1;
222+
PL->USLang = 1;
223+
PL->Shop1 = 0;
224+
PL->Config = 0;
225+
PL->Autoboot = 0;
226+
PL->ChNbr = 0;
227+
PL->DolNr = 0;
228+
PL->TitleID = 0x0000000100000002LL;
228229
}
229230
NANDWriteFileSafe( "/sneekcache/hackscfg.bin", PL , sizeof(HacksConfig) );
230231
}
@@ -773,16 +774,16 @@ void SMenuDraw( void )
773774
if( FSUSB )
774775
{
775776
if(LoadDI == true)
776-
PrintFormat( FB[i], MENU_POS_X, 20, "UNEEK2O+cDI r76 %s Games:%d Region:%s", __DATE__, *GameCount, RegionStr[DICfg->Region] );
777+
PrintFormat( FB[i], MENU_POS_X, 20, "UNEEK2O+cDI r80 %s Games:%d Region:%s", __DATE__, *GameCount, RegionStr[DICfg->Region] );
777778
else
778-
PrintFormat( FB[i], MENU_POS_X, 20, "UNEEK2O r76 %s",__DATE__);
779+
PrintFormat( FB[i], MENU_POS_X, 20, "UNEEK2O r80 %s",__DATE__);
779780
}
780781
else
781782
{
782783
if(LoadDI == true)
783-
PrintFormat( FB[i], MENU_POS_X, 20, "SNEEK2O+cDI r76 %s Games:%d Region:%s", __DATE__, *GameCount, RegionStr[DICfg->Region] );
784+
PrintFormat( FB[i], MENU_POS_X, 20, "SNEEK2O+cDI r80 %s Games:%d Region:%s", __DATE__, *GameCount, RegionStr[DICfg->Region] );
784785
else
785-
PrintFormat( FB[i], MENU_POS_X, 20, "SNEEK2O r76 %s",__DATE__);
786+
PrintFormat( FB[i], MENU_POS_X, 20, "SNEEK2O r80 %s",__DATE__);
786787
}
787788
}
788789

0 commit comments

Comments
 (0)