little things

This commit is contained in:
Adam D. Ruppe 2024-01-29 15:33:14 -05:00
parent 41dbab24fb
commit 82a0c4720b
2 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,7 @@
Authors:
Originally written in C by Alexey Khokholov, ported to D by ketmar, very slightly modified by me.
+/
module arsd.nukedopl3 /*is aliced*/;
module arsd.nukedopl3;
nothrow @trusted @nogc:
public:

View File

@ -2990,8 +2990,11 @@ snd_pcm_t* openAlsaPcm(snd_pcm_stream_t direction, int SampleRate, int channels,
/* Open PCM and initialize hardware */
// import arsd.core;
// writeln("before");
if (auto err = snd_pcm_open(&handle, cardName.toStringz, direction, 0))
throw new AlsaException("open device", err);
// writeln("after");
scope(failure)
snd_pcm_close(handle);
@ -3055,8 +3058,10 @@ snd_pcm_t* openAlsaPcm(snd_pcm_stream_t direction, int SampleRate, int channels,
/* finish setup */
// writeln("prepare");
if (auto err = snd_pcm_prepare(handle))
throw new AlsaException("prepare", err);
// writeln("done");
assert(handle !is null);
return handle;