mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Amend r4318: Lunatic doesn't need the safety check.
git-svn-id: https://svn.eduke32.com/eduke32@4328 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
faa8133cda
commit
23ecf8cce0
2 changed files with 1 additions and 2 deletions
|
@ -140,7 +140,6 @@ USE_OPENGL = 1
|
|||
NOASM = 0
|
||||
LINKED_GTK = 0
|
||||
BUILD32_ON_64 ?= 0
|
||||
# DO NOT SET THIS TO 1 AND COMMIT IT.
|
||||
USE_LIBPNG ?= 1
|
||||
USE_LIBVPX ?= 1
|
||||
NETCODE ?= 1
|
||||
|
|
|
@ -164,7 +164,7 @@ static inline int32_t G_HaveActor(int32_t actortile)
|
|||
static inline int32_t G_InitialActorStrength(int32_t actortile)
|
||||
{
|
||||
#ifdef LUNATIC
|
||||
return G_HaveActor(actortile) ? g_elActors[actortile].strength : 0;
|
||||
return g_elActors[actortile].strength;
|
||||
#else
|
||||
return G_HaveActor(actortile) ? g_tile[actortile].execPtr[0] : 0;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue