Skip to content

Commit

Permalink
Added new icons by NathanX, fixed one mistranslation in the Chinese l…
Browse files Browse the repository at this point in the history
…ocalization, started work on the hovercar
  • Loading branch information
zhuowei committed Mar 3, 2013
1 parent 1d9e3ce commit 775e52e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 1 deletion.
Binary file modified Minecraft PE launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Minecraft PE launcher.xcf
Binary file not shown.
Binary file modified res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-ldpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="app_name">MCPELauncher</string>
<string name="pref_ctrl_touchscreen">使用触摸屏</string>
<string name="pref_ctrl_touchscreen_summary">如果你用的是Xperia Play,请勾上此处</string>
<string name="pref_ctrl_touchscreen_summary">如果你用的不是Xperia Play,请勾上此处</string>
<string name="pref_mp_username">多人游戏用户名</string>
<string name="pref_mp_username_summary">填你的名字,嗯</string>
<string name="pref_texture_pack">材质包</string>
Expand Down
8 changes: 8 additions & 0 deletions src/com/mojang/minecraftpe/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ public class MainActivity extends NativeActivity

public boolean requiresGuiBlocksPatch = false;

private HoverCar hoverCar = null;

/** Called when the activity is first created. */

@Override
Expand Down Expand Up @@ -168,6 +170,7 @@ public void onCreate(Bundle savedInstanceState) {
}
//setContentView(R.layout.main);
System.gc();
setupHoverCar();
}

@Override
Expand Down Expand Up @@ -626,4 +629,9 @@ public boolean doesRequireGuiBlocksPatch() {
return false;
}

protected void setupHoverCar() {
hoverCar = new HoverCar(this);
hoverCar.show();
}

}

0 comments on commit 775e52e

Please sign in to comment.