Compare commits

..

4 Commits
tsv3 ... 4.0.0

Author SHA1 Message Date
suchmememanyskill
9eef3d7b47 Bump version 2021-08-02 00:49:49 +02:00
suchmememanyskill
36e120a4ea more forgot to push 2021-08-02 00:41:15 +02:00
suchmememanyskill
a09b720790 forgot to push 2021-08-02 00:39:47 +02:00
suchmememanyskill
6e2a5f0523 Merge pull request #46 from suchmememanyskill/tsv3
Tsv3
2021-08-02 00:37:45 +02:00
3 changed files with 5 additions and 4 deletions

View File

@@ -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)\"
################################################################################

View File

@@ -1,3 +1,4 @@
#REQUIRE KEYS
is=["8000000000000120","80000000000000d1","8000000000000047"]
p=println
pr=print

View File

@@ -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){