浏览代码

[Issue #14] fixed: no sound effect of enemys physical attack (kinghtt)

Wei Mingzhi 10 年之前
父节点
当前提交
8950015bc0
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      fight.c

+ 6 - 2
fight.c

@@ -4718,8 +4718,12 @@ PAL_BattleEnemyPerformAction(
 
          g_Battle.rgPlayer[sTarget].iColorShift = 6;
       }
-
-      SOUND_Play(iSound);
+#ifdef PAL_WIN95
+      if (iSound != 0)
+#endif
+      {
+         SOUND_Play(iSound);
+      }
       PAL_BattleDelay(1, 0, FALSE);
 
       g_Battle.rgPlayer[sTarget].iColorShift = 0;