diff options
author | D G Turner | 2017-08-02 13:27:53 +0100 |
---|---|---|
committer | D G Turner | 2017-08-02 13:27:53 +0100 |
commit | 485a00b67577aedb314459487a4516a254bd53e0 (patch) | |
tree | 646a27a688fe473f9c1a1e11277f71aff5feb39a /graphics/macgui | |
parent | b3c1ed66e4ca02ed2c5f33363c8a04a7574e8489 (diff) | |
download | scummvm-rg350-485a00b67577aedb314459487a4516a254bd53e0.tar.gz scummvm-rg350-485a00b67577aedb314459487a4516a254bd53e0.tar.bz2 scummvm-rg350-485a00b67577aedb314459487a4516a254bd53e0.zip |
GRAPHICS: MACGUI: Suppress Unused Variable Compiler Warning.
Diffstat (limited to 'graphics/macgui')
-rw-r--r-- | graphics/macgui/mactextwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/macgui/mactextwindow.cpp b/graphics/macgui/mactextwindow.cpp index b02fe56e08..c8e3a937cc 100644 --- a/graphics/macgui/mactextwindow.cpp +++ b/graphics/macgui/mactextwindow.cpp @@ -132,7 +132,7 @@ bool MacTextWindow::draw(ManagedSurface *g, bool forceRedraw) { } bool MacTextWindow::processEvent(Common::Event &event) { - WindowClick click = isInBorder(event.mouse.x, event.mouse.y); + /*WindowClick click =*/ isInBorder(event.mouse.x, event.mouse.y); if (event.type == Common::EVENT_KEYDOWN) { _wm->setActive(getId()); |