Skip to content

Commit fa018d3

Browse files
committed
print to console when you toggle things
1 parent 29cf530 commit fa018d3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

RawInput2/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -752,6 +752,7 @@ DWORD InjectionEntryPoint(DWORD processID)
752752
else
753753
memcpy(jumpPred, nopBuffer, 6);
754754
jumpPredPatched = !jumpPredPatched;
755+
ConMsg("BunnyhopAPE: %d\n", jumpPredPatched);
755756
}
756757
else if (msg.message == WM_HOTKEY && msg.wParam == 2)
757758
{
@@ -766,6 +767,7 @@ DWORD InjectionEntryPoint(DWORD processID)
766767
memcpy(pFUCKD3D9, "\x90\xE9", 2);
767768
}
768769
fullScreenPatched = !fullScreenPatched;
770+
ConMsg("Fullscreen hook: %d\n", fullScreenPatched);
769771
}
770772
else if (msg.message == WM_HOTKEY && msg.wParam == 3)
771773
{
@@ -777,6 +779,7 @@ DWORD InjectionEntryPoint(DWORD processID)
777779
m_vecPunchAngle_RecvProp[8] = RecvProxy_ZeroToVector;
778780
}
779781
fuckViewpunch = !fuckViewpunch;
782+
ConMsg("Viewpunch: %d\n", !fuckViewpunch);
780783
}
781784
}
782785

0 commit comments

Comments
 (0)