summaryrefslogtreecommitdiff
path: root/src/quicktune.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktune.h')
-rw-r--r--src/quicktune.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/quicktune.h b/src/quicktune.h
index 1659e09f1..1943d19c2 100644
--- a/src/quicktune.h
+++ b/src/quicktune.h
@@ -58,7 +58,7 @@ enum QuicktuneValueType{
};
struct QuicktuneValue
{
- QuicktuneValueType type;
+ QuicktuneValueType type = QVT_NONE;
union{
struct{
float current;
@@ -66,12 +66,10 @@ struct QuicktuneValue
float max;
} value_QVT_FLOAT;
};
- bool modified;
+ bool modified = false;
+
+ QuicktuneValue() = default;
- QuicktuneValue():
- type(QVT_NONE),
- modified(false)
- {}
std::string getString();
void relativeAdd(float amount);
};