From 0af6018a3fc22965a9f5b7e54717c911b32e0171 Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Sun, 21 Sep 2025 13:03:52 -0400 Subject: [PATCH] frontend: Disable GUI The GUI will not be necessary for the foreseeable future. Focus will be on implementing the virtual machine. And this commit speeds up the compile time as well. Signed-off-by: Ronald Caesar --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5543815..d661f72 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,7 @@ int main() { +#if 0 gui::window_t window = {.data = nullptr, .gl_context = nullptr}; (void)gui::window_init(&window, "Pound Emulator", 640, 480); @@ -113,4 +114,5 @@ int main() } gui::destroy(); +#endif }