Replace a useless struct with a union.

This commit is contained in:
David Reid
2019-04-17 17:24:54 +10:00
parent 930b42a136
commit 28fcc59883
+3 -6
View File
@@ -1806,13 +1806,10 @@ typedef struct
ma_uint32 maxSampleRate;
} ma_device_info;
typedef struct
typedef union
{
union
{
ma_int64 counter;
double counterD;
};
ma_int64 counter;
double counterD;
} ma_timer;
typedef struct