[Scummvm-git-logs] scummvm master -> 4430ae56b71a0f803ff328930ba7c099fce59fdc
lephilousophe
noreply at scummvm.org
Sun Feb 9 16:25:22 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
4430ae56b7 ANDROID: Make overlay icons visible above white screen
Commit: 4430ae56b71a0f803ff328930ba7c099fce59fdc
https://github.com/scummvm/scummvm/commit/4430ae56b71a0f803ff328930ba7c099fce59fdc
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-02-09T17:24:08+01:00
Commit Message:
ANDROID: Make overlay icons visible above white screen
This is needed for GLK games.
The rendering over black screen is kept the same by changing alpha and
color.
Changed paths:
dists/android/res/drawable/ic_action_gamepad.xml
dists/android/res/drawable/ic_action_keyboard.xml
dists/android/res/drawable/ic_action_menu.xml
dists/android/res/drawable/ic_action_mouse.xml
dists/android/res/drawable/ic_action_touchpad.xml
diff --git a/dists/android/res/drawable/ic_action_gamepad.xml b/dists/android/res/drawable/ic_action_gamepad.xml
index 392d5dee7d9..8f7fdfa7fb1 100644
--- a/dists/android/res/drawable/ic_action_gamepad.xml
+++ b/dists/android/res/drawable/ic_action_gamepad.xml
@@ -3,8 +3,8 @@
android:height="48dp"
android:viewportWidth="48"
android:viewportHeight="48"
- android:alpha="0.5">
+ android:alpha="0.65">
<path
- android:fillColor="#ffffff"
+ android:fillColor="#c4c4c4"
android:pathData="M42,12L6,12c-2.2,0 -4,1.8 -4,4v16c0,2.2 1.8,4 4,4h36c2.2,0 4,-1.8 4,-4L46,16c0,-2.2 -1.8,-4 -4,-4zM22,26L16,26v6L12,32v-6L6,26v-4h6L12,16h4v6h6v4zM31,30c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM39,24c-1.66,0 -3,-1.34 -3,-3S37.34,18 39,18s3,1.34 3,3 -1.34,3 -3,3z"/>
</vector>
diff --git a/dists/android/res/drawable/ic_action_keyboard.xml b/dists/android/res/drawable/ic_action_keyboard.xml
index 59bc2e92e5e..f82b9803f67 100644
--- a/dists/android/res/drawable/ic_action_keyboard.xml
+++ b/dists/android/res/drawable/ic_action_keyboard.xml
@@ -5,10 +5,8 @@
android:height="48dp"
android:viewportWidth="48"
android:viewportHeight="48"
- android:alpha="0.5">
+ android:alpha="0.65">
<path
- android:name="path"
- android:pathData="M 40 10 L 8 10 C 5.79 10 4.02 11.79 4.02 14 L 4 34 C 4 36.21 5.79 38 8 38 L 40 38 C 42.21 38 44 36.21 44 34 L 44 14 C 44 11.79 42.21 10 40 10 Z M 22 16 L 26 16 L 26 20 L 22 20 L 22 16 Z M 22 22 L 26 22 L 26 26 L 22 26 L 22 22 Z M 16 16 L 20 16 L 20 20 L 16 20 L 16 16 Z M 16 22 L 20 22 L 20 26 L 16 26 L 16 22 Z M 14 26 L 10 26 L 10 22 L 14 22 L 14 26 Z M 14 20 L 10 20 L 10 16 L 14 16 L 14 20 Z M 32 34 L 16 34 L 16 30 L 32 30 L 32 34 Z M 32 26 L 28 26 L 28 22 L 32 22 L 32 26 Z M 32 20 L 28 20 L 28 16 L 32 16 L 32 20 Z M 38 26 L 34 26 L 34 22 L 38 22 L 38 26 Z M 38 20 L 34 20 L 34 16 L 38 16 L 38 20 Z"
- android:fillColor="#ffffff"
- android:strokeWidth="1"/>
+ android:fillColor="#c4c4c4"
+ android:pathData="M 40 10 L 8 10 C 5.79 10 4.02 11.79 4.02 14 L 4 34 C 4 36.21 5.79 38 8 38 L 40 38 C 42.21 38 44 36.21 44 34 L 44 14 C 44 11.79 42.21 10 40 10 Z M 22 16 L 26 16 L 26 20 L 22 20 L 22 16 Z M 22 22 L 26 22 L 26 26 L 22 26 L 22 22 Z M 16 16 L 20 16 L 20 20 L 16 20 L 16 16 Z M 16 22 L 20 22 L 20 26 L 16 26 L 16 22 Z M 14 26 L 10 26 L 10 22 L 14 22 L 14 26 Z M 14 20 L 10 20 L 10 16 L 14 16 L 14 20 Z M 32 34 L 16 34 L 16 30 L 32 30 L 32 34 Z M 32 26 L 28 26 L 28 22 L 32 22 L 32 26 Z M 32 20 L 28 20 L 28 16 L 32 16 L 32 20 Z M 38 26 L 34 26 L 34 22 L 38 22 L 38 26 Z M 38 20 L 34 20 L 34 16 L 38 16 L 38 20 Z"/>
</vector>
diff --git a/dists/android/res/drawable/ic_action_menu.xml b/dists/android/res/drawable/ic_action_menu.xml
index 3bedcfbe73c..354c69b971f 100644
--- a/dists/android/res/drawable/ic_action_menu.xml
+++ b/dists/android/res/drawable/ic_action_menu.xml
@@ -5,10 +5,8 @@
android:height="48dp"
android:viewportWidth="48"
android:viewportHeight="48"
- android:alpha="0.5">
+ android:alpha="0.65">
<path
- android:name="path"
- android:pathData="M 6 36 L 42 36 L 42 32 L 6 32 L 6 36 Z M 6 26 L 42 26 L 42 22 L 6 22 L 6 26 Z M 6 12 L 6 16 L 42 16 L 42 12 L 6 12 Z"
- android:fillColor="#ffffff"
- android:strokeWidth="1"/>
+ android:fillColor="#c4c4c4"
+ android:pathData="M 6 36 L 42 36 L 42 32 L 6 32 L 6 36 Z M 6 26 L 42 26 L 42 22 L 6 22 L 6 26 Z M 6 12 L 6 16 L 42 16 L 42 12 L 6 12 Z"/>
</vector>
diff --git a/dists/android/res/drawable/ic_action_mouse.xml b/dists/android/res/drawable/ic_action_mouse.xml
index b9c57cc68d3..b94b7d7dc07 100644
--- a/dists/android/res/drawable/ic_action_mouse.xml
+++ b/dists/android/res/drawable/ic_action_mouse.xml
@@ -3,8 +3,8 @@
android:height="48dp"
android:viewportWidth="48"
android:viewportHeight="48"
- android:alpha="0.5">
+ android:alpha="0.65">
<path
- android:fillColor="#ffffff"
+ android:fillColor="#c4c4c4"
android:pathData="M26,2.14L26,18h14c0,-8.16 -6.1,-14.88 -14,-15.86zM8,30c0,8.84 7.16,16 16,16s16,-7.16 16,-16v-8L8,22v8zM22,2.14C14.1,3.12 8,9.84 8,18h14L22,2.14z"/>
</vector>
diff --git a/dists/android/res/drawable/ic_action_touchpad.xml b/dists/android/res/drawable/ic_action_touchpad.xml
index 3959ccb6f8e..8dd1988b3cc 100644
--- a/dists/android/res/drawable/ic_action_touchpad.xml
+++ b/dists/android/res/drawable/ic_action_touchpad.xml
@@ -5,13 +5,11 @@
android:height="48dp"
android:viewportWidth="48"
android:viewportHeight="48"
- android:alpha="0.5">
+ android:alpha="0.65">
<path
- android:fillColor="#ffffff"
- android:pathData="M37.78,29.5l-8.18,-4.08c-0.56,-0.28 -1.16,-0.42 -1.78,-0.42H26.0v-12.0C26.0,11.34 24.66,10.0 23.0,10.0S20.0,11.34 20.0,13.0v21.48L13.5,33.0c-0.66,-0.14 -1.36,0.06 -1.84,0.56L10.0,35.24l9.08,9.58C19.84,45.58 21.36,46.0 22.42,46.0h12.32c2.0,0.0 3.68,-1.46 3.96,-3.44l1.26,-8.92C40.2,31.94 39.32,30.28 37.78,29.5z"
- android:strokeWidth="1"/>
+ android:fillColor="#c4c4c4"
+ android:pathData="M37.78,29.5l-8.18,-4.08c-0.56,-0.28 -1.16,-0.42 -1.78,-0.42H26.0v-12.0C26.0,11.34 24.66,10.0 23.0,10.0S20.0,11.34 20.0,13.0v21.48L13.5,33.0c-0.66,-0.14 -1.36,0.06 -1.84,0.56L10.0,35.24l9.08,9.58C19.84,45.58 21.36,46.0 22.42,46.0h12.32c2.0,0.0 3.68,-1.46 3.96,-3.44l1.26,-8.92C40.2,31.94 39.32,30.28 37.78,29.5z"/>
<path
- android:fillColor="#ffffff"
- android:pathData="M40.26,7.74C37.38,4.34 31.2,2.0 24.0,2.0S10.62,4.34 7.74,7.74L4.0,4.0v10.0h10.0L9.86,9.86c2.0,-2.58 7.4,-4.86 14.14,-4.86s12.14,2.28 14.14,4.86L34.0,14.0h10.0V4.0L40.26,7.74z"
- android:strokeWidth="1"/>
+ android:fillColor="#c4c4c4"
+ android:pathData="M40.26,7.74C37.38,4.34 31.2,2.0 24.0,2.0S10.62,4.34 7.74,7.74L4.0,4.0v10.0h10.0L9.86,9.86c2.0,-2.58 7.4,-4.86 14.14,-4.86s12.14,2.28 14.14,4.86L34.0,14.0h10.0V4.0L40.26,7.74z"/>
</vector>
More information about the Scummvm-git-logs
mailing list