From 205d78d780eefd5b0126feec195ae815de455f6e Mon Sep 17 00:00:00 2001 From: JMC47 Date: Thu, 28 Jul 2022 16:27:15 -0400 Subject: [PATCH] BBA - Rename BBA Built In to BBA (HLE) All of our BBA options are technically built in, so it made the BBA Built In option kind of confusing as to what it did. So rename it to BBA HLE to make it more clear what it is doing and why it doesn't need a TAP. --- Source/Android/app/src/main/res/values/arrays.xml | 2 +- Source/Core/Core/HW/EXI/EXI_Device.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml index edce6273aa..b398bf805a 100644 --- a/Source/Android/app/src/main/res/values/arrays.xml +++ b/Source/Android/app/src/main/res/values/arrays.xml @@ -102,7 +102,7 @@ Nothing Dummy Broadband Adapter (XLink Kai) - Broadband Adapter (Built In) + Broadband Adapter (HLE) 255 diff --git a/Source/Core/Core/HW/EXI/EXI_Device.h b/Source/Core/Core/HW/EXI/EXI_Device.h index ce110a731e..7004d40ad1 100644 --- a/Source/Core/Core/HW/EXI/EXI_Device.h +++ b/Source/Core/Core/HW/EXI/EXI_Device.h @@ -96,7 +96,7 @@ struct fmt::formatter _trans("Advance Game Port"), _trans("Broadband Adapter (XLink Kai)"), _trans("Broadband Adapter (tapserver)"), - _trans("Broadband Adapter (Built In)"), + _trans("Broadband Adapter (HLE)"), }; constexpr formatter() : EnumFormatter(names) {}