Skip to content

Commit 1d7be8c

Browse files
authored
Merge pull request DonaldHakeII#15 from ktanzosh/ktanzosh
Updated GameView.java
2 parents 45d3c18 + 3bf0e2d commit 1d7be8c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,16 @@ protected void paintComponent(Graphics g) {
7575
// djh2-KEC110-21: changed from GREEN to RED
7676
// djh2-YCPlaptop: change from RED to YELLOW
7777

78-
g.setColor(Color.GREEN);
78+
g.setColor(Color.RED);
79+
=======
80+
81+
//g.setColor(Color.GREEN);
7982

8083

8184
// lbradley1: change from YELLOW to BLUE
8285
//setColor(Color.BLUE);
8386

87+
8488
Square square = model.getSquare();
8589

8690
g.fillRect((int) square.getX(), (int) square.getY(), (int) square.getWidth(), (int) square.getHeight());

0 commit comments

Comments
 (0)