Jannik Vogel
Jannik Vogel
Note that I never *fixed* or *resolved* this. I can't either, simply because I don't know what happens in hardware. ~~We do need a hardware test for this.~~ This is...
This is an upstream issue in https://github.com/DevSolar/pdclib now (not tracked via GitHub issues). You should be able to use `RtlUnicodeStringToAnsiString` and others as a temporary workaround. For just debug output,...
Could be rewritten to simplify fractions using a GCD, or you can find a source for fraction simplification using this algorithm to ensure it's factual / non-copyrightable (while also providing...
For exposure and because it's slightly related: I found this catch handler for `OutputDebugString` on thrimbors repository: https://github.com/thrimbor/nxdk/commit/098e2fbf45d07e4eae238f1e37f876c69e050def
The bigger issue is that there's not enough space in the buffers. We should increase buffer sizes where necessary. `snprintf` is also good, but we shouldn't even have these buffer-overflows...
> Yes, adjusting the size of the buffers here would work around this issue I disagree. It's a fix, not a workaround. > But, had we been using the safer...
This is a more complete log by @ernegien - OS: Windows 10 (x64) - GPU: Unknown (but definitely Intel), unknown driver - Game: Unknown game / Unknown scene. I'll add...
I could not figure out what this does. The boot animation uses it like this: ```c dsp dma block 0x1ad (buffer -> dsp) next-block 0x1b4 control 0x004bd0: unk0:0, unk4:1 buf...
[Upsteam has some changes](https://github.com/qemu/qemu/commits/master/hw/usb/host-libusb.c) that [we don't have](https://github.com/xqemu/xqemu/commits/master/hw/usb/host-libusb.c), however: they shouldn't be relevant. I have the theory, that this might be bad handling of USB Interrupt NAKs (where the controller...
I'd argue that this is still a problem / a problem again. - On the wiki we recommend shallow-cloning by now. But the README is still doing a full clone....