From d0fad7966ab7aaf3232f262a807e2a0c579a37b3 Mon Sep 17 00:00:00 2001 From: Justin Date: Sun, 11 May 2025 12:55:52 -0500 Subject: [PATCH] Change the type time to 250 --- src/print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/print.cpp b/src/print.cpp index 97d62cd..228d6b6 100644 --- a/src/print.cpp +++ b/src/print.cpp @@ -13,7 +13,7 @@ void Print::type(string text){ char* charArray = new char[a+1]; strcpy(charArray, text.c_str()); int i = 0; - int time = 300; + int time = 250; while(i < a+1){ std::this_thread::sleep_for(std::chrono::milliseconds(time));