blob: 1fe1fd9529f3f112127191827782e887df41cbfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Don't crash with empty Paks/ directory.
--- sdl/menu.c.orig 2018-07-06 15:13:16 UTC
+++ sdl/menu.c
@@ -753,7 +753,7 @@ void Menu()
}
freeAllLogs();
termMenu();
- if(ctrl == 2)
+ if(dListTotal == 0 || ctrl == 2)
{
if (filelist)
{
|