Skip to content

Commit

Permalink
merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-becker committed Dec 6, 2020
1 parent 545aafd commit 2e41765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/de/jspll/data/objects/game/tasks/CommonTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* @version 1.0
*/
public class CommonTask implements Task {
private final Color maskColor = new Color(0, 0, 0, 172);
// headings
private final String goodHeading;
private final String badHeading;
Expand Down
4 changes: 2 additions & 2 deletions src/de/jspll/handlers/GraphicsHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public GraphicsHandler(String windowTitle, Dimension size, HandlerMode mode){
frame_graphics.setClip(0,0,size.width,size.height);
this.mode = mode;
switch (mode){
case DIALOG:
/* case DIALOG:
dialog = new Secondary_window(windowTitle,slate,size);
cameras[0] = new Camera(624,377,(int) size.getWidth(),(int) size.getHeight(),2);
break;
break;*/
case MAIN:
this.window = new de.jspll.graphics.Window(windowTitle,slate,size);
this.windowTitle = windowTitle;
Expand Down

0 comments on commit 2e41765

Please sign in to comment.