Skip to content

Commit f80198f

Browse files
committed
Rename Screen Filter setting to Screen Color Filter
1 parent 59424c5 commit f80198f

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

settings/arm9/source/language.inl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ STRING(DESCRIPTION_GBAR2_WRAMICACHE, "Boosts speed, but some games may crash.")
184184
STRING(DESCRIPTION_BIOSINTRO, "Select whether the Game Boy Advance splash screen is shown when launching a GameBoy Advance ROM.")
185185

186186
// Games/Apps settings
187-
STRING(TWL_SPEED_FOR_SCREEN_FILTERS, "TWL Speed for Screen Filters")
187+
STRING(TWL_SPEED_FOR_COLOR_FILTERS, "TWL Speed for Color Filters")
188188
STRING(ASPECTRATIO, "Screen Aspect Ratio")
189189
STRING(SD_ASPECTRATIO, "SD: Screen Aspect Ratio")
190190
STRING(GBABORDER, "GBA border")
@@ -249,7 +249,7 @@ STRING(NIGHTLY, "Nightly")
249249
STRING(SAVE_RELOCATION, "Save Relocation")
250250
STRING(SAVE_GAME_CARD, "Game Card")
251251

252-
STRING(DESCRIPTION_TWL_SPEED_FOR_SCREEN_FILTERS, "Speeds up screen filter and/or DS Phat color proccessing by setting the ARM9 CPU speed to 133mhz (TWL). Does not affect titles which blacklist TWL speed.")
252+
STRING(DESCRIPTION_TWL_SPEED_FOR_COLOR_FILTERS, "Speeds up color filter and/or DS Phat color proccessing by setting the ARM9 CPU speed to 133mhz (TWL). Does not affect titles which blacklist TWL speed.")
253253
STRING(DESCRIPTION_ASPECTRATIO, "Adjusts the top screen to be the original size or wider for DS games. Some games may not use this. Requires TWPatch to be used as well as external sysmodules enabled in Luma.")
254254
STRING(DESCRIPTION_GBABORDER, "Changes the border in GBA mode. Does not affect GBARunner2.")
255255
STRING(DESCRIPTION_GAMELOADER, "Select whether to use nds-bootstrap or the flashcard kernel to boot DS ROMs.")
@@ -285,7 +285,7 @@ STRING(TITLELANGUAGE, "Game Title Language")
285285
STRING(GAMEREGION, "Game Region")
286286
STRING(USEROMREGION, "Use ROM Region")
287287
STRING(MACROMODE, "Macro Mode")
288-
STRING(SCREEN_FILTER, "Screen Filter")
288+
STRING(SCREEN_COLOR_FILTER, "Screen Color Filter")
289289
STRING(LIMITEDMODE, "Limited Mode")
290290
STRING(SDREMOVALDETECTION, "SD removal detection")
291291
STRING(S1SDACCESS, "Slot-1 microSD access")
@@ -347,7 +347,7 @@ STRING(DESCRIPTION_TITLELANGUAGE_1, "Set Banner Title language for DS ROMs (exce
347347
STRING(DESCRIPTION_GAMEREGION, "Set region for DSi ROMs played using nds-bootstrap, and for recent homebrew.")
348348
STRING(DESCRIPTION_USEROMREGION, "Overrides the Game Region setting for region-locked ROMs.")
349349
STRING(DESCRIPTION_MACROMODE, "Turns off the top screen, so only the bottom screen is used. Useful for consoles with GameBoy Macro mod.")
350-
STRING(DESCRIPTION_SCREEN_FILTER, "Applies a color LUT to your screens. Does not affect all titles. Exit settings for the change to take effect.")
350+
STRING(DESCRIPTION_SCREEN_COLOR_FILTER, "Applies a color LUT to your screens. Does not affect all titles. Exit settings for the change to take effect.")
351351
STRING(DESCRIPTION_LIMITEDMODE, "Only use for testing. Runs TWiLight Menu++ as if your console is in a DSiWarehax environment. Reboot after disabling for changes to take effect.")
352352
STRING(DESCRIPTION_SDREMOVALDETECTION, "Enables/Disables SD removal detection. Disable it if an error message is shown instead of the ROM menu.")
353353
STRING(DESCRIPTION_S1SDACCESS_1, "Allows your flashcard to be used as a secondary device. Turn this off if IR functionality doesn't work or if the app crashes.")
@@ -390,7 +390,7 @@ STRING(FULL, "Full")
390390
// STRING(FLASHCARD_SELECT, "Select Flashcard")
391391
// STRING(LEFTRIGHT_FLASHCARD, "Left/Right: Select flashcard(s)")
392392

393-
STRING(SCREENFILTERSEL, "Screen Filter select")
393+
STRING(SCREEN_COLOR_FILTER_SELECT, "Screen Color Filter select")
394394

395395
// Theme select
396396
STRING(SKINSEL_DSI, "Theme select: DSi Menu")
@@ -404,7 +404,7 @@ STRING(BGSEL_UNLAUNCH, "Background select: Unlaunch")
404404

405405
STRING(FONTSEL, "Font select")
406406

407-
STRING(AB_SETSCREENFILTER, "\\A / \\B: Set screen filter")
407+
STRING(AB_SET_SCREEN_COLOR_FILTER, "\\A / \\B: Set screen color filter")
408408
STRING(AB_SETSKIN, "\\A / \\B: Set theme")
409409
STRING(AB_SETBORDER, "\\A / \\B: Set border")
410410
STRING(AB_SETBG, "\\A / \\B: Set background")

settings/arm9/source/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ std::optional<Option> opt_theme_select(void)
400400

401401
std::optional<Option> opt_lut_select(void)
402402
{
403-
return Option(STR_SCREENFILTERSEL, STR_AB_SETSCREENFILTER, Option::Str(&colorLutName), colorLutList);
403+
return Option(STR_SCREEN_COLOR_FILTER_SELECT, STR_AB_SET_SCREEN_COLOR_FILTER, Option::Str(&colorLutName), colorLutList);
404404
}
405405

406406
std::optional<Option> opt_gba_border_select(void)
@@ -1333,7 +1333,7 @@ int settingsMode(void)
13331333
}
13341334

