diff --git a/app/ui/view.h b/app/ui/view.h index 3e1dee6..9d97f57 100644 --- a/app/ui/view.h +++ b/app/ui/view.h @@ -29,9 +29,13 @@ #endif #endif +#ifndef PRODUCTION_BUILD +#define PRODUCTION_BUILD 0 +#endif + // By default our builds are not production ready // Unless we specificaly define PRODUCTION_BUILD to 1 -#if !defined(PRODUCTION_BUILD) || (PRODUCTION_BUILD == 0) +#if (PRODUCTION_BUILD == 0) #undef MENU_MAIN_APP_LINE1 #undef MENU_MAIN_APP_LINE2 diff --git a/include/zxversion.h b/include/zxversion.h index c735578..b94af4a 100644 --- a/include/zxversion.h +++ b/include/zxversion.h @@ -17,4 +17,4 @@ #define ZXLIB_MAJOR 26 #define ZXLIB_MINOR 0 -#define ZXLIB_PATCH 1 +#define ZXLIB_PATCH 2