https://bugs.winehq.org/show_bug.cgi?id=51426
Bug ID: 51426 Summary: Alacritty crashes when trying to run it Product: Wine Version: 6.11 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: mikrutrafal@protonmail.com Distribution: ---
After running command which install consolas font ``` winetricks consolas ``` and downloading and running: https://github.com/alacritty/alacritty/releases/download/v0.8.0/Alacritty-v0...
then alacritty crashes with this info ``` panicked at 'assertion failed: `(left == right)` left: `-2147467263`, right: `0`', alacritty_terminal\src\tty\windows\conpty.rs:182:13
```
Looks that crash happens when trying to resize console
https://github.com/alacritty/alacritty/blob/a1b13e687024c86965c9e45c7b2d24d6...
``` let result = unsafe { ResizePseudoConsole(self.handle, coord) }; assert_eq!(result, S_OK); ```