Skip to content

Commit

Permalink
xrEngine/xrSheduler: 1000i64 -> 1000ul (fixed compilation with gcc).
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine authored and nitrocaster committed Nov 8, 2015
1 parent 60d256e commit 23bd8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/xrSheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ void CSheduler::Update()
// Initialize
stats.Update.Begin();
cycles_start = CPU::QPC();
cycles_limit = CPU::qpc_freq * u64(iCeil(psShedulerCurrent)) / 1000i64 + cycles_start;
cycles_limit = CPU::qpc_freq * u64(iCeil(psShedulerCurrent)) / 1000ul + cycles_start;
internal_Registration();
g_bSheduleInProgress = TRUE;

Expand Down

0 comments on commit 23bd8e8

Please sign in to comment.