diff --git a/text.cpp b/text.cpp index fe2001e..4182128 100644 --- a/text.cpp +++ b/text.cpp @@ -81,6 +81,7 @@ const wchar_t* CLIPBOARD = L"Clipboard"; const wchar_t* ABOUT = L"Textractor " ARCH L" v" VERSION LR"( made by me: Artikash (email: akashmozumdar@gmail.com) Project homepage: https://github.com/Artikash/Textractor Tutorial video: https://tinyurl.com/textractor-tutorial +FAQ: https://github.com/Artikash/Textractor/wiki/FAQ Please contact me with any problems, feature requests, or questions relating to Textractor You can do so via the project homepage (issues section) or via email Source code available under GPLv3 at project homepage diff --git a/texthook/texthook.cc b/texthook/texthook.cc index 429b35a..272046a 100644 --- a/texthook/texthook.cc +++ b/texthook/texthook.cc @@ -204,8 +204,7 @@ void TextHook::Send(uintptr_t dwDataBase) if (!err) { err = true; - ConsoleOutput(SEND_ERROR); - ConsoleOutput("Textractor: in %s", hp.name); + ConsoleOutput("%s in %s", SEND_ERROR, hp.name); } } done: @@ -267,7 +266,7 @@ void TextHook::Read() } __except (EXCEPTION_EXECUTE_HANDLER) { - ConsoleOutput(READ_ERROR); + ConsoleOutput("%s in %s", READ_ERROR, hp.name); Clear(); } }