Skip to content

Commit

Permalink
发现一个有趣的bug
Browse files Browse the repository at this point in the history
想想看为什么
  • Loading branch information
totooaoo34 committed Mar 6, 2018
1 parent 085625d commit 1be6932
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -74,7 +74,6 @@ public class FullscreenActivity extends Activity {
private int NewMagicListSize = 72;
protected int _pixiv;
private boolean ExitGame = false;
Runnable thread;
Thread game;

@Override
Expand All @@ -83,8 +82,9 @@ protected void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
// ȫ���ö�
prepare(0);
game = new Thread(thread);
prepare(0);   
Runnable thread;
game = new Thread(thread);//这里有一处bug,想想是为什么
thread = new GameThread();
game.start();
}
Expand Down

0 comments on commit 1be6932

Please sign in to comment.