Browse Source

AirArkanoid: Fix python3 on Windows (#155)

Co-authored-by: hedger <hedger@users.noreply.github.com>
WillyJL 1 year ago
parent
commit
cc9223968d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application.fam

+ 1 - 1
application.fam

@@ -12,7 +12,7 @@ App(
     fap_extbuild=(
     fap_extbuild=(
         ExtFile(
         ExtFile(
             path="${FAP_SRC_DIR}/assets",
             path="${FAP_SRC_DIR}/assets",
-            command="python3 ${FAP_SRC_DIR}/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
+            command="${PYTHON3} ${FAP_SRC_DIR}/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
         ),
         ),
     ),
     ),
 )
 )