diff options
author | Simon Howard | 2008-09-20 22:20:27 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-20 22:20:27 +0000 |
commit | 7c747c3d576521f2e1773fd285c0d2c7cb32aca8 (patch) | |
tree | 4380c4375748a7dddaae16f30d8142468521deba /src/heretic | |
parent | 2e0b647dbdf0ab21342c751c63eb4503f9d47dca (diff) | |
download | chocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.tar.gz chocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.tar.bz2 chocolate-doom-7c747c3d576521f2e1773fd285c0d2c7cb32aca8.zip |
Remove ifdef blocks from heretic/r_draw.c.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1258
Diffstat (limited to 'src/heretic')
-rw-r--r-- | src/heretic/r_draw.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/heretic/r_draw.c b/src/heretic/r_draw.c index a745c4f0..4315c600 100644 --- a/src/heretic/r_draw.c +++ b/src/heretic/r_draw.c @@ -61,9 +61,6 @@ byte *dc_source; // first pixel in a column (possibly virtual) int dccount; // just for profiling -#ifndef __WATCOMC__ -#ifndef __i386 -#ifndef __m68k void R_DrawColumn(void) { int count; @@ -92,9 +89,6 @@ void R_DrawColumn(void) } while (count--); } -#endif // __m68k -#endif // __i386 -#endif void R_DrawColumnLow(void) { @@ -320,9 +314,6 @@ byte *ds_source; // start of a 64*64 tile image int dscount; // just for profiling -#ifndef __WATCOMC__ -#ifndef __i386 -#ifndef __m68k void R_DrawSpan(void) { fixed_t xfrac, yfrac; @@ -350,9 +341,6 @@ void R_DrawSpan(void) } while (count--); } -#endif -#endif -#endif void R_DrawSpanLow(void) { |