summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e4d0518..58a263e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -159,7 +159,7 @@ impl ApplicationHandler for SystemicApp
game_state.borrow_mut().update(delta_time);
window.update(game_state, delta_time);
- match window.render(game_state, event_resp) {
+ match window.render(game_state, event_resp, delta_time) {
Ok(_) => {}
Err(wgpu::CurrentSurfaceTexture::Suboptimal(_) |
wgpu::CurrentSurfaceTexture::Outdated |