Update driver recs for T21 and 710 (#171)

Signed-off-by: crueter <swurl@swurl.xyz>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/171
Co-authored-by: crueter <swurl@swurl.xyz>
Co-committed-by: crueter <swurl@swurl.xyz>
This commit is contained in:
crueter 2025-06-10 03:16:39 +00:00 committed by crueter
parent 96afab0299
commit 5b361338c1

View file

@ -65,11 +65,12 @@ class DriverFetcherFragment : Fragment() {
private val driverMap = listOf( private val driverMap = listOf(
IntRange(Integer.MIN_VALUE, 9) to "Unsupported", IntRange(Integer.MIN_VALUE, 9) to "Unsupported",
IntRange(10, 99) to "KIMCHI Latest", IntRange(10, 99) to "KIMCHI Latest", // Special case for Adreno Axx
IntRange(100, 599) to "Unsupported", IntRange(100, 599) to "Unsupported",
IntRange(600, 639) to "Mr. Purple EOL-24.3.4", IntRange(600, 639) to "Mr. Purple EOL-24.3.4",
IntRange(640, 699) to "Mr. Purple T19", IntRange(640, 699) to "Mr. Purple T19",
IntRange(700, 799) to "Mr. Purple T20", // TODO: Await T21 and update accordingly IntRange(700, 710) to "KIMCHI 25.2.0_r5",
IntRange(711, 799) to "Mr. Purple T21",
IntRange(800, 899) to "GameHub Adreno 8xx", IntRange(800, 899) to "GameHub Adreno 8xx",
IntRange(900, Int.MAX_VALUE) to "Unsupported", IntRange(900, Int.MAX_VALUE) to "Unsupported",
) )
@ -94,7 +95,6 @@ class DriverFetcherFragment : Fragment() {
try { try {
// special case for Axx GPUs (e.g. AYANEO Pocket S2) // special case for Axx GPUs (e.g. AYANEO Pocket S2)
// driverMap has specific ranges for this // driverMap has specific ranges for this
// needs to be fixed
if (model.startsWith("A")) { if (model.startsWith("A")) {
return model.substring(1).toInt() return model.substring(1).toInt()
} }