Susko3

Results 177 comments of Susko3

> My goal with the site I'm developing is to provide access to songs ranked across various platforms Is a link to the song on `open.spotify.com` good enough for providing...

I assume most of this stuff is targeted at click to display latency. How does this affect click to audio latency? I would expect it to not change, but depending...

> No, the only thread being locked would be the draw thread via the `FrameSleep` method, the update thread should be left untouched at its usual 1000hz. Then why is...

> If we use Reflex to pace the Update thread to say, 60 FPS, [...]. Whether this is desirable if up for discussion, but quite frankly this is what the...

Could you put a breakpoint in `logOutput()` to confirm that it's the SDL_GetWindowBordersSize call causing the error. Look at the stack trace. I'm not sure if there's a way to...

> As a player I wouldn't expect it to affect the cursor. Yeah, since the movement of the cursor is unaffected by barel roll, its rotation should also be unaffected....

Relevant code: https://github.com/crittermike/shortkeys/blob/83750b29091aed50f04af05f384a1bb3f61ca64a/app/options/options.vue#L253-L256 Should probably be changed to regular reference equality, if that works: ```diff - onConfirm: () => this.keys = this.keys.filter(curKey => key.key !== curKey.key) + onConfirm: () =>...