mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
25f6255d28
Preventing a continuously growing stack top and inevitable program termination. Also, commonize the error handling to live on the engine side. git-svn-id: https://svn.eduke32.com/eduke32@3352 1a8010ca-5511-0410-912e-c29ae57300e0
16 lines
269 B
C
16 lines
269 B
C
/* The Lunatic Interpreter, part of EDuke32. Editor stuff. */
|
|
|
|
#include <lualib.h>
|
|
|
|
#include "lunatic_m32.h"
|
|
|
|
|
|
int Em_CreateState(L_State *estate)
|
|
{
|
|
return L_CreateState(estate, "m32", NULL);
|
|
}
|
|
|
|
void Em_DestroyState(L_State *estate)
|
|
{
|
|
L_DestroyState(estate);
|
|
}
|