diff noise reduction

This commit is contained in:
Ragnvald Maartmann-Moe IV 2001-05-15 19:22:39 +00:00
parent e88cdda35a
commit c278652d9a
2 changed files with 2 additions and 29 deletions

View file

@ -1,7 +1,7 @@
/*
nonintel.c
@description@
code for non-Intel processors only
Copyright (C) 1996-1997 Id Software, Inc.
@ -30,16 +30,9 @@
# include "config.h"
#endif
#include "r_local.h"
#include "d_local.h"
#ifndef USE_INTEL_ASM
/*
================
R_Surf8Patch
================
*/
void
R_Surf8Patch ()
{
@ -47,11 +40,6 @@ R_Surf8Patch ()
}
/*
================
R_Surf16Patch
================
*/
void
R_Surf16Patch ()
{
@ -59,16 +47,10 @@ R_Surf16Patch ()
}
/*
================
R_SurfacePatch
================
*/
void
R_SurfacePatch (void)
{
// we only patch code on Intel
}
#endif // USE_INTEL_ASM

View file

@ -30,11 +30,9 @@
# include "config.h"
#endif
#ifndef USE_INTEL_ASM
/*
R_Surf8Patch
*/
void
R_Surf8Patch (void)
{
@ -42,9 +40,6 @@ R_Surf8Patch (void)
}
/*
R_Surf16Patch
*/
void
R_Surf16Patch (void)
{
@ -52,14 +47,10 @@ R_Surf16Patch (void)
}
/*
R_SurfacePatch
*/
void
R_SurfacePatch (void)
{
// we only patch code on Intel
}
#endif // !USE_INTEL_ASM