From: fennecdjay Date: Mon, 18 Jul 2022 14:14:29 +0000 (+0200) Subject: :art: Add message to dummy driver init X-Git-Tag: nightly~264^2~91 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=e3af5187d23cdb01a4fe7d912ad8c7067cf6ab03;p=gwion.git :art: Add message to dummy driver init --- diff --git a/src/vm/driver.c b/src/vm/driver.c index 8d68e8e1..3550ff6f 100644 --- a/src/vm/driver.c +++ b/src/vm/driver.c @@ -35,7 +35,10 @@ static DRVRUN(dummy_run) { } } -static DRVINI(dummy_ini) { return GW_OK; } +static DRVINI(dummy_ini) { + gw_err("{-/}using dummy driver{0}\n"); + return GW_OK; +} void dummy_driver(DriverData *dd) { dd->ini = dummy_ini;