File tree Expand file tree Collapse file tree 2 files changed +2
-62
lines changed
Expand file tree Collapse file tree 2 files changed +2
-62
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66
77use crate :: common:: * ;
88
9- mod accurate_timer;
10- use accurate_timer:: AccurateTimer ;
11-
129use std:: io:: Read ;
1310
1411use godot:: classes:: file_access:: ModeFlags ;
@@ -76,7 +73,7 @@ impl INode for MidiReceiver {}
7673
7774pub struct BattleTrack {
7875 pub sheet : Sheet ,
79- pub ticker : AccurateTimer < Ticker > ,
76+ pub ticker : Ticker ,
8077 pub receiver : GdW < MidiReceiver > ,
8178}
8279
@@ -94,7 +91,7 @@ impl BattleTrack {
9491 } ;
9592
9693 let sheet = Sheet :: parallel ( & tracks) ;
97- let ticker = AccurateTimer :: new ( Ticker :: new ( ticks. into ( ) ) ) ;
94+ let ticker = Ticker :: new ( ticks. into ( ) ) ;
9895 // let ticker = Ticker::try_from(header.timing).unwrap();
9996 let receiver = GdW ( MidiReceiver :: new_alloc ( ) ) ;
10097
You can’t perform that action at this time.
0 commit comments