Fix getDelayFromNS()

This commit is contained in:
Eddie Hung 2018-11-20 15:00:09 -08:00
parent ab9cb99f52
commit c3dc8696eb

View File

@ -898,7 +898,7 @@ struct Arch : BaseCtx
DelayInfo getDelayFromNS(float ns) const
{
DelayInfo del;
del.delay = ns;
del.delay = delay_t(ns * 1000);
return del;
}