Friedrich von Never

Results 574 comments of Friedrich von Never
trafficstars

It's possible to override per project. Try placing such file into `overtone` directory (near the `.sln`), and it will override the default. This way you won't mess up your default...

No, it's not that easy. PascalABC.NET compiler is a heavy user of reflection and `Reflection.Emit`. It saves the assembly by calling `AssemblyBuilder.Save`, which [is still broken](https://github.com/dotnet/runtime/issues/15704). But there's an interesting...

The current plan is: 1. Investigate if _the types_ correspond to what we require. Whether the `Tokenizer` generates types that are ok for our lexer, and `Parser` generates types that...

The general idea for their presence is that they are needed for proper incremental recompilation tracking. If you remove them from the set of dependencies, then a change in `.h`...

> How will you know when the video is done playing? In the original game, as I see, there's no need to know that the video has ended playing. There...

Cinepak seems to be [a relatively simple video format](https://multimedia.cx/mirror/cinepak.txt). I wonder if we could just write a decoder for it.

Yep, this is understandable. Sadly, I myself am just learning how Scala 3 works (it seems to make some changes in the macro subsystem, and tinylog uses macros it its...

Let's compare the contents? It would be so interesting to read the diff.

I expect scene switching and basically any state transition in the game to be instant. But we have some additional activity to do: - initial ISO loading (downloading of ~300...