mirror of
https://github.com/ioquake/launch.git
synced 2024-11-10 06:31:39 +00:00
Fix compiling/running on OS X
This commit is contained in:
parent
ab2ebf754d
commit
27c6e28500
1 changed files with 3 additions and 3 deletions
|
@ -28,10 +28,10 @@ void ioLaunch::on_btnLaunch_clicked()
|
|||
ioq3 = path + "\\ioquake3.x86.exe +set r_mode -1";
|
||||
}
|
||||
|
||||
#elif Q_OS_X11
|
||||
#elif defined Q_OS_X11
|
||||
ioq3 = "ioquake3 +set r_mode -1";
|
||||
#elif Q_OS_MAC
|
||||
ioq3 = "open -a ioquake3 +set r_mode -1";
|
||||
#elif defined Q_OS_MAC
|
||||
ioq3 = "open -a ioquake3 --args +set r_mode -1";
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue