summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-03-31 02:35:05 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-03-31 22:17:43 +0200
commit586997c4f116517b34a7d752fcc7780d83af81b8 (patch)
treeb97b0aa904addf37fb5745145e31198159556408 /crawl-ref/source/libw32c.cc
parent9c0a425e56f3c7b337c0a0276d26de2d8f38cfbf (diff)
downloadcrawl-ref-586997c4f116517b34a7d752fcc7780d83af81b8.tar.gz
crawl-ref-586997c4f116517b34a7d752fcc7780d83af81b8.zip
Get rid of remaining uses of putch().
One was actually wrong, too -- mangling redefined explosions.
Diffstat (limited to 'crawl-ref/source/libw32c.cc')
-rw-r--r--crawl-ref/source/libw32c.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc
index f47d52e414..ff593f3d96 100644
--- a/crawl-ref/source/libw32c.cc
+++ b/crawl-ref/source/libw32c.cc
@@ -602,15 +602,6 @@ int wherey(void)
return cy+1;
}
-void putch(char c)
-{
- // special case: check for '0' char: map to space
- if (c == 0)
- c = ' ';
-
- writeChar(c);
-}
-
void putwch(wchar_t c)
{
if (c == 0)