What in the nine hells is "Title Override"???!!

BTR06

Member
Newcomer
Joined
Jan 21, 2022
Messages
7
Trophies
0
XP
33
Country
Costa Rica
News app and eShop are applets just like the Album, so there’s no point trying to override those. Title override only works on games. Don’t have a game? Go get one. Otherwise, you’re stuck with applet mode.
Thanks for the answer ! i solved it by installing Hbmenu !
Thnks a lot
 

binkinator

Garfield’s Fitness Coach
Member
GBAtemp Patron
Joined
Mar 29, 2021
Messages
6,511
Trophies
2
XP
6,157
Country
United States
for the override key combos:

the file you want to tweak is called override_config.ini. copy the example ini file under /atmosphere/config_templates/ to /atmosphere/config/

It’s pretty straightforward what you will find inside. If you muck it all up simply delete the file and grab another copy from the template directory.



(https://yls8.mtheall.com/ninupdates/titlelist.php?sys=hac&tid=010000000000100D. <—-Album Viewer App ID matches program_id_0 below.)

(override_key_0=!R means override the photo viewer app (album) UNLESS R is NOT pressed. A little reverse polish logic there. You probably want to override it when R is actually pressed so remove the “not” which is the ! symbol so now if anyone clicks the album without the R they get…the album.)


These are all the defaults. To change any of them uncomment the line by removing the initial semicolon and then make your change.

[hbl_config]
; Program Specific Config
; Up to 8 program-specific configurations can be set.
; These use `program_id_#`, `override_address_space_#`, and `override_key_#`
; where # is in range [0,7].
; program_id_0=010000000000100D
; override_address_space=39_bit
; override_key_0=!R

; Any Application Config
; Note that this will only apply to program IDs that
; are both applications and not specified above
; by a program specific config.
; override_any_app=true
; override_any_app_key=R
; override_any_app_address_space=39_bit
; path=atmosphere/hbl.nsp

[default_config]
; override_key=!L
; cheat_enable_key=!L

Here are the other keys you can use, courtesy of 0xNULL on page 15: A, B, X, Y, LS, RS, L, R, ZL, ZR, PLUS, MINUS, DLEFT, DUP, DRIGHT, DDOWN, SL, SR

edit:

just found the official key names in the atmosphere code so the button names are the same as Tesla Menu.

/* Parse key combination. */
if (strcasecmp(value, "A") == 0) {
cfg.key_combination = KEY_A;
} else if (strcasecmp(value, "B") == 0) {
cfg.key_combination = KEY_B;
} else if (strcasecmp(value, "X") == 0) {
cfg.key_combination = KEY_X;
} else if (strcasecmp(value, "Y") == 0) {
cfg.key_combination = KEY_Y;
} else if (strcasecmp(value, "LS") == 0) {
cfg.key_combination = KEY_LSTICK;
} else if (strcasecmp(value, "RS") == 0) {
cfg.key_combination = KEY_RSTICK;
} else if (strcasecmp(value, "L") == 0) {
cfg.key_combination = KEY_L;
} else if (strcasecmp(value, "R") == 0) {
cfg.key_combination = KEY_R;
} else if (strcasecmp(value, "ZL") == 0) {
cfg.key_combination = KEY_ZL;
} else if (strcasecmp(value, "ZR") == 0) {
cfg.key_combination = KEY_ZR;
} else if (strcasecmp(value, "PLUS") == 0) {
cfg.key_combination = KEY_PLUS;
} else if (strcasecmp(value, "MINUS") == 0) {
cfg.key_combination = KEY_MINUS;
} else if (strcasecmp(value, "DLEFT") == 0) {
cfg.key_combination = KEY_DLEFT;
} else if (strcasecmp(value, "DUP") == 0) {
cfg.key_combination = KEY_DUP;
} else if (strcasecmp(value, "DRIGHT") == 0) {
cfg.key_combination = KEY_DRIGHT;
} else if (strcasecmp(value, "DDOWN") == 0) {
cfg.key_combination = KEY_DDOWN;
} else if (strcasecmp(value, "SL") == 0) {
cfg.key_combination = KEY_SL;
} else if (strcasecmp(value, "SR") == 0) {
cfg.key_combination = KEY_SR;
} else {
cfg.key_combination = 0;
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: https://youtu.be/ALcfGYLXcjQ?si=ePdtM6b0p5sWaxof