first pass at overrides rewrite
overrides now live in default.cfg inside TAG.pak
This commit is contained in:
parent
865c30e6ff
commit
0d319c51b6
12 changed files with 359 additions and 180 deletions
|
|
@ -87,6 +87,11 @@ void getEmuName(const char* in_name, char* out_name) { // NOTE: both char arrays
|
|||
tmp[0] = '\0';
|
||||
}
|
||||
}
|
||||
void getEmuPath(char* emu_name, char* pak_path) {
|
||||
sprintf(pak_path, "%s/Emus/%s/%s.pak/launch.sh", SDCARD_PATH, PLATFORM, emu_name);
|
||||
if (exists(pak_path)) return;
|
||||
sprintf(pak_path, "%s/Emus/%s.pak/launch.sh", PAKS_PATH, emu_name);
|
||||
}
|
||||
|
||||
void normalizeNewline(char* line) {
|
||||
int len = strlen(line);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue