diff options
author | Johannes Schickel | 2015-12-19 18:18:35 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-03-16 20:29:25 +0100 |
commit | e9310186735f34c6b085a58629b140a031d1da4e (patch) | |
tree | 5b3d33f13bb1cbd2d73cabdca5830a886f46bd3e /backends | |
parent | c5ce812711c68ea546926f243b9f6f0ece8ca736 (diff) | |
download | scummvm-rg350-e9310186735f34c6b085a58629b140a031d1da4e.tar.gz scummvm-rg350-e9310186735f34c6b085a58629b140a031d1da4e.tar.bz2 scummvm-rg350-e9310186735f34c6b085a58629b140a031d1da4e.zip |
OPENGL: Typo.
Diffstat (limited to 'backends')
-rw-r--r-- | backends/graphics/opengl/opengl-graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.cpp b/backends/graphics/opengl/opengl-graphics.cpp index 108366744d..15e6f40271 100644 --- a/backends/graphics/opengl/opengl-graphics.cpp +++ b/backends/graphics/opengl/opengl-graphics.cpp @@ -754,7 +754,7 @@ void OpenGLGraphicsManager::setActualScreenSize(uint width, uint height) { _outputScreenWidth = width; _outputScreenHeight = height; - // Setup coordinates system. + // Setup coordinate system. GL_CALL(glViewport(0, 0, _outputScreenWidth, _outputScreenHeight)); // Orthogonal projection matrix in column major order. |