From d6981a4995866eb48b5f4ed19045083777a5575c Mon Sep 17 00:00:00 2001 From: ALittlePatate Date: Wed, 31 May 2023 21:28:19 +0200 Subject: [PATCH] removed unnecessary code --- examples/keylogger.pasm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/keylogger.pasm b/examples/keylogger.pasm index 09c6d8f..b63d367 100644 --- a/examples/keylogger.pasm +++ b/examples/keylogger.pasm @@ -52,7 +52,6 @@ and eax, 1 cmp eax, 0 je numbers ; if GetAsyncKeyState was false, jump to numbers -mov a2, a1 ; necessary ? -push a2 ; push char +push a1 ; push char call put -jmp numbers \ No newline at end of file +jmp numbers