diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-01-25 16:36:11 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-01-25 16:57:31 +0000 |
| commit | 9d2d72db724de3b21a7ade4623c3b1a8603e85f3 (patch) | |
| tree | 3f2ef21dfcc66db486b4871c2352ece0eea744e4 /src/output.zig | |
| parent | basic OSC support (diff) | |
| download | glsl-view-9d2d72db724de3b21a7ade4623c3b1a8603e85f3.tar.gz glsl-view-9d2d72db724de3b21a7ade4623c3b1a8603e85f3.zip | |
OSC configuration in config.yaml
Diffstat (limited to 'src/output.zig')
| -rw-r--r-- | src/output.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.zig b/src/output.zig index b2368d8..c31c191 100644 --- a/src/output.zig +++ b/src/output.zig @@ -16,7 +16,7 @@ pub const Output = struct { pub fn create(allocator: *std.mem.Allocator, config: cfg.OutputConfig, constants: *gl.Constants) *Output { return switch (config.type) { - cfg.OutputType.window => WindowOutput.create(allocator, config, constants), + .window => WindowOutput.create(allocator, config, constants), else => unreachable, }; } |
