remove unnecessary trailing semicolon

This commit is contained in:
Max Bradbury 2021-04-25 17:47:39 +01:00
parent 4bd6286cf0
commit 52728e601b
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ pub fn add_room() -> String {
fn colour_match(a: &image::Rgb<u8>, b: &bitsy_parser::Colour) -> u8 {
if a[0] == b.red && a[1] == b.green && a[2] == b.blue { 1 } else { 0 }
};
}
for y in (row * SD)..((row + 1) * SD) {
for x in (column * SD)..((column + 1) * SD) {