diff options
author | Graham Northup <grissess@nexusg.org> | 2017-10-07 02:14:17 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-10-07 02:14:17 -0400 |
commit | 255f0aa6de604e0bf9d37ba0ee5362ef3b9f235f (patch) | |
tree | e24314201b849746dd53f8060f48df81cd18853e /src/client.rs | |
parent | 22dd5bc5862e91330c8da0d5f141998cdbe546fb (diff) |
Graphics working
But in need of terrible refactoring.
Rust is beautiful sometimes. This is not one of those times.
Diffstat (limited to 'src/client.rs')
-rw-r--r-- | src/client.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.rs b/src/client.rs index 4615edd..b8518b3 100644 --- a/src/client.rs +++ b/src/client.rs @@ -95,6 +95,7 @@ impl Client { dprintln!("Playing on voice {} freq {} amp {} from frame {} until frame {}", voice, freq, amp, self.frames, (self.frames as f32) + frames); let mut vars = &mut self.voices[voice as usize].params.vars; + *vars.entry("v_start".to_string()).or_insert_with(Default::default) = (self.frames as f32); *vars.entry("v_deadline".to_string()).or_insert_with(Default::default) = (self.frames as f32) + frames; *vars.entry("v_freq".to_string()).or_insert_with(Default::default) = freq as f32; *vars.entry("v_amp".to_string()).or_insert_with(Default::default) = amp; |