update microw8 resolution, now 320x240

This commit is contained in:
2021-11-14 17:10:48 +01:00
parent e23b98c1ab
commit 7aef99d186
7 changed files with 11 additions and 11 deletions

View File

@@ -30,6 +30,6 @@ export fn tic(time: i32) {
loop pixels {
seed(i + (time / 10) * 320);
i?120 = (randomf() * 256 as f32 + time as f32 / 10 as f32) as i32 & 128;
branch_if (i := i + 1) < 320*256: pixels
branch_if (i := i + 1) < 320*240: pixels
}
}