type qualifiers are no longer necessary with api changes

This commit is contained in:
Quaternions 2024-07-31 19:07:56 -07:00
parent bc9cd71480
commit e1ae02d794

View File

@ -73,7 +73,7 @@ impl Run{
match &self.state{ match &self.state{
RunState::Created=>{ RunState::Created=>{
self.state=RunState::Started{ self.state=RunState::Started{
timer:TimerFixed::<Realtime,Unpaused>::new(time,Time::ZERO), timer:TimerFixed::new(time,Time::ZERO),
}; };
Ok(()) Ok(())
}, },