From 1e8888b2a412b8e1853df4ef5a12cdf33913a23f Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 23 Aug 2016 17:29:16 +0600 Subject: [PATCH 1/2] [skip ci] Fix build status readme link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb732d80..f19b1b83 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ==== Xash3D Android ==== -[![Build Status](https://travis-ci.org/SDLash3D/xash3d-android-project.svg)](https://travis-ci.org/SDLash3D/xash3d-android-project) +[![Build Status](https://travis-ci.org/FWGS/xash3d-android-project.svg)](https://travis-ci.org/FWGS/xash3d-android-project) ### Users #### Installation guide 0. Download the APK and extras.7z from Github Releases. https://github.com/SDLash3D/xash3d-android-project/releases/latest From 6e3365a412982e266c1fa64178072e8f2ff780dd Mon Sep 17 00:00:00 2001 From: Alexey Date: Tue, 23 Aug 2016 14:32:43 +0300 Subject: [PATCH 2/2] Fix pixelformat bit sizes (#111) --- src/in/celest/xash3d/LauncherActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/in/celest/xash3d/LauncherActivity.java b/src/in/celest/xash3d/LauncherActivity.java index dd1a6093..0f7214b0 100644 --- a/src/in/celest/xash3d/LauncherActivity.java +++ b/src/in/celest/xash3d/LauncherActivity.java @@ -127,8 +127,8 @@ public class LauncherActivity extends Activity { "32 bit (RGBA8888)", "24 bit (RGB888)", "16 bit (RGB565)", - "15 bit (RGBA5551)", - "12 bit (RGBA4444)", + "16 bit (RGBA5551)", + "16 bit (RGBA4444)", "8 bit (RGB332)" }; ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_spinner_item, list);