Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Malacath-92 committed Feb 27, 2021
1 parent 84b0d0d commit 1c8b79e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/playlunky/detour/detour.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void Attach() {

const LONG error = DetourTransactionCommit();
if (error == NO_ERROR) {
fmt::print(DLL_NAME ": Succees...\n");
fmt::print(DLL_NAME ": Success...\n");
}
else {
fmt::print(DLL_NAME ": Error: {}\n", error);
Expand All @@ -130,7 +130,7 @@ void Detach() {

const LONG error = DetourTransactionCommit();
if (error == NO_ERROR) {
fmt::print(DLL_NAME ": Succees...\n");
fmt::print(DLL_NAME ": Success...\n");
}
else {
fmt::print(DLL_NAME ": Error: {}\n", error);
Expand Down

0 comments on commit 1c8b79e

Please sign in to comment.