diff options
| author | 2009-11-05 14:10:10 -0800 | |
|---|---|---|
| committer | 2009-11-05 14:10:10 -0800 | |
| commit | 7c70af0458e4ea5a5e39725d24e31b624f78a1c9 (patch) | |
| tree | bf4ecf9814a8dc6699cdc75c52cf8c0e47baac31 /opengl/libagl | |
| parent | 8d9ef036115981735b5d32181e7d8cbea174dc2a (diff) | |
| parent | 4a783af6ecab54050d1675ccd041045a69d4fe8a (diff) | |
Merge change I4a783af6
* changes:
Fix obvious typo bug in egl.cpp
Diffstat (limited to 'opengl/libagl')
| -rw-r--r-- | opengl/libagl/egl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libagl/egl.cpp b/opengl/libagl/egl.cpp index 44615679af6d..b1deb2f98e3a 100644 --- a/opengl/libagl/egl.cpp +++ b/opengl/libagl/egl.cpp @@ -692,7 +692,7 @@ static int isAttributeMatching(int i, EGLint attr, EGLint val) gConfigManagement, 0, NELEM(gConfigManagement)-1, attr); - if (index >= 0) { + if (cfgMgtIndex >= 0) { bool match = gConfigManagement[cfgMgtIndex].match( val, configFound[index].value); if (match) { |