BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 7d4661a5562d7133c0f257e04fdd62d78468d1ba
parent c8dbe1795761079c786dd1ab778bbc3391e4d751
Author: Matt Demanett <matt@demanett.net>
Date:   Tue, 23 Jan 2018 22:20:35 -0500

Fixes #9: use correct case for svg filename.

Diffstat:
Msrc/DGate.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/DGate.cpp b/src/DGate.cpp @@ -129,7 +129,7 @@ DGateWidget::DGateWidget() { { SVGPanel *panel = new SVGPanel(); panel->box.size = box.size; - panel->setBackground(SVG::load(assetPlugin(plugin, "res/DGATE.svg"))); + panel->setBackground(SVG::load(assetPlugin(plugin, "res/DGate.svg"))); addChild(panel); }