13351335
if ((dsiFeatures() || sdFound()) && sys().dsiWramAccess() && !sys().dsiWramMirrored()) {
1336-
bootstrapPage.option(STR_TWL_SPEED_FOR_SCREEN_FILTERS, STR_DESCRIPTION_TWL_SPEED_FOR_SCREEN_FILTERS, Option::Bool(&ms().boostCpuForClut), {STR_ON, STR_OFF}, {true, false});
1336+
bootstrapPage.option(STR_TWL_SPEED_FOR_COLOR_FILTERS, STR_DESCRIPTION_TWL_SPEED_FOR_COLOR_FILTERS, Option::Bool(&ms().boostCpuForClut), {STR_ON, STR_OFF}, {true, false});
13371337
}
13381338

13391339
if (widescreenFound) {
@@ -1493,7 +1493,7 @@ int settingsMode(void)
14931493
{0});
14941494
}
14951495

1496-
miscPage.option(STR_SCREEN_FILTER, STR_DESCRIPTION_SCREEN_FILTER, Option::Nul(opt_lut_select), {STR_PRESS_A}, {0});
1496+
miscPage.option(STR_SCREEN_COLOR_FILTER, STR_DESCRIPTION_SCREEN_COLOR_FILTER, Option::Nul(opt_lut_select), {STR_PRESS_A}, {0});
14971497

