1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-08 05:01:46 +00:00

Small fixes

This commit is contained in:
Such Meme, Many Skill 2020-03-31 00:16:46 +02:00
parent c4783fc2ca
commit 33a64abfb0
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ int menu_make(menu_entry *entries, int amount, char *toptext){
if (calculatedamount){
SWAPCOLOR(COLOR_DEFAULT);
SWAPBGCOLOR(COLOR_WHITE);
gfx_printf("%3d entries\n", amount);
gfx_printf("%3d entries\n", calculatedamount);
RESETCOLOR;
}
else

View file

@ -155,7 +155,7 @@ void functionparser(){
u32 argsize = 0;
//gfx_printf("getting func %c\n", currentchar);
char *funcbuff = readtilchar('(', 0);
char *funcbuff = readtilchar('(', ' ');
/*calloc(20, sizeof(char));
for (int i = 0; i < 19 && currentchar != '(' && currentchar != ' '; i++){
funcbuff[i] = currentchar;