Change the type time to 250

This commit is contained in:
Justin 2025-05-11 12:55:52 -05:00
parent 8659174a14
commit d0fad7966a
1 changed files with 1 additions and 1 deletions

View File

@ -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));