Skip to content

Commit

Permalink
engine: common: fix -Wenum-float-comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Nov 3, 2024
1 parent 4d003bc commit 07ff14a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions engine/common/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,9 @@ XASH SPECIFIC - sort of hack that works only in Xash3D not in GoldSrc

#define HACKS_RELATED_HLMODS // some HL-mods works differently under Xash and can't be fixed without some hacks at least at current time

enum
{
DEV_NONE = 0,
DEV_NORMAL,
DEV_EXTENDED
};
#define DEV_NONE 0
#define DEV_NORMAL 1
#define DEV_EXTENDED 2

enum
{
Expand Down

0 comments on commit 07ff14a

Please sign in to comment.