From 8a29f76a3317e2bdeedab0171f1917fe279875a0 Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Sat, 22 May 2021 01:02:14 +0200 Subject: [PATCH] Fix get_version() --- src/dev/device.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/dev/device.cpp b/src/dev/device.cpp index 6d1d449b..608cc4c6 100644 --- a/src/dev/device.cpp +++ b/src/dev/device.cpp @@ -19,11 +19,7 @@ const char* BaseDevice::get_model() const char* BaseDevice::get_version() { -#ifdef HASP_MODEL return (QUOTE(HASP_VER_MAJ) "." QUOTE(HASP_VER_MIN) "." QUOTE(HASP_VER_REV)); -#else - return PIOENV; -#endif } const char* BaseDevice::get_hostname()