diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-27 23:07:52 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:36 +0200 |
| commit | fd8ed25d23c8187a2e6f9d7e81fdbd8f98b22f1a (patch) | |
| tree | 99f700a3d83054d53545e820d95d1b1b107f26ae /src | |
| parent | 8b4a564235635f7a666aedc0fc79913865ad56b5 (diff) | |
Another file now compiles.
Diffstat (limited to 'src')
| -rw-r--r-- | src/avp/avpview.c | 6 | ||||
| -rw-r--r-- | src/win95/platform.h | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/avp/avpview.c b/src/avp/avpview.c index e522bca..2f0dbb5 100644 --- a/src/avp/avpview.c +++ b/src/avp/avpview.c @@ -10,13 +10,12 @@ #include "kshape.h" #include "kzsort.h" -#include "frustrum.h" +#include "frustum.h" #include "krender.h" #include "vision.h" #include "lighting.h" #include "weapons.h" #include "sfx.h" -#include "smacker.h" /* character extents data so you know where the player's eyes are */ #include "extents.h" #include "avp_userprofile.h" @@ -43,7 +42,8 @@ extern int ScanDrawMode; extern int DrawMode; extern int ZBufferMode; -extern DPID MultiplayerObservedPlayer; +//extern DPID MultiplayerObservedPlayer; +extern int MultiplayerObservedPlayer; #if SupportMorphing MORPHDISPLAY MorphDisplay; diff --git a/src/win95/platform.h b/src/win95/platform.h index 7547802..9059f19 100644 --- a/src/win95/platform.h +++ b/src/win95/platform.h @@ -33,8 +33,13 @@ extern "C" { #define max(a, b) (((a) > (b)) ? (a) : (b)) #endif +#define stricmp strcasecmp + /* Types */ +typedef int GUID; +typedef int DPID; + typedef int BOOL; typedef struct RECT |
