The Ctrl + V Game

  • Thread starter Thread starter smileyhead
  • Start date Start date
  • Views Views 573,399
  • Replies Replies 9,272
  • Likes Likes 15
Hide a body in the one place no one will ever check: crammed in another coffin in the graveyard
Post automatically merged:

I SWEAR ITS NOT WHAT IT LOOKS LIKE
 
  • Wow
Reactions: hippy dave
1696918589555.png
 
C++:
// Instrument Note Table Envelope
struct TNoteTableEnvelope
{
    union
    {
        BYTE noteTable;                        // Set Note Index 0-255 (Absolute/Additive), capped to NOTE_COUNT
        struct
        {
            SBYTE noteXY : 6;                // Transpose by +- 32 semitones (Relative/Additive), capped to NOTE_COUNT
            bool isNoteY : 1;                // Add X or Y semitones to noteXY (Relative only), capped to NOTE_COUNT
        };
        struct
        {
            SBYTE note : 7;                    // Transpose by +- 64 semitones (Relative/Additive), capped to NOTE_COUNT
            bool isArpeggioScheme : 1;        // Arpeggio Scheme is paired to the Pattern Command 0xy if it is active, taking priority over it
        };
    };
};
 
  • Love
Reactions: impeeza

Site & Scene News

Popular threads in this forum