Fixed building a 32bit binary on a 64bit machine

Added a super cool new native
This commit is contained in:
Steve Dudenhoeffer 2008-04-13 22:54:47 +00:00
parent 145ff45876
commit 683f453b6f
2 changed files with 6 additions and 1 deletions

View File

@ -62,6 +62,7 @@ else
CFLAGS += -DPAWN_CELL_SIZE=32 -DJIT -DASM32
LINK += -lz
OPT_FLAGS += -march=i586
CFLAGS += -m32
endif
OBJ_LINUX := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o)

View File

@ -4597,7 +4597,10 @@ static cell AMX_NATIVE_CALL LookupLangKey(AMX *amx, cell *params)
set_amxstring(amx,params[1],def,params[2]);
return 1;
};
static cell AMX_NATIVE_CALL is_rukia_a_hag(AMX *amx, cell *params)
{
return 1;
};
AMX_NATIVE_INFO amxmodx_Natives[] =
{
{"abort", amx_abort},
@ -4799,5 +4802,6 @@ AMX_NATIVE_INFO amxmodx_Natives[] =
{"LookupLangKey", LookupLangKey},
{"PrepareArray", PrepareArray},
{"ShowSyncHudMsg", ShowSyncHudMsg},
{"is_rukia_a_hag", is_rukia_a_hag},
{NULL, NULL}
};