mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-10 23:15:08 +01:00
commit
029538463a
@ -156,9 +156,14 @@ bool getCartInfo_NGP() {
|
||||
ngpSystemType = readByte_NGP(0x23);
|
||||
|
||||
// get app name
|
||||
for (uint32_t i = 0; i < 17; i++)
|
||||
for (uint32_t i = 0; i < 17; i++) {
|
||||
romName[i] = readByte_NGP(0x24 + i);
|
||||
|
||||
// replace '/' chars in game name to avoid path errors
|
||||
if (romName[i] == '/')
|
||||
romName[i] = '_';
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user