Matt Harding

Results 33 comments of Matt Harding

This is true, Firefox has a hide-able URL bar on desktop. Actually, trying out http://bokand.github.io/demo/urlbarsize.html on Firefox, it has some very odd behaviour: 1. Load the page up in Firefox,...

Just FYI, you can pipe through the tool rustfilt to do this! https://github.com/luser/rustfilt

I haven't tested but I assume that this is fixed now, so I'm going to close this issue.

This is basically a natural product of combining two waves with the same frequency. It's pretty much what I'd expect from real 8-bit audio hardware (as someone with no real...

Heya. I've been working on my own patches over here: https://github.com/aduros/wasm4/pull/716 which I think come at some of the problems you were attacking with a simpler approach. Could you try...

Alrighty, bit of a behemoth patch here. I made the APU completely tick based, and I also ended up rewriting the frame timing code so that it's much smoother now,...

Yup, it should be all good! I've thrown some builds up on my web server: http://majaha.com/temp/w4/jrwq http://majaha.com/temp/w4/journey-to-entorus Hopefully you can see that it all sounds very smooth and in-time. And...

The game at your link seems to work fine for me. What web browser are you using?

I found this in the Chrome code, it looks like I'm not the only one who's spotted this: https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/scheduler/dom_timer.cc;l=272;drc=b0b102b6582fe1fca4a5eb6b156f198113674ec7;bpv=1;bpt=1?q=dom_timer.cc&ss=chromium%2Fchromium%2Fsrc https://issues.chromium.org/issues/40141482

Ah okay, that's good info. That's also pretty much how [Firefox does it](https://searchfox.org/mozilla-central/source/dom/base/TimeoutManager.cpp#455). By the way, I spotted some Undefined Behaviour in that Chromium code (signed int overflow), which [I've...