From 25ab4d679951a156a5d7f407655795edd748773c Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 4 Jan 2016 01:17:22 +1000 Subject: [PATCH] Bring back LAMBDA incase it actually does something here --- qcsrc/client/view.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/view.qc b/qcsrc/client/view.qc index 790f92926f..17dbf0ba96 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -1839,7 +1839,7 @@ void CSQC_UpdateView(float w, float h) mousepos = mousepos*0.5 + getmousepos(); */ - FOREACH_ENTITY(it.draw, it.draw(it)); + FOREACH_ENTITY(it.draw, LAMBDA(it.draw(it))); addentities(MASK_NORMAL | MASK_ENGINE | MASK_ENGINEVIEWMODELS); renderscene(); @@ -2169,7 +2169,7 @@ void CSQC_UpdateView(float w, float h) } else */ // draw 2D entities - FOREACH_ENTITY(it.draw2d, it.draw2d(it)); + FOREACH_ENTITY(it.draw2d, LAMBDA(it.draw2d(it))); Draw_ShowNames_All(); Debug_Draw(); -- 2.39.2