summaryrefslogtreecommitdiff
path: root/Table.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Table.hpp')
-rw-r--r--Table.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Table.hpp b/Table.hpp
index 0c3b708..339381d 100644
--- a/Table.hpp
+++ b/Table.hpp
@@ -4,9 +4,9 @@
class Table {
private:
- static const int _yend = CFG_DHEIGHT - 32;
- static const int _height = 64;
- static const int _depth = 2;
+ static const int _yend = CFG_DHEIGHT - 24;
+ static const int _height = 61;
+ static const int _depth = 3;
static const int _delay = 8;
static const int _lane = _yend / _height;
int _notes[_depth][_height];
@@ -16,4 +16,5 @@ public:
Table();
void update(const Cursor& cursor);
void draw(const Cursor& cursor);
+ void set_layer(int layer);
};