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:
Dominic Clark
2019-03-03 16:11:02 +00:00
committed by Hyunjin Song
parent 205b57531d
commit 3aeacca7ac
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -41,10 +41,10 @@
struct VstSyncData
{
bool isPlaying;
double ppqPos;
int timeSigNumer;
int timeSigDenom;
bool isPlaying;
bool isCycle;
bool hasSHM;
float cycleStart;