From 2cdc638d0a7c597e1460abc88ce935403f2d63ed Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 22:01:02 -0500 Subject: [PATCH] feat: ensure stdout is flushed after StardustXR connection message --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 8657a83..f91c2fa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -82,6 +82,7 @@ int main(int argc, char** argv) { } std::cout << "[main] StardustXR connected, continuing to Overte setup..." << std::endl; + std::cout.flush(); // Force flush to ensure message appears // Overte localhost default assumption (can override via OVERTE_URL env or --overte=ws://host:port) std::string overteUrl = "ws://127.0.0.1:40102";