about summary refs log tree commit diff
path: root/src/main.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main.zig6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index 498b928..e054495 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -59,7 +59,11 @@ pub fn main() !void {
             .TCP => try socket_server.start_server(),
             .WINDOW => try sdl_window.present_sdl_window(),
             // TODO: parse options for arguments
-            .BRR => try brr.brr(args[2]),
+            // TODO: fix compile errors
+            // .BRR => try brr.brr(args[2]),
+            else => {
+                return;
+            },
         }
     }