Restore `checked` modifier in `BasicMovieInfo.FrameRate`
fixes 94a24aab8
This commit is contained in:
parent
1f1bf9b056
commit
32a66a955c
|
@ -71,7 +71,7 @@ namespace BizHawk.Client.Common
|
|||
const decimal attosInSec = 1_000_000_000_000_000_000.0M;
|
||||
var m = attosInSec;
|
||||
m /= ulong.Parse(vsyncAttoStr);
|
||||
return (double) m;
|
||||
return checked((double) m);
|
||||
}
|
||||
|
||||
return PlatformFrameRates.GetFrameRate(SystemID, IsPal);
|
||||
|
|
Loading…
Reference in New Issue