Abalieno
Abalieno
I had a very similar crash, and I was able to fix it with this mod: https://www.curseforge.com/minecraft/mc-mods/advancements-debug Not sure what mod triggers it.
Here's also the barebone code I'm using for ImGui rendering.  This works, but it needs to be plugged into the flush function so that the UI is rendered on...
An example would be helpful because while it compiles, the linker gives an error:  This is where we began discussing the whole thing, if more information might be useful:...
This time I used vcpkg under msys2/mingw64. Using these instructions: https://github.com/microsoft/vcpkg/blob/master/docs/users/mingw.md And then: `vcpkg install libtcod sdl2 glad imgui[opengl3-glad-binding,sdl2-binding]`
Well, I need examples. I cannot figure this stuff on my own without a lot more detail. I said many times I'm not an expert.
Yes, that makes sense... But I still have problems with the syntax because with the old code I don't create a console manually. All I use is `TCODConsole::setCustomFont` and `TCODConsole::initRoot`...
 So yes, I was getting a weird problem because once again there are different APIs, it seems. I set up `TCODConsole`, whereas the function uses `TCOD_Console`, with the underscore....
My hope was to look up again the code of "flush" and take from there the part about timings? Wouldn't it work? The problem with vsync is that the faster...
Another thing that stopped working and required rolling back a "printf" to the deprecated "print": menu->print(x, 0, "%c", TCOD_CHAR_HLINE); It seems there's a problem with these constants. I tried passing...
As written in the other issue, I still cannot compile some sample programs, but I was able to compile the library and then my own program. So now I'm using...