Change exit message

This commit is contained in:
SeanOMik 2021-12-07 21:46:39 -05:00
parent d40779510d
commit b9a96dfd43
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ int main() {
xcb_map_window(connection, window); xcb_map_window(connection, window);
xcb_flush(connection); xcb_flush(connection);
std::cout << "Press any key to resume"; std::cout << "Press enter to resume ";
int x = std::cin.get(); std::cin.get();
xcb_disconnect(connection); xcb_disconnect(connection);