Robert Russell

Results 123 comments of Robert Russell

I think loading of saves on demand will be useful as we won't need to clone the save into memory if we are reading from the drive Everytime we goto...

Yeah I figure it'd be replaced with a config file. I was thinking we'd have a launcher like game does that wouldn't let you launch till it was set with...

I did put in code to pass the arguments to game1.Arguments https://github.com/MaKiPL/OpenVIII-monogame/blob/22eb63edcf69b3dda40610bd4d7d401363cbe579/Core/Game1.cs#L80 That line I'm parsing to check for log=true or log=false. You could use that to grab a path...

https://source.dot.net/#System.Private.CoreLib/PathInternal.Unix.cs,cffe6f0bdd450298 seems to confirm what you're saying Maki has a method to force path names to have correct slash. Maybe could use that to prep the data. It's in the...

since I'm now using a dynamicsoundeffectinstance. I can halt sending data to it. Which in effect pauses the sound. Probably would have to also set volume to 0 as it...

~~I was using this but it required I alter the existing conan.cmake.~~ > find_program(CONAN_BIN NAMES conan PATHS $ENV{HOME}/.local/bin) This I found was more useful in the long run. Thanks for...

I ended up using `sudo ln -s ~/.local/bin/conan /usr/bin/conan` both methods work I didn't know I could use the find_program outside the conan.cmake. I had a custom conan.cmake for a...

It seems like gcc 11 is loading the clang 13 headers. I'm wondering how to solve that. The bug with msvc is due to fmt 8.1.1 triggering an odd error....

https://github.com/Sebanisu/test_bug_project/blob/main/src/unit_test/unit_test.cpp I created this project because boost::ut shows red underlines in clion. But I am using conan to include it and build it and this project is based on this...

Deling probably do most of what you want when it comes to changing the game. this project, Open VIII: can read many of the files. But it's on the back...