Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alt-F9/Alt-F10 now uses 2 WPM speed increments. #245 #246

Merged
merged 2 commits into from Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 12 additions & 2 deletions Main.pas
Expand Up @@ -965,14 +965,24 @@ procedure TMainForm.Edit1Enter(Sender: TObject);


procedure TMainForm.IncSpeed;
const
INC_WPM = 2;
begin
SetWpm(Trunc(Wpm / 5) * 5 + 5);
if RunMode = rmHST then
SetWpm(Trunc(Wpm / 5) * 5 + 5)
else
SetWpm(Wpm + INC_WPM);
end;


procedure TMainForm.DecSpeed;
const
DEC_WPM = 2;
begin
SetWpm(Ceil(Wpm / 5) * 5 - 5);
if RunMode = rmHST then
SetWpm(Ceil(Wpm / 5) * 5 - 5)
else
SetWpm(Wpm - DEC_WPM);
end;


Expand Down
4 changes: 2 additions & 2 deletions Readme.txt
@@ -1,4 +1,4 @@
MORSE RUNNER
 MORSE RUNNER
Contest Simulator
freeware

Expand Down Expand Up @@ -158,7 +158,7 @@ KEY ASSIGNMENTS
Ctrl-Up/Ctrl-Down arrows - bandwidth;

PgUp/PgDn, Ctrl-F10/Ctrl-F9, Alt-F10/Alt-F9 - keying speed,
in 5 WPM increments.
in 2 WPM increments. HST Competition uses 5 WPM increments.

STATISTICS AREA
The bottom right panel shows your current score, both Raw (calculated
Expand Down