mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 16:24:04 +02:00
iOS: Fix build when ARC is not enabled.
This commit is contained in:
@@ -32417,6 +32417,12 @@ static ma_result ma_device__untrack__coreaudio(ma_device* pDevice)
|
||||
-(void)dealloc
|
||||
{
|
||||
[self remove_handler];
|
||||
|
||||
#if defined(__has_feature)
|
||||
#if !__has_feature(objc_arc)
|
||||
[super dealloc];
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
-(void)remove_handler
|
||||
|
||||
Reference in New Issue
Block a user