1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 13:33:25 +01:00

Add that inside functions no "" are required for <=>+-/*

This commit is contained in:
Such Meme, Many Skill 2020-04-12 20:31:32 +02:00
parent 15e1210179
commit 195d9797fe
2 changed files with 5 additions and 7 deletions

View file

@ -120,13 +120,11 @@ int menu_make(menu_entry *entries, int amount, char *toptext){
res = 0;
while (!res){
if (!res){
if (sd_inited && !!gpio_read(GPIO_PORT_Z, GPIO_PIN_1)){
gfx_errDisplay("menu", ERR_SD_EJECTED, 0);
sd_unmount();
return -1;
}
}
res = btn_read();

View file

@ -70,7 +70,7 @@ u32 splitargs(char* in) {
}
i--;
}
else if (in[i] >= '0' && in[i] <= '9')
else if ((in[i] >= '0' && in[i] <= '9') || (in[i] >= '<' && in[i] <= '>') || in[i] == '+' || in[i] == '-' || in[i] == '*' || in[i] == '/')
argv[curcount][current++] = in[i];
else if (in[i] == '"') {
i++;