mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +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;
|
||||
Inputs *input = hidRead();
|
||||
|
||||
while (input->buttons & (KEY_POW | KEY_B));
|
||||
while (input->buttons & (KEY_POW | KEY_B))
|
||||
hidRead();
|
||||
|
||||
gfx_clearscreen();
|
||||
print = malloc (1024);
|
||||
|
|
Loading…
Reference in a new issue