From c55c0e21a9e0ecd78652f107f2611ed7b1cecac5 Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Wed, 16 Jul 2025 23:46:17 -0500 Subject: [PATCH] framebuffer: missing stdint include --- holly/framebuffer.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/holly/framebuffer.hpp b/holly/framebuffer.hpp index 6f70d41..3d15b86 100644 --- a/holly/framebuffer.hpp +++ b/holly/framebuffer.hpp @@ -1,5 +1,7 @@ #pragma once +#include + namespace framebuffer { constexpr inline int div32(int n)