BieHDC
BieHDC
Anyone else unable to join multiplayer races? I get into the lobby, but setting myself ready does not ready me up. It holds that light green colour text colour and...
From the example: ```c struct nk_rect total_space = nk_window_get_content_region(ctx); nk_layout_space_begin(ctx, NK_DYNAMIC, total_space.h, 2147483647); nk_layout_space_push(ctx, nk_rect(0.0,0.0,0.5,0.6)); if (nk_group_begin(ctx, "SearchResults", NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 0, 1); nk_label(ctx, "...", NK_TEXT_LEFT); //nk_widget... nk_group_end(ctx); } nk_layout_space_push(ctx,...
> After seeing how the functions are being used in practice I think it's better to deprecate the current versions (i.e. missing the new argument) and in the future have...
> > Right now you always go from top left to bottom right, but often it would be useful if you could start from the bottom right for example. >...
> Though I'd like to support you in this - if you want, I'll send you an invitation to this org so you can create a new repository and start...
Ok, i downgraded it to a draft, because i spent some more time in it and there are a few more things to fix. Please stand by.
Fixed the merge conflict. Ready to merge.
I started working on this and have a simple hello world printing before it crashes for yet unknown reasons. I would be willing to keep working on this, however i...
I did the other things i wanted to achieve, now it is just about that crash i cant debug. And i took down a semi fixme in the os_windows aswell...
I tried preserving xmm6 and xmm7 as mentioned [here](https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/x86-architecture) and also a hail mary approach with pushf/popf and pusha/popa, but it didnt help. When doing `-gc=leaking` it fails to find...