diff --git a/core/hw/pvr/ta_ctx.cpp b/core/hw/pvr/ta_ctx.cpp index cee1c7835..12c237159 100644 --- a/core/hw/pvr/ta_ctx.cpp +++ b/core/hw/pvr/ta_ctx.cpp @@ -41,7 +41,7 @@ void SetCurrentTARC(u32 addr) bool TryDecodeTARC() { - verify((int)ta_ctx); + verify(ta_ctx != 0); if (vd_ctx == 0) { @@ -62,7 +62,7 @@ bool TryDecodeTARC() void VDecEnd() { - verify((int)vd_ctx); + verify(vd_ctx != 0); vd_ctx->rend = vd_rc; diff --git a/shell/android/AndroidManifest.xml b/shell/android/AndroidManifest.xml index 539c17e0f..10906caea 100644 --- a/shell/android/AndroidManifest.xml +++ b/shell/android/AndroidManifest.xml @@ -2,6 +2,13 @@ package="com.reicast.emulator" android:versionCode="7" android:versionName="r7" > + + + + + + \ No newline at end of file diff --git a/shell/android/res/layout/drawer_menu.xml b/shell/android/res/layout/drawer_menu.xml index 465ec919d..434057f7b 100644 --- a/shell/android/res/layout/drawer_menu.xml +++ b/shell/android/res/layout/drawer_menu.xml @@ -47,7 +47,7 @@ android:id="@+id/settings_menu" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginLeft="26dp" + android:layout_marginLeft="32dp" android:layout_marginTop="10dp" android:background="@drawable/game_selector" android:focusable="true" @@ -109,7 +109,7 @@ android:id="@+id/about_menu" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginLeft="26dp" + android:layout_marginLeft="32dp" android:layout_marginTop="10dp" android:background="@drawable/game_selector" android:focusable="true" @@ -170,7 +170,7 @@ android:id="@+id/cloud_menu" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginLeft="26dp" + android:layout_marginLeft="32dp" android:layout_marginTop="10dp" android:background="@drawable/game_selector" android:focusable="true" diff --git a/shell/android/res/layout/menu_popup_config.xml b/shell/android/res/layout/menu_popup_config.xml index 3669b4bf1..ef2b5b1de 100755 --- a/shell/android/res/layout/menu_popup_config.xml +++ b/shell/android/res/layout/menu_popup_config.xml @@ -2,22 +2,23 @@