Avokadoen / tetris_wasm

Tetris implemented in rust and targetting wasm
Apache License 2.0
9 stars 1 forks source link

Multiple lines filled with one tileset only clears one line #3

Closed Avokadoen closed 4 years ago

Avokadoen commented 4 years ago

The code that scans for complete lines has a bug where it only finds one line per new_tile event. This is caused by the loop clearing the next line without backtracking after.

Avokadoen commented 4 years ago

Fixed in 6f70764