mirror of
https://github.com/yquake2/slightmechanicaldestruction.git
synced 2024-11-28 15:01:53 +00:00
Merge pull request #5 from 0lvin/master
Button to open the door on second level(#4)
This commit is contained in:
commit
bf5251a3ac
2 changed files with 31 additions and 22 deletions
33
Makefile
33
Makefile
|
@ -33,19 +33,28 @@ endif
|
|||
|
||||
# Detect the architecture
|
||||
ifeq ($(OSTYPE), Windows)
|
||||
# At this time only i386 is supported on Windows
|
||||
ARCH := i386
|
||||
# seems like mingw doesn't set CC by default
|
||||
CC := gcc
|
||||
else
|
||||
# Some platforms call it "amd64" and some "x86_64"
|
||||
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
||||
ifdef MINGW_CHOST
|
||||
ifeq ($(MINGW_CHOST), x86_64-w64-mingw32)
|
||||
ARCH ?= x86_64
|
||||
else # i686-w64-mingw32
|
||||
ARCH ?= i386
|
||||
endif
|
||||
else # windows, but MINGW_CHOST not defined
|
||||
ifdef PROCESSOR_ARCHITEW6432
|
||||
# 64 bit Windows
|
||||
ARCH ?= $(PROCESSOR_ARCHITEW6432)
|
||||
else
|
||||
# 32 bit Windows
|
||||
ARCH ?= $(PROCESSOR_ARCHITECTURE)
|
||||
endif
|
||||
endif # windows but MINGW_CHOST not defined
|
||||
else
|
||||
ifneq ($(OSTYPE), Darwin)
|
||||
# Normalize some abiguous ARCH strings
|
||||
ARCH ?= $(shell uname -m | sed -e 's/i.86/i386/' -e 's/amd64/x86_64/' -e 's/^arm.*/arm/')
|
||||
else
|
||||
ARCH ?= $(shell uname -m)
|
||||
endif
|
||||
|
||||
# Refuse all other platforms as a firewall against PEBKAC
|
||||
# (You'll need some #ifdef for your unsupported platform!)
|
||||
ifeq ($(findstring $(ARCH), i386 x86_64 sparc64 ia64),)
|
||||
$(error arch $(ARCH) is currently not supported)
|
||||
endif
|
||||
|
||||
# ----------
|
||||
|
|
|
@ -2889,15 +2889,15 @@ void ClientThink (edict_t *ent, usercmd_t *ucmd)
|
|||
{
|
||||
if (pm.touchents[j] == other)
|
||||
break;
|
||||
|
||||
if (j != i)
|
||||
continue; // duplicated
|
||||
|
||||
if (!other->touch)
|
||||
continue;
|
||||
|
||||
other->touch (other, ent, NULL, NULL);
|
||||
}
|
||||
|
||||
if (j != i)
|
||||
continue; // duplicated
|
||||
|
||||
if (!other->touch)
|
||||
continue;
|
||||
|
||||
other->touch (other, ent, NULL, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue