summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godabil.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-09 22:44:43 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-09 23:21:41 +0100
commitf8d69cbe96b1bcb39b90554800a60d99c0a596f7 (patch)
tree331391fc0aac88b357e8a6fae173cb08c380fa98 /crawl-ref/source/godabil.cc
parent4faab1b80eaf21e1e12c41316d596fb5be45e79d (diff)
downloadcrawl-ref-f8d69cbe96b1bcb39b90554800a60d99c0a596f7.tar.gz
crawl-ref-f8d69cbe96b1bcb39b90554800a60d99c0a596f7.zip
Remove option draw_it from viewwindow.
The only use was just removed. Also move the draw check closer to where it's used.
Diffstat (limited to 'crawl-ref/source/godabil.cc')
-rw-r--r--crawl-ref/source/godabil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/godabil.cc b/crawl-ref/source/godabil.cc
index fa6c766e0e..56cc06c313 100644
--- a/crawl-ref/source/godabil.cc
+++ b/crawl-ref/source/godabil.cc
@@ -1331,7 +1331,7 @@ void cheibriados_time_step(int pow) // pow is the number of turns to skip
mpr("You step out of the flow of time.");
you.flash_colour = LIGHTBLUE;
- viewwindow(true, true);
+ viewwindow(true);
you.moveto(coord_def(0, 0));
you.duration[DUR_TIME_STEP] = pow;
@@ -1353,6 +1353,6 @@ void cheibriados_time_step(int pow) // pow is the number of turns to skip
you.flash_colour = 0;
you.moveto(old_pos);
you.duration[DUR_TIME_STEP] = 0;
- viewwindow(true, false);
+ viewwindow(false);
mpr("You return into the normal time flow.");
}