mirror of
https://github.com/ioquake/launch.git
synced 2024-11-10 06:31:39 +00:00
Fix launching ioq3 on Linux
Q_OS_X11 does not exist (it was a Qt documentation error). Q_OS_UNIX is also defined on Mac, so move Unix block after Mac. There is a specific Q_OS_LINUX, but it's a general Unix style command. Also added error message for unhandled platforms.
This commit is contained in:
parent
3bb2a5c97c
commit
c1e80ab502
1 changed files with 4 additions and 3 deletions
|
@ -27,11 +27,12 @@ void ioLaunch::on_btnLaunch_clicked()
|
|||
path.replace(" ", "\" \"");
|
||||
ioq3 = path + "\\ioquake3.x86.exe +set r_mode -1";
|
||||
}
|
||||
|
||||
#elif defined Q_OS_X11
|
||||
ioq3 = "ioquake3 +set r_mode -1";
|
||||
#elif defined Q_OS_MAC
|
||||
ioq3 = "open -a ioquake3 --args +set r_mode -1";
|
||||
#elif defined Q_OS_UNIX
|
||||
ioq3 = "ioquake3 +set r_mode -1";
|
||||
#else
|
||||
#error "Unsupported platform"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue