Skip to content

Commit

Permalink
Text update
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Willis committed Dec 12, 2018
1 parent 63d1fd4 commit 3cbae6e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion plugins/dragonfly-reverb/DragonflyReverbPlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class DragonflyReverbPlugin : public Plugin

const char* getMaker() const noexcept override
{
return "Michael Willis/Rob van den Berg";
return "Michael Willis and Rob vd Berg";
}

const char* getHomePage() const override
Expand Down
18 changes: 9 additions & 9 deletions plugins/dragonfly-reverb/DragonflyReverbUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,16 +400,16 @@ void DragonflyReverbUI::onDisplay()
int y = rectDisplay.getY() + 5;
int w = rectDisplay.getWidth() - 10;

char textBuffer[256];

std::snprintf(textBuffer, 256,
"Dragonfly is a free hall-style reverb developed by\n"
"Michael Willis and Rob van den Berg\n\n"
"Acknowledgments:\n"
char textBuffer[300];

std::snprintf(textBuffer, 300,
"Dragonfly is a free hall-style reverb\n"
"Version: %d.%d.%d%s License: GPL 3+\n\n"
"• Michael Willis - Plugin Development\n"
"• Rob van den Berg - Plugin Development\n"
"• James Peters - Quality Assurance\n"
"• Teru Kamogashira - Freeverb3\n"
"\"falkTX\" Coelho - Distrho Plugin Framework\n\n"
"Version: %d.%d.%d%s\n"
"License: GPL 3+",
"\"falkTX\" Coelho - Distrho Plugin Framework",
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION, VERSION_SUFFIX
);

Expand Down

0 comments on commit 3cbae6e

Please sign in to comment.