Fix layout of VstSyncData struct
Ensure member of type double is 8-byte aligned for consistent layout between 32- and 64-bit Linux builds.
This commit is contained in:
committed by
Hyunjin Song
parent
205b57531d
commit
3aeacca7ac
@@ -76,10 +76,10 @@ private slots:
|
||||
private:
|
||||
struct VstSyncData
|
||||
{
|
||||
bool isPlaying;
|
||||
double ppqPos;
|
||||
int timeSigNumer;
|
||||
int timeSigDenom;
|
||||
bool isPlaying;
|
||||
bool isCycle;
|
||||
bool hasSHM;
|
||||
float cycleStart;
|
||||
|
||||
@@ -41,10 +41,10 @@
|
||||
|
||||
struct VstSyncData
|
||||
{
|
||||
bool isPlaying;
|
||||
double ppqPos;
|
||||
int timeSigNumer;
|
||||
int timeSigDenom;
|
||||
bool isPlaying;
|
||||
bool isCycle;
|
||||
bool hasSHM;
|
||||
float cycleStart;
|
||||
|
||||
Reference in New Issue
Block a user