summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
commitc41419c4f47bbf0737d3fedf58128c835d2c4e3b (patch)
tree764ae18c107df39fd90af718922036bd245561ca /crawl-ref/source/libw32c.cc
parentb80adef8882143cad34f3c8bcc9a8ccbd4440223 (diff)
downloadcrawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.tar.gz
crawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.zip
Drop parentheses around scalar values in "return".
Diffstat (limited to 'crawl-ref/source/libw32c.cc')
-rw-r--r--crawl-ref/source/libw32c.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc
index 69829dcc71..6d12315942 100644
--- a/crawl-ref/source/libw32c.cc
+++ b/crawl-ref/source/libw32c.cc
@@ -187,7 +187,7 @@ void enable_smart_cursor(bool cursor)
bool is_smart_cursor_enabled()
{
- return (w32_smart_cursor);
+ return w32_smart_cursor;
}
void bFlush(void)
@@ -446,7 +446,7 @@ void set_cursor_enabled(bool enabled)
bool is_cursor_enabled()
{
- return (cursor_is_enabled);
+ return cursor_is_enabled;
}
static void _setcursortype_internal(bool curstype)
@@ -726,11 +726,11 @@ static int w32_proc_mouse_event(const MOUSE_EVENT_RECORD &mer)
crawl_view.mousep = pos;
if (!crawl_state.mouse_enabled)
- return (0);
+ return 0;
c_mouse_event cme(pos);
if (mer.dwEventFlags & MOUSE_MOVED)
- return (CK_MOUSE_MOVE);
+ return CK_MOUSE_MOVE;
if (mer.dwButtonState & FROM_LEFT_1ST_BUTTON_PRESSED)
cme.bstate |= c_mouse_event::BUTTON1;
@@ -748,10 +748,10 @@ static int w32_proc_mouse_event(const MOUSE_EVENT_RECORD &mer)
if (cme)
{
new_mouse_event(cme);
- return (CK_MOUSE_CLICK);
+ return CK_MOUSE_CLICK;
}
- return (0);
+ return 0;
}
int getch_ck(void)