mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Android: Fix WAD import crashing
progressMessage can have the invalid value of 0. That progressMessage was being used for the thread name was a typo anyway – it's supposed to use progressTitle.
This commit is contained in:
parent
fd4efd3787
commit
d42cec0d19
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ public final class MainPresenter
|
|||
builder.show();
|
||||
}
|
||||
});
|
||||
}, mContext.getResources().getString(progressMessage)).start();
|
||||
}, mContext.getResources().getString(progressTitle)).start();
|
||||
}
|
||||
|
||||
public static void skipRescanningLibrary()
|
||||
|
|
Loading…
Add table
Reference in a new issue