diff --git a/src/fractal.cpp b/src/fractal.cpp index 6c0679b..5f9d400 100644 --- a/src/fractal.cpp +++ b/src/fractal.cpp @@ -83,7 +83,7 @@ void frac::FractalLogic() { // std::cout << paramA << ": " << paramB << " :" << " dir: " << dir << "\n"; } -void frac::DrawFractal(cv::Mat &frame, bool neg) +void frac::DrawFractal(cv::Mat &frame, bool /*neg*/) { float x1=mod_x-1.0f*zoom_x; float x2=mod_x+1.0f*zoom_w; diff --git a/src/main_window.cpp b/src/main_window.cpp index ef166cb..e9d2ddb 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -25,7 +25,7 @@ void generate_map() { } } -void custom_filter(cv::Mat &frame) { +void custom_filter(cv::Mat &) { } @@ -86,7 +86,7 @@ void AC_MainWindow::createControls() { log_text->setGeometry(10, 250, 780,310); log_text->setReadOnly(true); - QString text = "Acid Cam v"; + QString text = "Acid Cam Filters v"; text += ac::version.c_str(); text += " loaded.\n"; log_text->setText(text); diff --git a/src/plugin.cpp b/src/plugin.cpp index aa48cf9..ee3391d 100644 --- a/src/plugin.cpp +++ b/src/plugin.cpp @@ -1,5 +1,5 @@ #include "plugin.h" -void ac::plugin(cv::Mat &frame) { +void ac::plugin(cv::Mat &/*frame*/) { }