diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-12-12 15:20:37 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-12-12 15:20:37 +0000 |
commit | a2e98c1cd926efdbfd0fd9f43005068b7684efbe (patch) | |
tree | 66185d3ff83eac6daa66fd9ba0cfe4f464fa19f8 /apps/settings.h | |
parent | 2950f6c1e72cf7d600dc03b8cdec162aa5ba4676 (diff) |
Merged Uwe Freese's bidirectional scrolling patch. Added configurable scroll step size and scroll start delay.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2974 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 012131e528..b42b68a87c 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -134,6 +134,10 @@ struct user_settings int runtime; /* current runtime since last charge */ int topruntime; /* top known runtime */ + + int bidir_limit; /* bidir scroll length limit */ + int scroll_delay; /* delay (in 1/10s) before starting scroll */ + int scroll_step; /* pixels to advance per update */ }; /* prototypes */ |