2022-12-12 09:05 AM
2023-01-05 06:44 AM
COSMIC confirmed that there is a bug in version 4.5.5.
If you have an empty infinite loop il your code, there needs to be a nop instruction (or something else) inside of it.
Example:
while (1)
{
_asm("nop");
}