Commit 28fcc598 authored by David Reid's avatar David Reid

Replace a useless struct with a union.

parent 930b42a1
...@@ -1806,13 +1806,10 @@ typedef struct ...@@ -1806,13 +1806,10 @@ typedef struct
ma_uint32 maxSampleRate; ma_uint32 maxSampleRate;
} ma_device_info; } ma_device_info;
typedef struct typedef union
{ {
union ma_int64 counter;
{ double counterD;
ma_int64 counter;
double counterD;
};
} ma_timer; } ma_timer;
typedef struct typedef struct
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment