mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
GetTickCount linux fix
This commit is contained in:
parent
295a46237a
commit
616c899180
1 changed files with 2 additions and 2 deletions
|
@ -7020,7 +7020,7 @@ bool BfCompiler::DoCompile(const StringImpl& outputDirectory)
|
||||||
{
|
{
|
||||||
BP_ZONE("BfCompiler::Compile");
|
BP_ZONE("BfCompiler::Compile");
|
||||||
|
|
||||||
uint32 frontendStartTick = GetTickCount();
|
uint32 frontendStartTick = BFTickCount();
|
||||||
|
|
||||||
if (mSystem->mTypeDefs.mCount == 0)
|
if (mSystem->mTypeDefs.mCount == 0)
|
||||||
{
|
{
|
||||||
|
@ -7833,7 +7833,7 @@ bool BfCompiler::DoCompile(const StringImpl& outputDirectory)
|
||||||
BpLeave();
|
BpLeave();
|
||||||
BpEnter("Compile_Finish");
|
BpEnter("Compile_Finish");
|
||||||
|
|
||||||
int frontendTicks = (int)(GetTickCount() - frontendStartTick);
|
int frontendTicks = (int)(BFTickCount() - frontendStartTick);
|
||||||
|
|
||||||
//TODO:!!
|
//TODO:!!
|
||||||
//mCanceling = true;
|
//mCanceling = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue