-
Notifications
You must be signed in to change notification settings - Fork 56
make alt + up/down work on all screens #624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 6 commits
895170a
70a4c5e
d3ac7d6
c8ae26b
cf4c613
085d8e8
e937e70
e292d51
0fa6cf3
2ff3814
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| #define BUILD_COUNT "003" | ||
| #define BUILD_COUNT "001" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,9 @@ | |
| #include "Foundation/Types/Types.h" | ||
| #define PHRASE_COUNT 0x80 | ||
| #define NO_MORE_PHRASE 0x81 | ||
| #define PHRASE_ROW_COUNT 16 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍🏻 |
||
| #define NO_NOTE_ASSIGNED 0xFF | ||
| #define NO_INSTRUMENT_ASSIGNED 0xFF | ||
|
|
||
| class Phrase { | ||
| public: | ||
|
|
@@ -14,12 +17,12 @@ class Phrase { | |
| void SetUsed(uchar c); | ||
| void ClearAllocation(); | ||
|
|
||
| uchar note_[PHRASE_COUNT * 16]; | ||
| uchar instr_[PHRASE_COUNT * 16]; | ||
| FourCC cmd1_[PHRASE_COUNT * 16]; | ||
| ushort param1_[PHRASE_COUNT * 16]; | ||
| FourCC cmd2_[PHRASE_COUNT * 16]; | ||
| ushort param2_[PHRASE_COUNT * 16]; | ||
| uchar note_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
| uchar instr_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
| FourCC cmd1_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
| ushort param1_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
| FourCC cmd2_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
| ushort param2_[PHRASE_COUNT * PHRASE_ROW_COUNT]; | ||
|
|
||
| private: | ||
| bool isUsed_[PHRASE_COUNT]; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ | |
| #include "Foundation/Variables/VariableContainer.h" | ||
| #include "Song.h" | ||
|
|
||
| #define PROJECT_NUMBER "2.1-BETA1" | ||
| #define PROJECT_NUMBER "2.1-JumpSection" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is fine to change in your local test builds but please dont commit this into the PR branch
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should I remove the commit changing this completely from the commit-history in the PR branch? Or is reverting it sufficient? (e.g. if PRs are being squashed anyways)
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just reverting or a new commit putting the old line back is fine since yes we do squash merge PRs so the commits in a PR branch arent kept anyways |
||
| #define PROJECT_RELEASE "r" | ||
| // BUILD_COUNT define comes from BuildNumber.h | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is no need to change this as this is just a placeholder value that is replaced in GitHub CI (Actions)