We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdc5a1 commit 52426e1Copy full SHA for 52426e1
xbmc/games/dialogs/osd/DialogGameVideoFilter.cpp
@@ -125,10 +125,12 @@ void CDialogGameVideoFilter::InitVideoFilters()
125
126
//! @todo Have the add-on give us the xml as a string (or parse it)
127
std::string xmlFilename;
128
-#ifdef TARGET_WINDOWS
129
- xmlFilename = "ShaderPresetsHLSLP.xml";
130
-#else
+#ifdef HAS_GLES
+ xmlFilename = "ShaderPresetsGLSLP_GLES.xml";
+#elif HAS_GL
131
xmlFilename = "ShaderPresetsGLSLP.xml";
132
+#else
133
+ xmlFilename = "ShaderPresetsHLSLP.xml";
134
#endif
135
136
const std::string homeAddonPath = CSpecialProtocol::TranslatePath(
0 commit comments