mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 05:01:46 +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){
|
||||
SWAPCOLOR(COLOR_DEFAULT);
|
||||
SWAPBGCOLOR(COLOR_WHITE);
|
||||
gfx_printf("%3d entries\n", amount);
|
||||
gfx_printf("%3d entries\n", calculatedamount);
|
||||
RESETCOLOR;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue