mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Try to work around weird test failure on Windows.
This commit is contained in:
@@ -107,8 +107,8 @@ Bytes greaseWeazleToFluxEngine(const Bytes& gwdata, nanoseconds_t clock)
|
||||
|
||||
if (event)
|
||||
{
|
||||
uint32_t index_fl = (index_gw * clock) / NS_PER_TICK;
|
||||
uint32_t ticks_fl = (ticks_gw * clock) / NS_PER_TICK;
|
||||
uint32_t index_fl = round((index_gw * clock) / NS_PER_TICK);
|
||||
uint32_t ticks_fl = round((ticks_gw * clock) / NS_PER_TICK);
|
||||
if (index_gw != ~0)
|
||||
{
|
||||
if (index_fl < ticks_fl)
|
||||
|
||||
Reference in New Issue
Block a user