1786015572

This commit is contained in:
2026-08-06 13:26:12 +02:00
parent 2d7a0be65b
commit 8ef850acb9

View File

@@ -75,6 +75,11 @@ impl Platform for Trekstor {
let x = (i % ctx.screen.width() as usize) as u32;
let y = (i / ctx.screen.width() as usize) as u32;
if x >= ctx.screen.width() || y >= ctx.screen.height() {
println!("Out of bounds {} {}", x, y);
continue;
}
ctx.screen.framebuffer.set_pixel(
x,
y,