mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-26 05:42:07 +00:00
[Script] Add clearscreen
This commit is contained in:
parent
b5a9d94d35
commit
7e8e3ece66
1 changed files with 7 additions and 0 deletions
|
@ -194,6 +194,7 @@ int part_SetStringIndex(){
|
||||||
return -1;
|
return -1;
|
||||||
if (str_str_index(index, &out))
|
if (str_str_index(index, &out))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
str_str_add(argv[1], out);
|
str_str_add(argv[1], out);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -504,10 +505,16 @@ int part_fs_extractBisFile(){
|
||||||
return extract_bis_file(path, outfolder);
|
return extract_bis_file(path, outfolder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int part_clearscreen(){
|
||||||
|
gfx_clearscreen();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
str_fnc_struct functions[] = {
|
str_fnc_struct functions[] = {
|
||||||
{"printf", part_printf, 1},
|
{"printf", part_printf, 1},
|
||||||
{"printInt", part_print_int, 1},
|
{"printInt", part_print_int, 1},
|
||||||
{"setPrintPos", part_setPrintPos, 2},
|
{"setPrintPos", part_setPrintPos, 2},
|
||||||
|
{"clearscreen", part_clearscreen, 0},
|
||||||
{"if", part_if, 1},
|
{"if", part_if, 1},
|
||||||
{"math", part_Math, 3},
|
{"math", part_Math, 3},
|
||||||
{"check", part_Check, 3},
|
{"check", part_Check, 3},
|
||||||
|
|
Loading…
Reference in a new issue