From e41aa65374dea4f3f7f3b9e4e110756b1de1b757 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Sun, 8 Mar 2015 18:36:22 -0400 Subject: [PATCH] get rid of NOX() here --- src/osapi/osapi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osapi/osapi.cpp b/src/osapi/osapi.cpp index cfce2f9..9585187 100644 --- a/src/osapi/osapi.cpp +++ b/src/osapi/osapi.cpp @@ -193,7 +193,7 @@ void os_init(const char *wclass, const char *title, const char *app_name, const os_set_title( (app_name != NULL) ? app_name : title ); // do some first-run stuff if needed - if ( os_config_read_uint(NULL, NOX("StraightToSetup"), 1) == 1 ) { + if ( os_config_read_uint(NULL, "StraightToSetup", 1) == 1 ) { // set some sane config defaults os_init_registry_stuff(); @@ -230,7 +230,7 @@ void os_init(const char *wclass, const char *title, const char *app_name, const cf_create_directory(CF_TYPE_INTEL_ANIMS); // unset FirstRun flag - os_config_write_uint(NULL, NOX("StraightToSetup"), 0); + os_config_write_uint(NULL, "StraightToSetup", 0); } Os_inited = 1; -- 2.39.2