aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/window_graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/window_graphics.cpp')
-rw-r--r--engines/glk/window_graphics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/window_graphics.cpp b/engines/glk/window_graphics.cpp
index f81313e111..b18e2b27e6 100644
--- a/engines/glk/window_graphics.cpp
+++ b/engines/glk/window_graphics.cpp
@@ -143,7 +143,7 @@ void GraphicsWindow::eraseRect(bool whole, const Rect &box) {
hy0 = _bbox.top + y0;
hy1 = _bbox.top + y1;
- /* zero out hyperlinks for these coordinates */
+ // zero out hyperlinks for these coordinates
g_vm->_selection->putHyperlink(0, hx0, hy0, hx1, hy1);
_surface->fillRect(Rect(x0, y0, x1, y1), MKTAG(_bgnd[0], _bgnd[1], _bgnd[2], 0));
@@ -173,7 +173,7 @@ void GraphicsWindow::fillRect(glui32 color, const Rect &box) {
hy0 = _bbox.top + y0;
hy1 = _bbox.top + y1;
- /* zero out hyperlinks for these coordinates */
+ // zero out hyperlinks for these coordinates
g_vm->_selection->putHyperlink(0, hx0, hy0, hx1, hy1);
_surface->fillRect(Rect(x0, y0, x1, y1), MKTAG(col[0], col[1], col[2], 0));
@@ -225,7 +225,7 @@ void GraphicsWindow::drawPicture(Picture *src, int x0, int y0, int width, int h
hy0 = _bbox.top + y0;
hy1 = _bbox.top + y1;
- /* zero out or set hyperlink for these coordinates */
+ // zero out or set hyperlink for these coordinates
g_vm->_selection->putHyperlink(linkval, hx0, hy0, hx1, hy1);
w = sx1 - sx0;