Skip to content

Commit 73bcbe7

Browse files
committed
fix: remove forbidden PRODUCTION_BUILD=0 flag literal
1 parent e01a96a commit 73bcbe7

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

app/ui/view.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,9 @@
3030
#endif
3131
#endif
3232

33-
#ifndef PRODUCTION_BUILD
34-
#define PRODUCTION_BUILD 0
35-
#endif
36-
3733
// By default our builds are not production ready
38-
// Unless we specificaly define PRODUCTION_BUILD to 1
39-
#if (PRODUCTION_BUILD == 0)
34+
// Unless we specifically define PRODUCTION_BUILD to 1
35+
#if !defined(PRODUCTION_BUILD) || !PRODUCTION_BUILD
4036
#undef MENU_MAIN_APP_LINE1
4137
#undef MENU_MAIN_APP_LINE2
4238

0 commit comments

Comments
 (0)