diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml
index 0a22eb8848..7cdce5339f 100644
--- a/src/android/app/src/main/res/values/strings.xml
+++ b/src/android/app/src/main/res/values/strings.xml
@@ -512,7 +512,7 @@
Emulate BGR565
Fixes problems with inverted colors in games or strange artifacts or strange shadows.
Enable Legacy Rescale Pass
- Fixes Luigi Mansion 3 artifact lines.
+ Enables a legacy handling for the rescale configuration pass for games by using a quick rescale path
Use asynchronous shaders
Compiles shaders asynchronously. This may reduce stutters but may also introduce glitches.
GPU Unswizzle Settings
diff --git a/src/common/settings.h b/src/common/settings.h
index 9749a8df40..24cecb9d6f 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -554,7 +554,7 @@ struct Values {
SwitchableSetting emulate_bgr565{linkage, false, "emulate_bgr565",
Category::RendererHacks};
- SwitchableSetting rescale_hack{linkage, false, "rescale_hack",
+ SwitchableSetting rescale_hack{linkage, true, "rescale_hack",
Category::RendererHacks};
SwitchableSetting use_asynchronous_shaders{linkage, false, "use_asynchronous_shaders",