L. Kärkkäinen

Results 252 comments of L. Kärkkäinen

However, I see I pointed you probably at the wrong point in code. Scancodes are used for letters precisely so that the guitar keys stay in same locations, but you...

Performous coding style: https://github.com/performous/performous/wiki/Coding-style I would avoid all tools that try to make lines of particular length because they lose all the thought that has been put into manual formatting....

If going for spaces, I'd suggest 2 spaces everywhere. It simplifies the "small indent" that some tools cannot otherwise support, as then everything is 2 spaces. Also this narrower width...

@Lord-Kamina I prefer tabs in C++ too, but have no strong preference either way.

@twollgam Could you check how that works with Github diffs, VS Code Git Lens and other such tooling where you cannot directly add the flag?

Could also implement indent check in Github CI, such that PRs cannot be merged with malformed whitespace. Client-side whitespace cleanup might be good enough too, although automatic conversion of indents...

This is now much closer to reality as the input pass-through feature resamples audio from microphones so that it is synced with background tracks. There's still plenty of work to...

Nice to see someone working on this. However, notice that you need to get audio time to timestamp video frames correctly because webcams do not actually run at a steady...

Static builds are very difficult because the existing CMake scripts probably aren't written well enough to pull in all the dependencies and in the right order. In dynamic builds the...

Many UI elements are placed in code because they must adapt to different display aspect ratios, preserving UI elements on screen without overlaps, out of screen UI elements or black...