From 82a0c4720b5c4a4ac78b3d14a5d1e92f20f397dc Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 29 Jan 2024 15:33:14 -0500 Subject: [PATCH] little things --- nukedopl3.d | 2 +- simpleaudio.d | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nukedopl3.d b/nukedopl3.d index 4453e7f..8db11bd 100644 --- a/nukedopl3.d +++ b/nukedopl3.d @@ -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: diff --git a/simpleaudio.d b/simpleaudio.d index fc3e474..35509e5 100644 --- a/simpleaudio.d +++ b/simpleaudio.d @@ -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;