We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e35ab commit 18255a1Copy full SHA for 18255a1
audio-spectrum/src/com/gtomee/audiospectrum/AudioSpectrum.java
@@ -16,9 +16,6 @@ public class AudioSpectrum extends Game {
16
public static final int WIDTH = 800;
17
public static final int HEIGHT = 480;
18
19
- private int width = WIDTH;
20
- private int height = HEIGHT;
21
-
22
String FILE = "data/justice-new-lands.mp3";
23
Mpg123Decoder decoder;
24
AudioDevice device;
@@ -43,8 +40,6 @@ public class AudioSpectrum extends Game {
43
40
public void create() {
44
41
// create the camera
45
42
camera = new OrthographicCamera();
46
- width = Gdx.graphics.getWidth();
47
- height = Gdx.graphics.getHeight();
48
49
camera.setToOrtho(false, WIDTH, HEIGHT);
50
// load texture
0 commit comments