Skip to content

Commit

Permalink
- fixed compilation of linux build
Browse files Browse the repository at this point in the history
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 *'
  • Loading branch information
alexey-lysiuk committed Oct 10, 2024
1 parent db38028 commit 0374bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/platform/posix/sdl/i_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 0374bbc

Please sign in to comment.