Skip to content

Commit b21af46

Browse files
committed
Merge branch 'develop' into unitTesting
2 parents 6cf259a + 9664b4a commit b21af46

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/com/redomar/game/Game.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Game extends Canvas implements Runnable {
2424

2525
// Setting the size and name of the frame/canvas
2626
private static final long serialVersionUID = 1L;
27-
private static final String game_Version = "v1.8.2 Alpha";
27+
private static final String game_Version = "v1.8.3 Alpha";
2828
private static final int WIDTH = 160;
2929
private static final int HEIGHT = (WIDTH / 3 * 2);
3030
private static final int SCALE = 3;
@@ -74,7 +74,7 @@ public class Game extends Canvas implements Runnable {
7474

7575
/**
7676
* @author Redomar
77-
* @version Alpha 1.8.2
77+
* @version Alpha 1.8.3
7878
*/
7979
public Game() {
8080
context = InputContext.getInstance();

test/com/redomar/game/audio/AudioEffectTest.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@
1212
*/
1313
public class AudioEffectTest {
1414

15-
@Test
16-
public void playSoundEffectAndSetVolume() {
17-
AudioHandler sound = new AudioHandler("/sfx/smallProjectile.wav");
18-
sound.setVolume(-15);
19-
sound.play();
20-
}
21-
2215
@Test
2316
public void sfxFileExists() throws Exception {
2417
File sfx = new File("res/sfx/smallProjectile.wav");

0 commit comments

Comments
 (0)