Specifically the line `var src = pixels >> 2` needs updating. It should probably be: ``` #if __wasm64__ var src = pixels / 4; #else var src = pixels >>> 0; #endif ``` (I can work look into uploading a PR for this)