Update name of function parameter

This commit is contained in:
Hanno Braun 2024-11-06 21:30:12 +01:00
parent 42ad9202a8
commit 23f75b97c4

View File

@ -10,11 +10,11 @@ use winit::{
use crate::{geometry::OpsLog, render::Renderer};
pub fn run(mesh: OpsLog) -> anyhow::Result<()> {
pub fn run(ops: OpsLog) -> anyhow::Result<()> {
let event_loop = EventLoop::new()?;
let mut app = App {
ops: mesh,
ops,
window: None,
renderer: None,
};