diff --git a/project.hxp b/project.hxp index 8acf2192ff2..019f9d44177 100644 --- a/project.hxp +++ b/project.hxp @@ -245,7 +245,7 @@ class Project extends HXProject { configureHaxelibs(); configureAssets(); configureIcons(); - configureAL(); + configureAL(); } /** @@ -706,14 +706,14 @@ class Project extends HXProject { addIcon("art/iconOG.png"); } - /** - * For desktop platforms, copy the OpenALSoft config file into the build to improve audio quality. - */ - function configureAL() { - if (isDesktop()) { - addAsset("alsoft.txt", 'plugins/alsoft.${isWindows() ? "ini" : "conf"}', "default", false); - } - } + /** + * For desktop platforms, copy the OpenALSoft config file into the build to improve audio quality. + */ + function configureAL() { + if (isDesktop()) { + addAsset("alsoft.txt", 'plugins/alsoft.${isWindows() ? "ini" : "conf"}', "default", false); + } + } // // HELPER FUNCTIONS