From f8d69cbe96b1bcb39b90554800a60d99c0a596f7 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Mon, 9 Nov 2009 22:44:43 +0100 Subject: Remove option draw_it from viewwindow. The only use was just removed. Also move the draw check closer to where it's used. --- crawl-ref/source/godabil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/godabil.cc') 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."); } -- cgit v1.2.3-54-g00ecf