Commit f8c74887 authored by David Reid's avatar David Reid

Remove the use of bitfields in the public section of miniaudio_engine.

parent 0b98fe1a
......@@ -1604,8 +1604,8 @@ struct ma_engine
ma_uint32 periodSizeInFrames;
ma_uint32 periodSizeInMilliseconds;
ma_allocation_callbacks allocationCallbacks;
ma_bool32 ownsResourceManager : 1;
ma_bool32 ownsDevice : 1;
ma_bool8 ownsResourceManager;
ma_bool8 ownsDevice;
};
MA_API ma_result ma_engine_init(const ma_engine_config* pConfig, ma_engine* pEngine);
......
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