Gareth Francis

Results 33 comments of Gareth Francis

Hookay: (Do you mean VS2019? even year releases stopped existing after 2012 I think) You shouldn't edit cmake_install.cmake - that's a generated file. Correct place for the fix would be...

Gotcha. tbh if you're a novice with cmake you might struggle with stepmania, big project with lots of pitfalls. Main bit is changing the install command, and I'd say preferably...

Yes it is, should really be CMAKE_BUILD_DIR/something so it's not shared across multiple builds (Not a big issue though, maybe not worth the effort to fix)

(Partly opinion, partly technical knowledge) Really the only reasons to disable are - If your system can't hit the screen's refresh rate (60Hz unless you're rich) - If you specifically...

So the crash is coming from ScreenGameplaySyncMachine as it can't find the song file "./_fallback/Other/ScreenGameplaySyncMachine music.ssc". Log mentions that it can't find the fallback theme at all by the looks...

Okay so it's ugly, no doubt about that. - Where is this code? - Is this a bug? - What do you expect someone to do about it?

Okay..Can you explain why? The comment says to get the next bpm, so incrementing the iterator seems like a sensible thing to do

Arguably a bug in CMake, if you really want to disable X11 see src/CMakeData-arch.cmake, around line 159. `if(X11_FOUND)` -> `if(WITH_X11 and X11_FOUND)` Not sure if running without a window is...

Okay so should probably be fixed, and probably a simple fix...but what real-world case causes this? Are there some forks that support that and people want to import those charts...

Ah okay so it's a regression, fun. I'd put money on it being in the string -> number conversions, was some recent issues about exceptions not being caught when calling...