From 7e30da2687c5b731f3cb8841f9f8a1c25f87e66d Mon Sep 17 00:00:00 2001 From: cyn Date: Sun, 29 Sep 2024 15:06:50 -0700 Subject: [PATCH] fix indenting in hxp --- project.hxp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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