From: havoc Date: Sun, 28 Jul 2013 00:10:50 +0000 (+0000) Subject: fix an unused variable warning caused by USEODE X-Git-Tag: xonotic-v0.8.0~96^2~53 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=cef9c2755d4e93a8f151e0bd9a0bf4db23aef3b1;p=xonotic%2Fdarkplaces.git fix an unused variable warning caused by USEODE git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11987 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/world.c b/world.c index 4fe5fcf5..60bd0937 100644 --- a/world.c +++ b/world.c @@ -3012,8 +3012,8 @@ static void nearCallback (void *data, dGeomID o1, dGeomID o2) void World_Physics_Frame(world_t *world, double frametime, double gravity) { - prvm_prog_t *prog = world->prog; #ifdef USEODE + prvm_prog_t *prog = world->prog; double tdelta, tdelta2, tdelta3, simulationtime, collisiontime; tdelta = Sys_DirtyTime();