summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2026-04-24 14:26:09 -0400
committerJonathan Bradley <jcb@pikum.xyz>2026-04-24 14:26:09 -0400
commit0706848f76740d39bb48c68d7756e1d9a58e00a2 (patch)
tree80ff32ca16e2523b79d5ff0aead8b663dad531d7
parent589ebf515c41130725a0000c1c26864047c70c00 (diff)
more specific wpm speed limit warning
-rwxr-xr-xsrc/spreed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spreed.c b/src/spreed.c
index da019ae..711de40 100755
--- a/src/spreed.c
+++ b/src/spreed.c
@@ -71,7 +71,7 @@ int main(int argc, char *argv[])
wpm_ns = 250;
} else if (wpm_ns > (60 * 30)) {
wpm_ns = 60 * 30;
- fwprintf(stdout, L"Limiting to 30 fps\n");
+ fwprintf(stdout, L"Limiting to %i wpm (30 fps)\n", 60 * 30);
}
wpm_ns = MS_PER_MIN / wpm_ns;
}