Changeset 1c27783 in lost-perception
- Timestamp:
- Nov 1, 2018, 3:53:25 AM (6 years ago)
- Branches:
- master
- Children:
- c3b2f42
- Parents:
- 5db343b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r5db343b r1c27783 1 1 .DS_Store 2 2 *.class 3 err.txt 4 LostHavenRPG.jar -
main/LostHavenRPG.java
-
Property mode
changed from
100755
to100644
r5db343b r1c27783 48 48 49 49 public class LostHavenRPG implements KeyListener, MouseListener { 50 private static final boolean RUNNING_FROM_JAR = true;50 private static final boolean RUNNING_FROM_JAR = false; 51 51 GameState gameState; 52 52 AuxState auxState; … … 180 180 this.g = bufferStrategy.getDrawGraphics(); 181 181 this.refreshRate = device.getDisplayMode().getRefreshRate(); 182 Utils.init(gc, false);182 Utils.init(gc, RUNNING_FROM_JAR); 183 183 this.gameState = GameState.Main; 184 184 this.auxState = AuxState.None; … … 716 716 switch (this.gameState) { 717 717 case Main: { 718 //this.wndMain.draw(g);718 this.wndMain.draw(g); 719 719 break; 720 720 } -
Property mode
changed from
Note:
See TracChangeset
for help on using the changeset viewer.