diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-08 03:54:05 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-08 03:54:05 +0000 |
commit | d16a2a631100a13dc2965456bfbfa000bf30d45f (patch) | |
tree | ec61885e306ac509a176081ed99a08f82f139f40 | |
parent | a36930e6a9d83b7ace8785dc60dbf5b676fc86d4 (diff) |
minor tweak so zexy compiles on non-i386 platforms
svn path=/trunk/externals/zexy/; revision=833
-rw-r--r-- | src/z_lp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ extended to write to any port (if we do have permissions) */ -#ifndef MACOSX +#ifdef __i386__ #define BASE0 0x3bc #define BASE1 0x378 @@ -133,4 +133,4 @@ void z_lp_setup(void) class_sethelpsymbol(lp_class, gensym("zexy/lp")); } -#endif /* MACOSX */ +#endif /* __i386__ */ |