From cc137f4b229d1763c3ad71fe56605b8611a1067c Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 15 Apr 2008 15:26:57 +0000 Subject: Another code cleanup. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4244 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/libw32c.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/libw32c.cc') diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc index cebee880f6..3e9f4b9675 100644 --- a/crawl-ref/source/libw32c.cc +++ b/crawl-ref/source/libw32c.cc @@ -85,9 +85,9 @@ static HANDLE outbuf = NULL; static int current_color = -1; static bool cursor_is_enabled = false; // dirty line (sx,ex,y) -static int chsx=0, chex=0, chy=-1; +static int chsx = 0, chex = 0, chy = -1; // cursor position (start at 0,0 --> 1,1) -static int cx=0, cy=0; +static int cx = 0, cy = 0; // and now, for the screen buffer static CHAR_INFO *screen = NULL; @@ -684,7 +684,7 @@ int wherey(void) void putch(char c) { // special case: check for '0' char: map to space - if (c==0) + if (c == 0) c = ' '; writeChar(c); -- cgit v1.2.3-54-g00ecf