mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-22 20:06:43 +00:00
Small fixes
This commit is contained in:
parent
c4783fc2ca
commit
33a64abfb0
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ int menu_make(menu_entry *entries, int amount, char *toptext){
|
||||||
if (calculatedamount){
|
if (calculatedamount){
|
||||||
SWAPCOLOR(COLOR_DEFAULT);
|
SWAPCOLOR(COLOR_DEFAULT);
|
||||||
SWAPBGCOLOR(COLOR_WHITE);
|
SWAPBGCOLOR(COLOR_WHITE);
|
||||||
gfx_printf("%3d entries\n", amount);
|
gfx_printf("%3d entries\n", calculatedamount);
|
||||||
RESETCOLOR;
|
RESETCOLOR;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -155,7 +155,7 @@ void functionparser(){
|
||||||
u32 argsize = 0;
|
u32 argsize = 0;
|
||||||
|
|
||||||
//gfx_printf("getting func %c\n", currentchar);
|
//gfx_printf("getting func %c\n", currentchar);
|
||||||
char *funcbuff = readtilchar('(', 0);
|
char *funcbuff = readtilchar('(', ' ');
|
||||||
/*calloc(20, sizeof(char));
|
/*calloc(20, sizeof(char));
|
||||||
for (int i = 0; i < 19 && currentchar != '(' && currentchar != ' '; i++){
|
for (int i = 0; i < 19 && currentchar != '(' && currentchar != ' '; i++){
|
||||||
funcbuff[i] = currentchar;
|
funcbuff[i] = currentchar;
|
||||||
|
|
Loading…
Reference in a new issue