diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/main.ha | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/main.ha b/client/main.ha index 7bbb706..6c9208a 100644 --- a/client/main.ha +++ b/client/main.ha @@ -81,6 +81,7 @@ export fn main() void = { case void => yield; case let op: drawing::op => drawing::perform(pictures, op); + drawing::send_op(conn, op)!; }; for (let i = 0z; i < len(pictures); i += 1) { |