/polymer/eduke32/source/events_defs.h |
---|
106,7 → 106,6 |
EVENT_DISPLAYINACTIVEMENUREST, |
EVENT_CUTSCENE, |
EVENT_DISPLAYCURSOR, |
EVENT_DISPLAYLEVELSTATS, |
#ifdef LUNATIC |
EVENT_ANIMATEALLSPRITES, |
#endif |
/polymer/eduke32/source/game.c |
---|
3841,7 → 3841,7 |
G_PrintFPS(); |
// JBF 20040124: display level stats in screen corner |
if ((ud.overhead_on != 2 && ud.levelstats) && (g_player[myconnectindex].ps->gm&MODE_MENU) == 0 && VM_OnEvent(EVENT_DISPLAYLEVELSTATS, g_player[myconnectindex].ps->i, myconnectindex) == 0) |
if ((ud.overhead_on != 2 && ud.levelstats) && (g_player[myconnectindex].ps->gm&MODE_MENU) == 0) |
{ |
DukePlayer_t const * const myps = g_player[myconnectindex].ps; |
/polymer/eduke32/source/gamedef.c |
---|
671,7 → 671,6 |
"EVENT_DISPLAYINACTIVEMENUREST", |
"EVENT_CUTSCENE", |
"EVENT_DISPLAYCURSOR", |
"EVENT_DISPLAYLEVELSTATS", |
#ifdef LUNATIC |
"EVENT_ANIMATEALLSPRITES", |
#endif |
/polymer/eduke32/source/lunatic/con_lang.lua |
---|
178,12 → 178,11 |
EVENT_DISPLAYINACTIVEMENUREST = 98, |
EVENT_CUTSCENE = 99, |
EVENT_DISPLAYCURSOR = 100, |
EVENT_DISPLAYLEVELSTATS = 101, |
-- EVENT_ANIMATEALLSPRITES = previous+1, -- internal |
-- KEEPINSYNC with MAXEVENTS below |
} |
MAXEVENTS = 102 -- KEEPINSYNC with above EVENT_* list |
MAXEVENTS = 101 -- KEEPINSYNC with above EVENT_* list |
-- NOTE: negated values are not exported to the ffi.C namespace or CON. |
-- See TWEAK_SFLAG below. |