summaryrefslogtreecommitdiffstats
path: root/trunk/source/beam.cc
diff options
context:
space:
mode:
authornlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2005-08-03 05:55:39 +0000
committernlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2005-08-03 05:55:39 +0000
commit7b2204d69f21d7075e4666ee032d7a129081bc4b (patch)
treed187565b15ddf71f99b5ee35a8eb15b85170b46f /trunk/source/beam.cc
parent64fb30df969e02635f651f3e6c6bb5f0dce1960c (diff)
downloadcrawl-ref-7b2204d69f21d7075e4666ee032d7a129081bc4b.tar.gz
crawl-ref-7b2204d69f21d7075e4666ee032d7a129081bc4b.zip
Further build cleanup.
The build system used 'LINUX' as a shorthand for Unix-like systems, which ends up being a horrible mess -- it's pretty counterintuitive to have the Solaris/Irix/BSD setups #defining LINUX to make things work. This replaces the use of 'LINUX' with a more-general and more-obvious 'UNIX', and moves the not-really-linux-at-all 'liblinux' to 'libunix'. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'trunk/source/beam.cc')
-rw-r--r--trunk/source/beam.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/source/beam.cc b/trunk/source/beam.cc
index 8745271286..7de8d15ff1 100644
--- a/trunk/source/beam.cc
+++ b/trunk/source/beam.cc
@@ -1411,7 +1411,7 @@ void fire_beam( struct bolt &pbolt, item_def *item )
gotoxy(drawx, drawy);
putch(pbolt.type);
-#ifdef LINUX
+#ifdef UNIX
// get curses to update the screen so we can see the beam
update_screen();
#endif
@@ -4046,7 +4046,7 @@ void explosion( struct bolt &beam, bool hole_in_the_middle )
}
// new-- delay after every 'ring' {gdl}
-#ifdef LINUX
+#ifdef UNIX
// If we don't refresh curses we won't
// guarantee that the explosion is visible
if (drawing)