aboutsummaryrefslogtreecommitdiffstats
path: root/source/sharp.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-03-30 17:17:58 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-03-30 17:17:58 -0400
commit230f0cb2914b02c4d70b19ac4358f2a0a078a676 (patch)
tree0857434674916a0bc7052d7b675de2ff215aeb6e /source/sharp.hpp
parent955993dcb2f744b9ccb39c05d058149cb071d7a5 (diff)
better scrolling, vibration
Diffstat (limited to 'source/sharp.hpp')
-rw-r--r--source/sharp.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/sharp.hpp b/source/sharp.hpp
index f1b6631..155acec 100644
--- a/source/sharp.hpp
+++ b/source/sharp.hpp
@@ -40,7 +40,6 @@ private:
static std::vector<Widget *> widgets;
static int topY;
- static int scrollVelocity;
public:
static void begin(void);
@@ -50,8 +49,13 @@ public:
widgets.emplace_back(new T(args...));
}
- inline static void setScrollVelocity(int vel) {
- scrollVelocity = vel;
+ inline static void setScroll(int scr = 0) {
+ static int oldTopY = 0;
+ if (scr == 0) {
+ oldTopY = topY;
+ } else {
+ topY = minof(0, oldTopY + scr);
+ }
}
static void sendInput(int ypos);