diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-12-07 00:07:47 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-12-07 00:07:47 +0000 |
| commit | 89da4328a07c8736c42843607a3f3bf91c17601d (patch) | |
| tree | cbd5d6580b2c62dad5830c043d9284ff15cf7bdf /apps/action.c | |
| parent | 3648e8705402ce5a0af2125987f12c884b540eea (diff) | |
| download | rockbox-89da4328a07c8736c42843607a3f3bf91c17601d.zip rockbox-89da4328a07c8736c42843607a3f3bf91c17601d.tar.gz rockbox-89da4328a07c8736c42843607a3f3bf91c17601d.tar.bz2 rockbox-89da4328a07c8736c42843607a3f3bf91c17601d.tar.xz | |
Meg F/X can beep and click using a hardware timer so let us try it out. To match things up better, fix PCM beeping to give correct frequency (and get a pointer wrap bug too). Do some minor adjustments to compensate for corrections.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19355 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.c')
| -rw-r--r-- | apps/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c index 5ceeeb8..5f845ab 100644 --- a/apps/action.c +++ b/apps/action.c @@ -130,7 +130,7 @@ static int get_action_worker(int context, int timeout, /* Produce keyclick */ if (global_settings.keyclick && !(button & BUTTON_REL)) if (!(button & BUTTON_REPEAT) || global_settings.keyclick_repeats) - pcmbuf_beep(5000, 2, 2500*global_settings.keyclick); + pcmbuf_beep(4000, 2, 2500*global_settings.keyclick); #endif if ((context != last_context) && ((last_button & BUTTON_REL) == 0)) |