diff options
Diffstat (limited to 'opengl/libs')
-rw-r--r-- | opengl/libs/EGL/Loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/Loader.cpp b/opengl/libs/EGL/Loader.cpp index 7f3f114..445e681 100644 --- a/opengl/libs/EGL/Loader.cpp +++ b/opengl/libs/EGL/Loader.cpp @@ -149,7 +149,7 @@ void* Loader::open(EGLNativeDisplayType display, int impl, gl_hooks_t* hooks) hnd = new driver_t(dso); } else { // Always load EGL first - snprintf(path, PATH_MAX, "lib%s_%s.so", "EGL", tag); + snprintf(path, PATH_MAX, format, "EGL", tag); dso = load_driver(path, hooks, EGL); if (dso) { hnd = new driver_t(dso); |