1786015648

This commit is contained in:
2026-08-06 13:27:28 +02:00
parent 8ef850acb9
commit 6b550630d0

View File

@@ -72,6 +72,10 @@ impl Platform for Trekstor {
dbg!("Rendering");
renderer.render(&mut buffer1, ctx.screen.width() as usize);
for (i, px) in buffer1.into_iter().enumerate() {
if i > (ctx.screen.width() as usize - 1) {
break;
}
let x = (i % ctx.screen.width() as usize) as u32;
let y = (i / ctx.screen.width() as usize) as u32;