Dmitry D. Chernov

Results 38 comments of Dmitry D. Chernov

Instead of CMake, something other should be used, that meet at least the following requirements: 1. Up-to-date and clear enough documentation. 2. Free and open-source. 3. Actual state of development...

> Maybe try `_fileno` instead of `fileno`? ``` _Work\GithubProjects\gena\tests\munit\munit.c:1252 error: implicit declaration of function '_fileno' [-Wimplicit-function-declaration] ```

Okay, I've figured it out. The reason is that `-std=c99` implies `-D__STRICT_ANSI__` (but not `-ansi`, lol), while `fileno()` is a mingw extension for POSIX-compatibility (and `_fileno()` is from MSVC). https://stackoverflow.com/a/19789948...

> Meanwhile, is there anything in TDM-GCC's pre-defined preprocessor macros to identify it? I don't know for sure, but probably not. > No, it's POSIX, which is a big difference....

Just wanted to notify that this issue (or related #476) is a show-stopper for implementing the 7z format (already tried in https://github.com/kaitai-io/kaitai_struct_formats/issues/140) template because it contains sequences of dynamic length...

Okay, I've came up with a `reduce`-like sum solution that doesn't use recursion and **works with lazy evaluation of instances** (@KOLANICH, it may be interesting to you). Ready to use...

I think that on Windows we anyway should use the real OS registry for compatibility, for example, with the settings saved during previous launches of the game while using the...

I'll review it in next 2-3 weeks after my graduation from the university. If I'll forget, feel free to remind me. The point is that we've already discussed some things...

This should be also noted that fullscreen facilities were implemented incorrectly in GM, they actually just make game window unbordered and maximized. To obtain lesser resolution for better performance one...

This should actually be implemented using a native UI dialog window just as it is done in GM. So it requires some support from @notviri's [ramen](https://github.com/notviri/ramen).