mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-23 04:52:07 +00:00
- qcommon.h -> header/common.h
- qfiles.h -> header/files.h
This commit is contained in:
parent
858dee9747
commit
c2e06a2682
27 changed files with 30 additions and 30 deletions
|
@ -27,7 +27,7 @@
|
|||
#ifndef CL_REF_H
|
||||
#define CL_REF_H
|
||||
|
||||
#include "../../common/qcommon.h"
|
||||
#include "../../common/header/common.h"
|
||||
|
||||
#define MAX_DLIGHTS 32
|
||||
#define MAX_ENTITIES 128
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmd.h"
|
||||
|
||||
typedef struct cmd_function_s {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmd.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmd.h"
|
||||
|
||||
void Cmd_Exec_f (void) {
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
|
||||
#define MAX_NUM_ARGVS 50
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include <stdlib.h>
|
||||
#include <setjmp.h>
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
|
||||
#define CRC_INIT_VALUE 0xffff
|
||||
#define CRC_XOR_VALUE 0x0000
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
|
||||
cvar_t *cvar_vars;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
#include "../posix/glob/glob.h"
|
||||
#include "../unzip/unzip.h"
|
||||
|
||||
|
|
|
@ -26,11 +26,11 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#ifndef CO_QCOMMON_H
|
||||
#define CO_QCOMMON_H
|
||||
#ifndef CO_COMMON_H
|
||||
#define CO_COMMON_H
|
||||
|
||||
#include "../game/baseq2/q_shared.h"
|
||||
#include "header/crc.h"
|
||||
#include "../../game/baseq2/q_shared.h"
|
||||
#include "crc.h"
|
||||
|
||||
#define VERSION 2.99
|
||||
#define BASEDIRNAME "baseq2"
|
||||
|
@ -538,7 +538,7 @@ qboolean Netchan_CanReliable (netchan_t *chan);
|
|||
|
||||
/* CMODEL */
|
||||
|
||||
#include "qfiles.h"
|
||||
#include "files.h"
|
||||
|
||||
cmodel_t *CM_LoadMap (char *name, qboolean clientload, unsigned *checksum);
|
||||
cmodel_t *CM_InlineModel (char *name); /* *1, *2, etc */
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
|
||||
vec3_t bytedirs[NUMVERTEXNORMALS] =
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
|
||||
void MSG_BeginReading (sizebuf_t *msg)
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
#include "header/zone.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmodel.h"
|
||||
|
||||
extern int numareas;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmodel.h"
|
||||
|
||||
extern int numleafs;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmodel.h"
|
||||
|
||||
extern int box_headnode;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmodel.h"
|
||||
|
||||
extern dvis_t *map_vis;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "../qcommon.h"
|
||||
#include "../header/common.h"
|
||||
#include "../header/cmodel.h"
|
||||
|
||||
extern int numclusters;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
|
||||
/*
|
||||
* packet header
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
|
||||
#define STEPSIZE 18
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
|
||||
void SZ_Init (sizebuf_t *buf, byte *data, int length)
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include "qcommon.h"
|
||||
#include "header/common.h"
|
||||
#include "header/zone.h"
|
||||
|
||||
#define Z_MAGIC 0x1d1d
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "../common/qcommon.h"
|
||||
#include "../common/header/common.h"
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
|
@ -35,7 +35,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include "glob/glob.h"
|
||||
|
||||
#include "../common/qcommon.h"
|
||||
#include "../common/header/common.h"
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
#include <machine/param.h>
|
||||
|
|
|
@ -37,7 +37,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#include <errno.h>
|
||||
#include <dlfcn.h>
|
||||
|
||||
#include "../common/qcommon.h"
|
||||
#include "../common/header/common.h"
|
||||
|
||||
#include "posix.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
//define PARANOID // speed sapping error checking
|
||||
|
||||
#include "../common/qcommon.h"
|
||||
#include "../common/header/common.h"
|
||||
#include "../game/baseq2/game.h"
|
||||
|
||||
//=============================================================================
|
||||
|
|
Loading…
Reference in a new issue