diff options
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 55413fa..57eecd1 100644 --- a/src/main.zig +++ b/src/main.zig @@ -118,7 +118,7 @@ pub fn main() !void { var cache = gl.UniformCache.init(std.heap.c_allocator, &main_program); defer cache.deinit(); - const control = try ctrl.ControlServer.init(arena.allocator(), progress, config.osc, &cache); + const control = try ctrl.ControlServer.init(arena.allocator(), progress, &config, &cache); defer control.destroy(); while (c.glfwWindowShouldClose(window) == c.GL_FALSE) { |
