diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 4f6544a44..ebdb3605c 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -264,7 +264,7 @@ OPTIMIZATIONS=-O$(OPTLEVEL) $(OPTOPT) DEBUGFLAG=-g ifeq (0,$(CLANG)) ifneq ($(PLATFORM),WII) - DEBUGFLAG=-ggdb + DEBUGFLAG=-ggdb -fno-omit-frame-pointer endif endif ifneq ($(RELEASE)$(DEBUGANYWAY),10) diff --git a/polymer/eduke32/build/src/polymost.c b/polymer/eduke32/build/src/polymost.c index f47ec5ca0..a5c9fee72 100644 --- a/polymer/eduke32/build/src/polymost.c +++ b/polymer/eduke32/build/src/polymost.c @@ -4108,7 +4108,7 @@ void polymost_drawsprite(int32_t snum) { if (sector[tspr->sectnum].floorz < tspr->z) { - sf0 = (float)(sector[tspr->sectnum].floorz-globalposz)*ryp0 + ghoriz; + sf0 = (float)(sector[tspr->sectnum].floorz-globalposz)*ryp0 + ghoriz; sf1 = (float)(sector[tspr->sectnum].floorz-globalposz)*ryp1 + ghoriz; } } diff --git a/polymer/eduke32/source/lunatic/defs.ilua b/polymer/eduke32/source/lunatic/defs.ilua index 0b75e3fc3..7472c0198 100644 --- a/polymer/eduke32/source/lunatic/defs.ilua +++ b/polymer/eduke32/source/lunatic/defs.ilua @@ -1488,7 +1488,6 @@ local user_defs_mt = { __index = { set_screen_size = function(ud, screen_size) if (ud.screen_size ~= screen_size) then - -- TODO: modify .statusbarmode accordingly ud.screen_size = screen_size ffiC.G_UpdateScreenArea() end