*Added missing "Child" language

*Fixed "Eject Error"
This commit is contained in:
dimok321 2009-06-15 16:31:56 +00:00
parent 0cb02386ee
commit 35e2fbe238
2 changed files with 6 additions and 2 deletions

View File

@ -386,6 +386,10 @@ void language_set(char *name, char *val)
strcopy(LANGUAGE.Cantdelete, val, sizeof(LANGUAGE.Cantdelete));
return;
}
if (strcmp(name, "Child") == 0) {
strcopy(LANGUAGE.Child, val, sizeof(LANGUAGE.Child));
return;
}
if (strcmp(name, "ClicktoDownloadCovers") == 0) {
strcopy(LANGUAGE.ClicktoDownloadCovers, val, sizeof(LANGUAGE.ClicktoDownloadCovers));
return;

View File

@ -35,9 +35,9 @@ void __Disc_SetLowMem(void)
*(vu32 *)0x80000060 = 0x38A00040;
*(vu32 *)0x800000E4 = 0x80431A80;
*(vu32 *)0x800000EC = 0x81800000; // Dev Debugger Monitor Address
*(vu32 *)0x800000F0 = 0x01800000; // Simulated Memory Size
*(vu32 *)0x800000F0 = 0x01800000; // Simulated Memory Size
*(vu32*)0x80003184 = 0x80000000; // Game ID Address
//*(vu32*)0x80003184 = 0x80000000; // Game ID Address
/* Copy disc ID */
memcpy((void *)0x80003180, (void *)0x80000000, 4);