From b9a96dfd43c40c8d2534be63db6179b365518c25 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Tue, 7 Dec 2021 21:46:39 -0500 Subject: [PATCH] Change exit message --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8aecdd6..268c88d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -32,8 +32,8 @@ int main() { xcb_map_window(connection, window); xcb_flush(connection); - std::cout << "Press any key to resume"; - int x = std::cin.get(); + std::cout << "Press enter to resume "; + std::cin.get(); xcb_disconnect(connection);