this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: windows build

authored by

CJ van den Berg and committed by
Tim Culverhouse
80312c13 ff2699b0

+2 -2
+2 -2
src/tty.zig
··· 575 575 }; 576 576 577 577 const mouse: Mouse = .{ 578 - .col = @as(u16, @bitCast(event.dwMousePosition.X)), // Windows reports with 0 index 579 - .row = @as(u16, @bitCast(event.dwMousePosition.Y)), // Windows reports with 0 index 578 + .col = @as(i16, @bitCast(event.dwMousePosition.X)), // Windows reports with 0 index 579 + .row = @as(i16, @bitCast(event.dwMousePosition.Y)), // Windows reports with 0 index 580 580 .mods = mods, 581 581 .type = event_type, 582 582 .button = btn,