mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-31 04:25:40 +00:00
Minor code formatting update
This commit is contained in:
parent
882f7de518
commit
a0b4b006a7
|
@ -241,15 +241,13 @@ bool RendererOpenGL::createContext()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(USE_OPENGLES)
|
#if defined(USE_OPENGLES)
|
||||||
LOG(LogInfo) << "Application renderer: OpenGL ES " << mMajorGLVersion << "."
|
LOG(LogInfo) << "Application renderer: OpenGL ES " << mMajorGLVersion << "." << mMinorGLVersion;
|
||||||
<< mMinorGLVersion;
|
|
||||||
#else
|
#else
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
LOG(LogInfo) << "Application renderer: OpenGL " << mMajorGLVersion << "."
|
LOG(LogInfo) << "Application renderer: OpenGL " << mMajorGLVersion << "." << mMinorGLVersion
|
||||||
<< mMinorGLVersion << " with GLEW";
|
<< " with GLEW";
|
||||||
#else
|
#else
|
||||||
LOG(LogInfo) << "Application renderer: OpenGL " << mMajorGLVersion << "."
|
LOG(LogInfo) << "Application renderer: OpenGL " << mMajorGLVersion << "." << mMinorGLVersion;
|
||||||
<< mMinorGLVersion;
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue