From 76758fa2a8ede06d4a131e9a98b6db4d35e1ba59 Mon Sep 17 00:00:00 2001 From: Zynh0722 Date: Fri, 16 Feb 2024 23:14:44 -0800 Subject: [PATCH] removing an inaccurate underscore --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 1aae25a..3566172 100644 --- a/src/main.rs +++ b/src/main.rs @@ -103,8 +103,8 @@ fn event(app: &App, model: &mut Model, event: WindowEvent) { } // Update the state of your application here. By default, this gets called right before `view`. -fn update(_app: &App, _model: &mut Model, _update: Update) { - _model.engine.step(); +fn update(_app: &App, model: &mut Model, _update: Update) { + model.engine.step(); } // Draw the state of your `Model` into the given `Frame` here.