diff --git a/CursorLagFixer.cpp b/CursorLagFixer.cpp index 87cd884..372ae0c 100644 --- a/CursorLagFixer.cpp +++ b/CursorLagFixer.cpp @@ -2,7 +2,7 @@ // Modifies SetCursor API to return NULL doing nothing. // Sets the Window Handles HCURSOR to NULL. // -// Usage: CursorLagFixer SomeProgram.exe +// Usage: CursorLagFixer ProcessName.exe #include "pch.h" #include @@ -93,7 +93,7 @@ DWORD PSAPI_EnumProcesses(list& listProcessIDs, DWORD dwMaxProcessCount) int main(int argc, char* argv[]) { if (argc == 1) { - printf("Usage: %s ProgramName.exe", argv[0]); + printf("Usage: %s ProcessName.exe", argv[0]); Sleep(5000); return 0; } diff --git a/README.md b/README.md index 943698e..b7102b9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # CursorLagFixer An attempt to fix Windows 10 Gaming where moving the mouse cursor lags. Sets window HCURSOR to NULL and makes SetCursor return NULL doing no action. + + +Usage: CursorLagFixer ProcessName.exe +