Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9eef3d7b47 | ||
|
|
36e120a4ea | ||
|
|
a09b720790 | ||
|
|
6e2a5f0523 |
4
Makefile
4
Makefile
@@ -9,9 +9,9 @@ include $(DEVKITARM)/base_rules
|
||||
################################################################################
|
||||
|
||||
IPL_LOAD_ADDR := 0x40008000
|
||||
LPVERSION_MAJOR := 3
|
||||
LPVERSION_MAJOR := 4
|
||||
LPVERSION_MINOR := 0
|
||||
LPVERSION_BUGFX := 6
|
||||
LPVERSION_BUGFX := 0
|
||||
LPVERSION := \"$(LPVERSION_MAJOR).$(LPVERSION_MINOR).$(LPVERSION_BUGFX)\"
|
||||
|
||||
################################################################################
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
#REQUIRE KEYS
|
||||
is=["8000000000000120","80000000000000d1","8000000000000047"]
|
||||
p=println
|
||||
pr=print
|
||||
|
||||
@@ -90,7 +90,8 @@ void RunScript(char *path, FSEntry_t entry){
|
||||
char *thing = CombinePaths(path, entry.name);
|
||||
u32 size;
|
||||
char *script = sd_file_read(thing, &size);
|
||||
TConf.scriptCWD = thing;
|
||||
free(thing);
|
||||
TConf.scriptCWD = path;
|
||||
|
||||
if (!script)
|
||||
return;
|
||||
@@ -110,7 +111,6 @@ void RunScript(char *path, FSEntry_t entry){
|
||||
exitFunction(ret.main.operations.data, ret.main.operations.count);
|
||||
vecFree(ret.staticVarHolder);
|
||||
vecFree(ret.main.operations);
|
||||
free(thing);
|
||||
}
|
||||
|
||||
void RenameFile(char *path, FSEntry_t entry){
|
||||
|
||||
Reference in New Issue
Block a user