mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 00:40:52 +00:00
Fix build errors when building without SDL
This commit is contained in:
parent
a752e6c8e4
commit
69089e0858
5 changed files with 4 additions and 3 deletions
|
@ -57,6 +57,8 @@ const char *VID_GetModeName(INT32 modenum)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
UINT32 I_GetRefreshRate(void) { return 35; }
|
||||
|
||||
void I_UpdateNoBlit(void){}
|
||||
|
||||
void I_FinishUpdate(void){}
|
||||
|
|
|
@ -8,6 +8,5 @@ hw_cache.c
|
|||
hw_md2load.c
|
||||
hw_md3load.c
|
||||
hw_model.c
|
||||
u_list.c
|
||||
hw_batching.c
|
||||
r_opengl/r_opengl.c
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "hw_md2load.h"
|
||||
#include "hw_md3load.h"
|
||||
#include "hw_md2.h"
|
||||
#include "u_list.h"
|
||||
#include "../u_list.h"
|
||||
#include <string.h>
|
||||
|
||||
static float PI = (3.1415926535897932384626433832795f);
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
|
||||
#include "u_list.h"
|
||||
#include "../z_zone.h"
|
||||
#include "z_zone.h"
|
||||
|
||||
// Utility for managing
|
||||
// structures in a linked
|
Loading…
Reference in a new issue