Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions source/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ void configInit(void)

void configExit(void)
{
if (g_bnConfig.config == NULL)
return;

version_t version;
config_t *config;
u32 flags;
Expand Down
1 change: 1 addition & 0 deletions source/firstLaunchMenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ void firstLaunch(void)
appInfoDisableAutoUpdate();
p_globalPath = bnConfig->config->binariesPath;
p_pluginPath = bnConfig->config->pluginPath;
bnConfig->config->version = CURRENT_CONFIG_VERSION;
again:
waitAllKeysReleased();
status = g_status = 0;
Expand Down
11 changes: 5 additions & 6 deletions source/json/LICENSE
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@

Copyright (C) 2012, 2013 James McLaughlin et al. All rights reserved.
Copyright (C) 2012-2021 the json-parser authors All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Expand All @@ -23,4 +23,3 @@
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

Loading