QTfrontend/model/GameStyleModel.cpp
branchwebgl
changeset 8833 c13ebed437cb
parent 8466 29b891dbf2a0
child 9080 9b42757d7e71
--- a/QTfrontend/model/GameStyleModel.cpp	Wed Feb 20 02:21:58 2013 +0100
+++ b/QTfrontend/model/GameStyleModel.cpp	Tue Apr 02 21:00:57 2013 +0200
@@ -25,12 +25,11 @@
 
 #include "physfs.h"
 #include "GameStyleModel.h"
+#include "hwconsts.h"
 
 
 void GameStyleModel::loadGameStyles()
 {
-    const QString appDir = QString(PHYSFS_getBaseDir());
-
     beginResetModel();
 
     // empty list, so that we can (re)fill it
@@ -81,7 +80,7 @@
 
         // detect if script is dlc
         QString scriptPath = PHYSFS_getRealDir(QString("Scripts/Multiplayer/%1.lua").arg(script).toLocal8Bit().data());
-        bool isDLC = !scriptPath.startsWith(appDir);
+        bool isDLC = !scriptPath.startsWith(datadir->absolutePath());
 
         QStandardItem * item = new QStandardItem((isDLC ? "*" : "") + name);