mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
Fix deadlock in hexview
thanks huhen
This commit is contained in:
parent
7add4b6b13
commit
baac8dc2fb
1 changed files with 2 additions and 1 deletions
|
@ -42,7 +42,8 @@ void viewbytes(char *path){
|
||||||
int res;
|
int res;
|
||||||
Inputs *input = hidRead();
|
Inputs *input = hidRead();
|
||||||
|
|
||||||
while (input->buttons & (KEY_POW | KEY_B));
|
while (input->buttons & (KEY_POW | KEY_B))
|
||||||
|
hidRead();
|
||||||
|
|
||||||
gfx_clearscreen();
|
gfx_clearscreen();
|
||||||
print = malloc (1024);
|
print = malloc (1024);
|
||||||
|
|
Loading…
Reference in a new issue