Skip to content

Commit

Permalink
Fix crash when opening Options & on exit in API 15.
Browse files Browse the repository at this point in the history
ADT 17 update: .classpath & BuildConfig.java
  • Loading branch information
pilot51 committed Jun 26, 2012
1 parent 65df1a2 commit a45615b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
6 changes: 6 additions & 0 deletions gen/com/pilot51/lander/BuildConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** Automatically generated file. DO NOT MODIFY */
package com.pilot51.lander;

public final class BuildConfig {
public final static boolean DEBUG = true;
}
2 changes: 1 addition & 1 deletion src/com/pilot51/lander/LanderView.java
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public void run() {
updateLander();
lastUpdate = now;
}
doDraw(c);
if (mRun) doDraw(c);
}
} finally {
// do this in a finally so that if an exception is thrown
Expand Down

0 comments on commit a45615b

Please sign in to comment.