From 5aebc3ade153adce3dbc3dd88f9b18dc5c83121f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 3 Jun 2014 03:55:59 +1000 Subject: [PATCH] Changing BrokenGL2 build file flag to BrokenGL --- sleepyhead/sleepyhead.pro | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index f34a6109..b0ba508b 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -12,12 +12,10 @@ greaterThan(QT_MAJOR_VERSION,4) { QT += webkit } -#Windows XP with older intel cards needs the following variable defined -#It slows other platforms down way too much -#DEFINES += BROKEN_OPENGL_BUILD - - -exists($$PWD/../BrokenGL2) { +#SleepyHead requires OpenGL 2.0 support to run smoothly +#On platforms where it's not available, it can still be built to work +#provided the BrokenGL file resides in the SleepyHead source root directory +exists($$PWD/../BrokenGL) { DEFINES += BROKEN_OPENGL_BUILD message("Building with QWidget gGraphView") } else {