diff options
author | Chris Robinson <[email protected]> | 2015-05-18 16:39:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-05-18 16:39:44 -0700 |
commit | 9f49ac0fda04cc4bdc9e47a0d3c026722283c3a4 (patch) | |
tree | a5654bd758c2e7de5b58c50a8147541505f1b7bb /Alc/backends/dsound.c | |
parent | 9479ea656bd4c7d3059b63405237829296776c10 (diff) |
Add a macro to simplify allocating and constructing an object
Diffstat (limited to 'Alc/backends/dsound.c')
-rw-r--r-- | Alc/backends/dsound.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Alc/backends/dsound.c b/Alc/backends/dsound.c index 8d7d7db3..174cc42f 100644 --- a/Alc/backends/dsound.c +++ b/Alc/backends/dsound.c @@ -1039,26 +1039,16 @@ static ALCbackend* ALCdsoundBackendFactory_createBackend(ALCdsoundBackendFactory if(type == ALCbackend_Playback) { ALCdsoundPlayback *backend; - - backend = ALCdsoundPlayback_New(sizeof(*backend)); + NEW_OBJ(backend, ALCdsoundPlayback)(device); if(!backend) return NULL; - memset(backend, 0, sizeof(*backend)); - - ALCdsoundPlayback_Construct(backend, device); - return STATIC_CAST(ALCbackend, backend); } if(type == ALCbackend_Capture) { ALCdsoundCapture *backend; - - backend = ALCdsoundCapture_New(sizeof(*backend)); + NEW_OBJ(backend, ALCdsoundCapture)(device); if(!backend) return NULL; - memset(backend, 0, sizeof(*backend)); - - ALCdsoundCapture_Construct(backend, device); - return STATIC_CAST(ALCbackend, backend); } |