BogaudioModules

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

commit 1540c306d5019a8bce19c529d8700febea713014
parent 3d221b58ebd3290984ce1db8a6e64304defadc1a
Author: Matt Demanett <matt@demanett.net>
Date:   Sat,  6 Apr 2019 15:53:27 -0400

Fix typos.

Diffstat:
Msrc/lfo_base.hpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lfo_base.hpp b/src/lfo_base.hpp @@ -106,8 +106,8 @@ struct LFOBaseWidget : ModuleWidget, PitchModeListener { LFOBase* lfo = dynamic_cast<LFOBase*>(module); assert(lfo); menu->addChild(new MenuLabel()); - menu->addChild(new PitchModeMenuItem(lfo, "Classic pitch mdoe: 0V = C0 = 16.35HZ", false)); - menu->addChild(new PitchModeMenuItem(lfo, "Standard pitch mdoe: 0V = C-3 = 2.04HZ", true)); + menu->addChild(new PitchModeMenuItem(lfo, "Classic pitch mode: 0V = C0 = 16.35HZ", false)); + menu->addChild(new PitchModeMenuItem(lfo, "Standard pitch mode: 0V = C-3 = 2.04HZ", true)); } };