Step 5: Scare the init bugs away

Seriously though why the fuck was this the issue
This commit is contained in:
suchmememanyskill
2022-01-23 00:40:08 +01:00
parent 5c59d42a30
commit 09fc492610
4 changed files with 9 additions and 67 deletions

View File

@@ -71,7 +71,6 @@ void DeleteFile(char *path, FSEntry_t entry){
}
void RunScriptString(char *str, u32 size){
return;
TConf.scriptCWD = "sd:/";
gfx_clearscreen();
ParserRet_t ret = parseScript(str, size);
@@ -86,7 +85,6 @@ void RunScriptString(char *str, u32 size){
}
void RunScript(char *path, FSEntry_t entry){
return;
char *thing = CombinePaths(path, entry.name);
u32 size;
char *script = sd_file_read(thing, &size);