diff options
author | Alexander Levin <al.le@rockbox.org> | 2009-07-11 16:46:19 +0000 |
---|---|---|
committer | Alexander Levin <al.le@rockbox.org> | 2009-07-11 16:46:19 +0000 |
commit | cc7c665d9b5e6d801f248799dabe05e3729bb1c8 (patch) | |
tree | 3c82c6774acc78e814bad736496c693877295866 /apps/gui/pitchscreen.h | |
parent | 17ac0d7ff9604664a1894fd49883e44291f06451 (diff) |
Improvements to the pitch screen UI (FS#10359 by David Johnston)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21781 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/pitchscreen.h')
-rw-r--r-- | apps/gui/pitchscreen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/gui/pitchscreen.h b/apps/gui/pitchscreen.h index 41eb1fd415..e421c6559e 100644 --- a/apps/gui/pitchscreen.h +++ b/apps/gui/pitchscreen.h @@ -22,6 +22,11 @@ #ifndef _PITCHSCREEN_H_ #define _PITCHSCREEN_H_ +/* precision of the pitch and speed variables */ +/* One zero per decimal (100 means two decimal places */ +#define PITCH_SPEED_PRECISION 100L +#define PITCH_SPEED_100 (100L * PITCH_SPEED_PRECISION) /* 100% speed */ + int gui_syncpitchscreen_run(void); #endif /* _PITCHSCREEN_H_ */ |