Merge branch 'master' of github.com:jokerx3/prp

This commit is contained in:
andreas
2014-11-04 11:31:43 +01:00
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -16,13 +16,13 @@ public class Config {
public static int singleTilePixels = gamePanelWidth/mapMaxTilesWidth; public static int singleTilePixels = gamePanelWidth/mapMaxTilesWidth;
public static void setGamePanelWidth(int width) { public static void setGamePanelWidth(int width) {
// Wir wollen hier keine Reste! // Wir wollen hier keine Reste!
while (width % mapMaxTilesHeight != 0) { while (width % mapMaxTilesWidth != 0) {
width--; width--;
} }
gamePanelWidth = width; gamePanelWidth = width;
updateSingleTilePixels(); updateSingleTilePixels();
} }
private static void updateSingleTilePixels() { private static void updateSingleTilePixels() {
singleTilePixels = gamePanelWidth/mapMaxTilesHeight; singleTilePixels = gamePanelWidth/mapMaxTilesWidth;
} }
} }
@@ -122,4 +122,7 @@ public class GameInterface extends JFrame {
public static JPanel getGamePanel() { public static JPanel getGamePanel() {
return gamePanel; return gamePanel;
} }
public static JPanel getStatusPanel() {
return statusPanel;
}
} }