- fixed compilation of linux build

source/common/platform/posix/sdl/i_system.cpp:311:79: error: non-const lvalue reference to type 'FString' cannot bind to a temporary of type 'FString *'
This commit is contained in:
alexey.lysiuk 2024-10-10 13:29:24 +03:00
parent db38028dda
commit 0374bbc4e3

View file

@ -308,7 +308,7 @@ int I_PickIWad (WadStuff *wads, int numwads, bool showwin, int defaultiwad, int&
#ifdef __APPLE__
return I_PickIWad_Cocoa (wads, numwads, showwin, defaultiwad);
#else
return LauncherWindow::ExecModal(wads, numwads, defaultiwad, &autoloadflags, &extraArgs);
return LauncherWindow::ExecModal(wads, numwads, defaultiwad, &autoloadflags, extraArgs);
#endif
}