1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-22 11:56:42 +00:00

Rename some variables

This commit is contained in:
Such Meme, Many Skill 2020-04-01 16:48:36 +02:00
parent 5b32937f8f
commit d0799e3cd1
4 changed files with 4 additions and 4 deletions

View file

@ -166,7 +166,7 @@ int filemenu(menu_entry file){
break;
case FILE_SCRIPT:
//ParseScript(fsutil_getnextloc(currentpath, file.name));
tester(fsutil_getnextloc(currentpath, file.name));
runScript(fsutil_getnextloc(currentpath, file.name));
fsreader_readfolder(currentpath);
break;
case FILE_HEXVIEW:

View file

@ -399,7 +399,7 @@ int part_fs_ReadDir(){
return -1;
if (!f_readdir(&dir, &fno) && fno.fname[0]){
str_str_add("$FSOBJNAME", fno.fname);
str_str_add("$FILENAME", fno.fname);
str_int_add("@ISDIR", (fno.fattrib & AM_DIR) ? 1 : 0);
}
else {

View file

@ -253,7 +253,7 @@ void skipbrackets(){
extern u32 currentcolor;
extern char *currentpath;
void tester(char *path){
void runScript(char *path){
int res;
forceExit = false;
currentchar = 0;

View file

@ -1,5 +1,5 @@
#pragma once
void tester(char *path);
void runScript(char *path);
void skipbrackets();
void getfollowingchar(char end);