- got rid of MODE_TYPE since this will be handled in the backend in the future.

This commit is contained in:
Christoph Oelckers 2020-07-21 22:59:24 +02:00
parent 61f5247b71
commit 902fbf6f5d
6 changed files with 5 additions and 4 deletions

View file

@ -206,3 +206,4 @@ bool UIActive();
void updatePauseStatus();
void updatePauseStatus(bool state, bool multiplayer);
extern int paused;
extern int chatmodeon;

View file

@ -486,7 +486,6 @@ enum gamemode_t {
MODE_DEMO = 0x00000002,
MODE_GAME = 0x00000004,
MODE_EOL = 0x00000008,
MODE_TYPE = 0x00000010,
MODE_RESTART = 0x00000020,
};

View file

@ -39,6 +39,7 @@ Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
#include "version.h"
#include "names.h"
#include "mapinfo.h"
#include "gamestate.h"
#include "../../glbackend/glbackend.h"

View file

@ -295,7 +295,7 @@ void setdrugmode(player_struct *p, int oyrepeat)
{
if (playrunning())
{
if (p->DrugMode > 0 && !(p->gm & MODE_TYPE))
if (p->DrugMode > 0)
{
int var_8c;
if (p->drug_stat[0] == 0)

View file

@ -1518,7 +1518,7 @@ void checksectors_d(int snum)
//After this point the the player effects the map with space
if (p->gm & MODE_TYPE || sprite[p->i].extra <= 0) return;
if (chatmodeon || sprite[p->i].extra <= 0) return;
if (ud.cashman && PlayerInput(snum, SKB_OPEN))
fi.lotsofmoney(&sprite[p->i], 2);

View file

@ -2477,7 +2477,7 @@ void checksectors_r(int snum)
//After this point the the player effects the map with space
if (p->gm & MODE_TYPE || sprite[p->i].extra <= 0) return;
if (chatmodeon || sprite[p->i].extra <= 0) return;
if (ud.cashman && PlayerInput(snum, SKB_OPEN))
fi.lotsofmoney(&sprite[p->i], 2);