Skip to content

Commit 189c149

Browse files
committed
Fixed release version
Enable hardware acceleration Removed unused code
1 parent f4ce198 commit 189c149

2 files changed

Lines changed: 2 additions & 13 deletions

File tree

sys/android/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
package="com.tbd.UnNetHack"
55
android:versionCode="2"
6-
android:versionName="5.1.0_1"
6+
android:versionName="5.1.0-2"
77
android:installLocation="auto">
88
<uses-sdk
99
android:minSdkVersion="7"/>
@@ -14,6 +14,7 @@
1414
android:label="UnNetHack"
1515
android:icon="@drawable/icon"
1616
android:largeHeap="true"
17+
android:hardwareAccelerated="true"
1718
android:debuggable="false"
1819
android:theme="@android:style/Theme"
1920
android:allowBackup="true">

sys/android/src/com/tbd/UnNetHack/NHW_Message.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,6 @@ private int getIndex( int i ) {
7979
return i & (MaxLog - 1);
8080
}
8181

82-
// ____________________________________________________________________________________
83-
private int getOldestIndex() {
84-
if( mLogCount <= MaxLog )
85-
return 0;
86-
return getIndex(mLogCount + 1);
87-
}
88-
8982
// ____________________________________________________________________________________
9083
@Override
9184
public void printString( int attr, String str, int append, int color ) {
@@ -165,11 +158,6 @@ public void destroy() {
165158
mUI.hideInternal();
166159
}
167160

168-
public boolean isOverflowed()
169-
{
170-
return mUI.isMoreVisible();
171-
}
172-
173161
// ____________________________________________________________________________________
174162
public void showLog(boolean bBlocking) {
175163

0 commit comments

Comments
 (0)