demo.c: time G_DoMoveThings() using a double instead of an int32_t.

I think this may fix some negative "non-profiled overhead" that I
have been seeing.

git-svn-id: https://svn.eduke32.com/eduke32@3182 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-11-15 14:28:53 +00:00
parent 5f76f699b2
commit 225294e8ce

View file

@ -728,7 +728,7 @@ nextdemo_nomenu:
if (Demo_IsProfiling()) if (Demo_IsProfiling())
{ {
int32_t t = (int32_t)gethitickms(); double t = gethitickms();
G_DoMoveThings(); G_DoMoveThings();
Demo_GToc(t); Demo_GToc(t);
} }