diff --git a/emscripten/deps.js b/emscripten/deps.js index 21110acdb0..ed8d82658d 100644 --- a/emscripten/deps.js +++ b/emscripten/deps.js @@ -1,4 +1,11 @@ - +/***************************************************************************** + * Copyright (c) 2014-2025 OpenRCT2 developers + * + * For a complete list of all authors, please refer to contributors.md + * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 + * + * OpenRCT2 is licensed under the GNU General Public License version 3. + *****************************************************************************/ var EmscriptenDeps = { ExportPersistantData: () => { diff --git a/src/openrct2-ui/windows/Options.cpp b/src/openrct2-ui/windows/Options.cpp index 0ca04608cc..f37760c56a 100644 --- a/src/openrct2-ui/windows/Options.cpp +++ b/src/openrct2-ui/windows/Options.cpp @@ -48,10 +48,10 @@ #ifdef __EMSCRIPTEN__ #include - extern "C" { - extern void ExportPersistantData(); - extern void ImportPersistantData(); - } +extern "C" { +extern void ExportPersistantData(); +extern void ImportPersistantData(); +} #endif using namespace OpenRCT2;