14981498
if (sdFound() && isDSiMode()) {
14991499
if (!sys().arm7SCFGLocked()) {

settings/nitrofiles/languages/en/language.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ DESCRIPTION_GBAR2_WRAMICACHE=Boosts speed, but some games may crash.
176176
DESCRIPTION_BIOSINTRO=Select whether the Game Boy Advance splash screen is shown when launching a GameBoy Advance ROM.
177177

178178
; Games/Apps settings
179-
TWL_SPEED_FOR_SCREEN_FILTERS=TWL Speed for Screen Filters
179+
TWL_SPEED_FOR_COLOR_FILTERS=TWL Speed for Color Filters
180180
ASPECTRATIO=Screen Aspect Ratio
181181
SD_ASPECTRATIO=SD: Screen Aspect Ratio
182182
GBABORDER=GBA border
@@ -237,7 +237,7 @@ THRU_NDS_BS=Thru nds-bs
237237
RELEASE=Release
238238
NIGHTLY=Nightly
239239

240-
DESCRIPTION_TWL_SPEED_FOR_SCREEN_FILTERS=Speeds up screen filter and/or DS Phat color proccessing by setting the ARM9 CPU speed to 133mhz (TWL). Does not affect titles which blacklist TWL speed.
240+
DESCRIPTION_TWL_SPEED_FOR_COLOR_FILTERS=Speeds up color filter and/or DS Phat color proccessing by setting the ARM9 CPU speed to 133mhz (TWL). Does not affect titles which blacklist TWL speed.
241241
DESCRIPTION_ASPECTRATIO=Adjusts the top screen to be the original size or wider for DS games. Some games may not use this. Requires TWPatch to be used as well as external sysmodules enabled in Luma.
242242
DESCRIPTION_GBABORDER=Changes the border in GBA mode. Does not affect GBARunner2.
243243
DESCRIPTION_GAMELOADER=Select whether to use nds-bootstrap or the flashcard kernel to boot DS ROMs.
@@ -272,7 +272,7 @@ TITLELANGUAGE=Game Title Language
272272
GAMEREGION=Game Region
273273
USEROMREGION=Use ROM Region
274274
MACROMODE=Macro Mode
275-
SCREEN_FILTER=Screen Filter
275+
SCREEN_COLOR_FILTER=Screen Color Filter
276276
LIMITEDMODE=Limited Mode
277277
SDREMOVALDETECTION=SD removal detection
278278
S1SDACCESS=Slot-1 microSD access
@@ -331,7 +331,7 @@ DESCRIPTION_TITLELANGUAGE_1=Set Banner Title language for DS ROMs (except DSi ti
331331
DESCRIPTION_GAMEREGION=Set region for DSi ROMs played using nds-bootstrap, and for recent homebrew.
332332
DESCRIPTION_USEROMREGION=Overrides the Game Region setting for region-locked ROMs.
333333
DESCRIPTION_MACROMODE=Turns off the top screen, so only the bottom screen is used. Useful for consoles with GameBoy Macro mod.
334-
DESCRIPTION_SCREEN_FILTER=Applies a color LUT to your screens. Does not affect all titles. Exit settings for the change to take effect.
334+
DESCRIPTION_SCREEN_COLOR_FILTER=Applies a color LUT to your screens. Does not affect all titles. Exit settings for the change to take effect.
335335
DESCRIPTION_LIMITEDMODE=Only use for testing. Runs TWiLight Menu++ as if your console is in a DSiWarehax environment. Reboot after disabling for changes to take effect.
336336
DESCRIPTION_SDREMOVALDETECTION=Enables/Disables SD removal detection. Disable it if an error message is shown instead of the ROM menu.
337337
DESCRIPTION_S1SDACCESS_1=Allows your flashcard to be used as a secondary device. Turn this off if IR functionality doesn't work or if the app crashes.
@@ -368,7 +368,7 @@ DESCRIPTION_LAUNCHER_PATCHES=Changes whether Unlaunch will patch the DSi Menu. '
368368
369369
FULL=Full
370370
371-
SCREENFILTERSEL=Screen Filter select
371+
SCREEN_COLOR_FILTER_SELECT=Screen Color Filter select
372372
373373
; Theme select
374374
SKINSEL_DSI=Theme select: DSi Menu
@@ -382,7 +382,7 @@ BGSEL_UNLAUNCH=Background select: Unlaunch
382382
383383
FONTSEL=Font select
384384
385-
AB_SETSCREENFILTER=\A / \B: Set screen filter
385+
AB_SET_SCREEN_COLOR_FILTER=\A / \B: Set screen color filter
386386
AB_SETSKIN=\A / \B: Set theme
387387
AB_SETBORDER=\A / \B: Set border
388388
AB_SETBG=\A / \B: Set background

0 commit comments

Comments
 (0)