mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
5f76f699b2
commit
225294e8ce
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue