actually obey the orders

This commit is contained in:
tildearrow 2021-12-09 01:44:40 -05:00
parent 13c6362edb
commit d395abe47f
5 changed files with 31 additions and 9 deletions

View file

@ -1,5 +1,6 @@
struct DivPattern {
short data[256][16];
DivPattern();
};
struct DivChannelData {
@ -11,5 +12,7 @@ struct DivChannelData {
// 2: instrument
// 3: volume
// 4-5+: effect/effect value
std::vector<DivPattern*> data;
DivPattern* data[128];
DivPattern* getPattern(int index, bool create);
DivChannelData();
};