From 1487daac3d134f664aef49599d57c26c144edcd2 Mon Sep 17 00:00:00 2001 From: Pieter van der Kloet Date: Wed, 4 May 2011 03:22:23 +0200 Subject: [PATCH] Fixed preprocessor #if to #ifdef --- apps/launcher/maindialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/launcher/maindialog.cpp b/apps/launcher/maindialog.cpp index c2cf8bc1e4..a2ab3aeb6f 100644 --- a/apps/launcher/maindialog.cpp +++ b/apps/launcher/maindialog.cpp @@ -164,11 +164,11 @@ void MainDialog::play() // First do a write of all the configs, just to be sure writeConfig(); -#if Q_WS_WIN +#ifdef Q_WS_WIN // Windows TODO: proper install path handling QString game = "./openmw.exe"; QFile file(game); -# else +#else QString game = "./openmw"; QFile file(game); #endif