diff options
author | Johannes Schickel | 2011-06-19 19:03:10 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-06-19 19:03:10 +0200 |
commit | e0eb86826e5855bae1a8cc2ce81fa935b891d128 (patch) | |
tree | f1a35a9d3a36cebc171a5ad638a5cb4bf9c0d838 /backends | |
parent | 34f8b489d2af01992cf8e9d75f9218372ac04e39 (diff) | |
download | scummvm-rg350-e0eb86826e5855bae1a8cc2ce81fa935b891d128.tar.gz scummvm-rg350-e0eb86826e5855bae1a8cc2ce81fa935b891d128.tar.bz2 scummvm-rg350-e0eb86826e5855bae1a8cc2ce81fa935b891d128.zip |
OPENGL: Clarify OSD rect color in a comment.
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 9ec38dbbed..4c2c70daf2 100644 --- a/backends/graphics/opengl/opengl-graphics.cpp +++ b/backends/graphics/opengl/opengl-graphics.cpp @@ -1413,7 +1413,7 @@ void OpenGLGraphicsManager::updateOSD() { int dstX = (_osdSurface.w - width) / 2; int dstY = (_osdSurface.h - height) / 2; - // Draw a dark gray rect + // Draw a dark gray rect (R = 40, G = 40, B = 40) const uint16 color = 0x294B; _osdSurface.fillRect(Common::Rect(dstX, dstY, dstX + width, dstY + height), color); |