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:
parent
5b32937f8f
commit
d0799e3cd1
4 changed files with 4 additions and 4 deletions
|
@ -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:
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
void tester(char *path);
|
||||
void runScript(char *path);
|
||||
void skipbrackets();
|
||||
void getfollowingchar(char end);
|
Loading…
Reference in a new issue