This commit is contained in:
dylan 2023-05-13 16:24:36 -07:00
parent d542b2a2bc
commit 2ec4243027

View File

@ -242,7 +242,6 @@ export const fillRectRaw = (x: number, y: number, w: number, h: number, color: n
export const clearScreen = (color?: number) => { export const clearScreen = (color?: number) => {
fillRectRaw(0, 0, 128, 128, color ?? COLOR.BLACK); fillRectRaw(0, 0, 128, 128, color ?? COLOR.BLACK);
// allPixelColors.fill(0);
} }
export const frame = () => { export const frame = () => {