mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 06:53:53 +00:00
Fixed preprocessor #if to #ifdef
This commit is contained in:
parent
0ff068817e
commit
1487daac3d
1 changed files with 2 additions and 2 deletions
|
@ -164,11 +164,11 @@ void MainDialog::play()
|
||||||
// First do a write of all the configs, just to be sure
|
// First do a write of all the configs, just to be sure
|
||||||
writeConfig();
|
writeConfig();
|
||||||
|
|
||||||
#if Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
// Windows TODO: proper install path handling
|
// Windows TODO: proper install path handling
|
||||||
QString game = "./openmw.exe";
|
QString game = "./openmw.exe";
|
||||||
QFile file(game);
|
QFile file(game);
|
||||||
# else
|
#else
|
||||||
QString game = "./openmw";
|
QString game = "./openmw";
|
||||||
QFile file(game);
|
QFile file(game);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue