aboutsummaryrefslogtreecommitdiff
path: root/examples/neon_scale.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/neon_scale.cpp')
-rw-r--r--examples/neon_scale.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/neon_scale.cpp b/examples/neon_scale.cpp
index 252bfc9ae7..b04d916aaf 100644
--- a/examples/neon_scale.cpp
+++ b/examples/neon_scale.cpp
@@ -33,7 +33,7 @@ using namespace utils;
class NEONScaleExample : public Example
{
public:
- void do_setup(int argc, char **argv) override
+ bool do_setup(int argc, char **argv) override
{
PPMLoader ppm;
@@ -72,6 +72,8 @@ public:
ppm.fill_image(src);
output_filename = std::string(argv[1]) + "_out.ppm";
}
+
+ return true;
}
void do_run() override
{