mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Revert "[Android] Use equals to compare GL version string instead of contains. This should really be some sort of sscanf check so we can check if version > 3.0 but we'll worry about that when OpenGL ES 4.0 is released."
This reverts commit bc58e7f42fe0039aff4317bf58a1b62900a16833.
This commit is contained in:
parent
bc58e7f42f
commit
4deea2bcae
@ -101,7 +101,7 @@ public class PrefsFragment extends PreferenceFragment {
|
||||
|
||||
boolean mSupportsGLES3 = false;
|
||||
|
||||
if (m_GLVersion.equals("OpenGL ES 3.0")) // 3.0 support
|
||||
if (m_GLVersion.contains("OpenGL ES 3.0")) // 3.0 support
|
||||
mSupportsGLES3 = true;
|
||||
if (!mSupportsGLES3 && m_GLVendor.equals("Qualcomm"))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user