mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
kill some dead code
This commit is contained in:
parent
b5e93ffd6c
commit
858bb55bcc
1 changed files with 0 additions and 26 deletions
|
@ -49,32 +49,6 @@ static const char rcsid[] =
|
|||
#include "compat.h"
|
||||
|
||||
|
||||
static int
|
||||
fgetLittleShort (VFile *f)
|
||||
{
|
||||
byte b1, b2;
|
||||
|
||||
b1 = Qgetc (f);
|
||||
b2 = Qgetc (f);
|
||||
|
||||
return (short) (b1 + b2 * 256);
|
||||
}
|
||||
|
||||
/*
|
||||
static int
|
||||
fgetLittleLong (VFile *f)
|
||||
{
|
||||
byte b1, b2, b3, b4;
|
||||
|
||||
b1 = Qgetc(f);
|
||||
b2 = Qgetc(f);
|
||||
b3 = Qgetc(f);
|
||||
b4 = Qgetc(f);
|
||||
|
||||
return b1 + (b2<<8) + (b3<<16) + (b4<<24);
|
||||
}
|
||||
*/
|
||||
|
||||
static inline byte *
|
||||
blit_rgb (byte *buf, int count, byte red, byte green, byte blue)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue