From a2f450fa7d928ce9c67fd1112c954272f5b204ab Mon Sep 17 00:00:00 2001 From: syuribox <33959988+syuribox@users.noreply.github.com> Date: Thu, 30 Nov 2023 16:13:26 +0900 Subject: [PATCH] fix card_base_red filename --- game_airis.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game_airis.js b/game_airis.js index df25198..d884da2 100644 --- a/game_airis.js +++ b/game_airis.js @@ -27,7 +27,7 @@ function preload() { img_temp[58] = loadImage('./img/058_clear_coin.png'); img_temp[60] = loadImage('./img/060_green_orge.png'); img_card[0] = loadImage('./img/card_base_green.png'); - img_card[1] = loadImage('./img/card_base_red'); + img_card[1] = loadImage('./img/card_base_red.png'); }; const card_base = [ //name, img, _hp, at, def,hit agi skill @@ -666,4 +666,4 @@ function text_futi(str, x, y, color_str, color_futi){ text(str, x+1, y+1); fill(color_str); text(str, x, y); -} \ No newline at end of file +}