Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified FishGame/bin/com/mypro/mainsurface/MainSurface.class
Binary file not shown.
4 changes: 2 additions & 2 deletions FishGame/src/com/mypro/mainsurface/MainSurface.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,6 @@ public void onDraw(Canvas canvas) {
int state = GamingInfo.getGamingInfo().getCurrentState();
Graphics2D g = ((JCanvas.JPaint) paint).getGraphics();

drawTitleBar(g);

if (state == GamingInfo.STATE_START_SCREEN) {
drawStartScreen(g);
} else if (state == GamingInfo.STATE_HELP_SCREEN) {
Expand All @@ -232,6 +230,8 @@ public void onDraw(Canvas canvas) {
}
}
}

drawTitleBar(g);
}

private synchronized void updatePicLayer(int mode,int layerId,Drawable draw){
Expand Down