From 9eda4e3c5dd938d7aa9e5fed8bd2f091c75ff5f5 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 21 Apr 2021 21:28:36 -0500 Subject: [PATCH] Fix minor spelling typo --- config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.cpp b/config.cpp index 377b549..25243ea 100644 --- a/config.cpp +++ b/config.cpp @@ -77,9 +77,9 @@ void config_t::print() { printf("\nCurrent Presence (%s) :", this->client_id.c_str()); printf("\nState: %s", this->state.c_str()); printf("\nDetails: %s", this->details.c_str()); - printf("\nLarge Image: '%s' with toolip, '%s'", this->large_img.key.c_str(), + printf("\nLarge Image: '%s' with tooltip, '%s'", this->large_img.key.c_str(), this->large_img.text.c_str()); - printf("\nSmall Image: '%s' with toolip, '%s'", this->small_img.key.c_str(), + printf("\nSmall Image: '%s' with tooltip, '%s'", this->small_img.key.c_str(), this->small_img.text.c_str()); printf("\nStart Time: %lld", this->start_time); printf("\nEnd Time: %lld\n", this->end_time);