corrected bug in name entering + working on OC option

This commit is contained in:
Sylvain PILLOT 2022-04-13 23:37:27 +02:00
parent 0824423545
commit 668efcb022
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@
#include "clock.h"
#define DEBUGXXX 0
#define OVERCLCK_ACTIVABLE 0
char version[5] = {'V','1','.','0','4'};
@ -409,13 +409,13 @@ int main(void)
kmalloc_gint_stats_t *extram_stats;
bool canWeAllocate3Mb = false;
#if (OVERCLCK_ACTIVABLE==1)
//Check if we can overclock i.e. if we have a CG50/Graph 90+E
if (gint[HWCALC] == HWCALC_FXCG50)
isOCPossible = true;
else
isOCPossible = false;
#endif
if((!strncmp(osv, "03.", 3) && osv[3] <= '6') && gint[HWCALC] == HWCALC_FXCG50) // CG-50
{