@@ -8,7 +8,7 @@ about: Bugs, build errors, compatibility/stability issues | |||||
To file a bug report, fill out the form below. | To file a bug report, fill out the form below. | ||||
Use a descriptive title that best explains the bug in one sentence. | Use a descriptive title that best explains the bug in one sentence. | ||||
Attach screenshots if the bug is visual. | Attach screenshots if the bug is visual. | ||||
Attach your `<Rack user folder>/log.txt` file if something is crashing or not loading. | |||||
Attach your `<Rack user folder>/log.txt` file if Rack is crashing. | |||||
Surround terminal output with three tildes | Surround terminal output with three tildes | ||||
``` | ``` | ||||
like this. | like this. | ||||
@@ -226,6 +226,8 @@ void ParamWidget::resetAction() { | |||||
if (paramQuantity && paramQuantity->isBounded()) { | if (paramQuantity && paramQuantity->isBounded()) { | ||||
float oldValue = paramQuantity->getValue(); | float oldValue = paramQuantity->getValue(); | ||||
reset(); | reset(); | ||||
// Here's another way of doing it, but either works. | |||||
// paramQuantity->getParam()->reset(); | |||||
float newValue = paramQuantity->getValue(); | float newValue = paramQuantity->getValue(); | ||||
if (oldValue != newValue) { | if (oldValue != newValue) { | ||||
@@ -238,9 +240,6 @@ void ParamWidget::resetAction() { | |||||
h->newValue = newValue; | h->newValue = newValue; | ||||
APP->history->push(h); | APP->history->push(h); | ||||
} | } | ||||
// Here's another way of doing it, but either works. | |||||
// paramQuantity->getParam()->reset(); | |||||
} | } | ||||
} | } | ||||
@@ -10,7 +10,7 @@ | |||||
#include <mutex> | #include <mutex> | ||||
#include <atomic> | #include <atomic> | ||||
#include <tuple> | #include <tuple> | ||||
#include <x86intrin.h> | |||||
#include <pmmintrin.h> | |||||
namespace rack { | namespace rack { | ||||