tweak
This commit is contained in:
parent
b55ba418aa
commit
ce0572485b
@ -82,7 +82,7 @@ impl TimerState for Scaled{
|
||||
|
||||
pub struct TimerFixed<T:TimerState,P:PauseState>{
|
||||
state:T,
|
||||
paused:P,
|
||||
_paused:P,
|
||||
}
|
||||
|
||||
pub enum Timer{
|
||||
@ -126,7 +126,7 @@ impl<T:TimerState,P:PauseState> TimerFixed<T,P>{
|
||||
let new_time=self.time(time);
|
||||
let mut timer=TimerFixed{
|
||||
state:self.state,
|
||||
paused:Paused,
|
||||
_paused:Paused,
|
||||
};
|
||||
timer.set_time(time,new_time);
|
||||
Ok(timer)
|
||||
@ -139,7 +139,7 @@ impl<T:TimerState,P:PauseState> TimerFixed<T,P>{
|
||||
let new_time=self.time(time);
|
||||
let mut timer=TimerFixed{
|
||||
state:self.state,
|
||||
paused:Unpaused,
|
||||
_paused:Unpaused,
|
||||
};
|
||||
timer.set_time(time,new_time);
|
||||
Ok(timer)
|
||||
|
Loading…
Reference in New Issue
Block a user