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

This commit is contained in:
David Reid
2020-11-23 17:38:44 +10:00
parent 0b98fe1a6b
commit f8c748870f
+2 -2
View File
@@ -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);