Homebrew OPEN_AGB_FIRM discussion thread

ian0

Well-Known Member
Newcomer
Joined
Jul 5, 2021
Messages
56
Trophies
0
XP
266
Country
United States
does anyone know the location of all save files generated by agbfirm?
i'd like to delete or backup some of them

or a way to access it on pc?
 

Sono

cripple piss
Developer
Joined
Oct 16, 2015
Messages
2,832
Trophies
2
Location
home
XP
9,435
Country
Hungary
does this support GB/C? or only GBA

To add slightly more information:

Since the GBA on the 3DS behaves like it's from a DS Lite, and no DS has accessible CGB mode (it just hangs on regular GBA background as opposed to the special CGB graphics mode), it doesn't work on 3DS either as a result. Seems like the L/R buttons don't work either in this bugged mode, so it's safe to say that they most likely indeed fully removed it, not just disabled it.

GB(C) Virtual Console is emulated if you do an inject.
 
  • Like
Reactions: anotherthing

Raphletic

New Member
Newbie
Joined
Apr 8, 2024
Messages
1
Trophies
0
Age
33
XP
6
Country
United States
Is there a way to change the amount of titles you scroll through on open agb when pressing left or right on the d-pad? I feel like it skips too many titles at once. (About 25. I counted) I want to be able to lessen it to maybe skipping 10 titles at a time.
 

splaca

Active Member
Newcomer
Joined
Feb 19, 2024
Messages
42
Trophies
0
Age
33
XP
132
Country
Brazil
Is there a way to change the amount of titles you scroll through on open agb when pressing left or right on the d-pad? I feel like it skips too many titles at once. (About 25. I counted) I want to be able to lessen it to maybe skipping 10 titles at a time.

It's hard coded, the only way to change it would be to modify the SCREEN_ROWS macro in file
open_agb_firm/source/arm11/filebrowser.c and then recompile the project.

(You're almost right, it's set to 24 in the code.)




Edit: ok, the above is not ideal since SCREEN_ROWS also controls how many titles are displayed on screen. But one can just as easily create a new macro called ROWS_TO_SKIP (or something like that, the name does not interfere)

C:
#define ROWS_TO_SKIP     (12u)

(To me 12 felt good because then if you press RIGHT two times it will skip a whole screen.)

Then we change two lines; in the block

C:
            if(kDown & KEY_DRIGHT)
            {
                cursorPos += SCREEN_ROWS;
                if((u32)cursorPos > num) cursorPos = num - 1;
            }
            if(kDown & KEY_DLEFT)
            {
                cursorPos -= SCREEN_ROWS;
                if(cursorPos < -1) cursorPos = 0;
            }

we change to

C:
            if(kDown & KEY_DRIGHT)
            {
                cursorPos += ROWS_TO_SKIP;
                if((u32)cursorPos > num) cursorPos = num - 1;
            }
            if(kDown & KEY_DLEFT)
            {
                cursorPos -= ROWS_TO_SKIP;
                if(cursorPos < -1) cursorPos = 0;
            }

Then compile and the new version of the firm will be hard coded to skip 12 titles (or however many you decide to set in the #define) when we press RIGHT on the d-pad.





A more flexible solution is to add this number as a configurable entry in the config.ini file.
However, this requires more modifications and makes the config file for the new version incompatible with that of the official release.

I've done both versions described above (hard coded to skip 12 and configurable via config.ini); if anyone cares to check out I can upload either (or both) of them.
 
Last edited by splaca,
  • Like
Reactions: Tarmfot

Modular511

Well-Known Member
Member
Joined
Sep 12, 2009
Messages
354
Trophies
1
Age
33
Location
Canada
XP
1,150
Country
United States
OK SO - Where are my saves stored for open agb firm? sdcard/roms/gba is where the roms are but I dont have saves - but pokemon leaf green HAS a save? Still learning this lol moved over from gbarunner 2/3
 

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,200
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,209
Country
United Kingdom
OK SO - Where are my saves stored for open agb firm? sdcard/roms/gba is where the roms are but I dont have saves - but pokemon leaf green HAS a save? Still learning this lol moved over from gbarunner 2/3
Look 8 posts above your post the answer is there.
 

DSoryu

GBA/NDS Maniac
Member
Joined
May 5, 2010
Messages
2,375
Trophies
2
Location
In my house
XP
4,831
Country
Mexico
OK SO - Where are my saves stored for open agb firm? sdcard/roms/gba is where the roms are but I dont have saves - but pokemon leaf green HAS a save? Still learning this lol moved over from gbarunner 2/3

/3ds/open_agb_firm/saves/

This has been answered multiple times in the thread before...
 
  • Like
Reactions: Tarmfot

Maeson

Well-Known Member
Member
Joined
Apr 3, 2013
Messages
1,190
Trophies
2
XP
3,451
Country
Spain
Is there a way to have two copies of OPEN_AGB_FIRM that read different config files? I'd like to be able to choose between 1:1 scaling and another, larger one without having to constantly fiddle with the txt config files, but trying to edit the FIRM through hexediting in an attempt to do a quick and dirty change so it looks for "confi1.ini" for example makes the FIRM be seen as corrupted, I guess a checksum issue.
 

pistonfish

Well-Known Member
Newcomer
Joined
Apr 30, 2021
Messages
85
Trophies
0
Age
24
XP
658
Country
Germany
Is there a way to have two copies of OPEN_AGB_FIRM that read different config files? I'd like to be able to choose between 1:1 scaling and another, larger one without having to constantly fiddle with the txt config files, but trying to edit the FIRM through hexediting in an attempt to do a quick and dirty change so it looks for "confi1.ini" for example makes the FIRM be seen as corrupted, I guess a checksum issue.
It's open source. You probably just have to change a line and recompile it
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • K3Nv2 @ K3Nv2:
    I got compliments about my weight loss and thought well guess I can pig out again now I'm the piggy
  • BigOnYa @ BigOnYa:
    My biggest prob is alcohol, definitely is fattening
  • K3Nv2 @ K3Nv2:
    I know when to stop at least honestly don't get those that go and go with food
  • BigOnYa @ BigOnYa:
    Or those that order 2 big macs , large fry, ice cream sundie, then a diet coke
  • K3Nv2 @ K3Nv2:
    I might get downing two big macs but nah that's it
  • BigOnYa @ BigOnYa:
    Ok that will be $15.99, cash or charge?
  • K3Nv2 @ K3Nv2:
    My go to orders usually a mcdouble and a mcchicken and I'm happy rarely mess with fries
  • K3Nv2 @ K3Nv2:
    Pro tip ask for that clowns jizzmac sauce on your mcdouble
    +1
  • BigOnYa @ BigOnYa:
    Do they charge extra when you add sauce,etc? I know burger king used to not, but don't know nowadays
  • K3Nv2 @ K3Nv2:
    They may squrit it for free if you ask nice
    +1
  • K3Nv2 @ K3Nv2:
    Last time I got bk it was 35c per sauce fuck you king of my nutsack
    +1
  • K3Nv2 @ K3Nv2:
    I'll buy a bottle of baby rays BBQ for $2 and add it from home out of spite
    +1
  • BigOnYa @ BigOnYa:
    I like baby rays, my favorite is KC masterpiece tho. Figured all you could buy is that there.
  • K3Nv2 @ K3Nv2:
    The metro doesn't discriminate good sauce
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Baby Rays isn't that what killed the crocodile hunter?
  • Psionic Roshambo @ Psionic Roshambo:
    If only he had done an endorsement for them....
  • Psionic Roshambo @ Psionic Roshambo:
    Oy mate don't let a bad bbq sauce kill your party! Baby Rays are killing it!! The flavor hits you right in the chest!
    +1
  • Xdqwerty @ Xdqwerty:
    My phone only has 13% battery so i don't have much time left
  • Xdqwerty @ Xdqwerty:
    Now 12%
  • BigOnYa @ BigOnYa:
    Happy birthday, btw
  • Psionic Roshambo @ Psionic Roshambo:
    Time is running out for your phone!
  • Psionic Roshambo @ Psionic Roshambo:
    Sign up with Emperor Phone plan for unlimited power!!! And minutes!!!
  • AdenTheThird @ AdenTheThird:
    https://youtu.be/JmSqorj-EC0?si=vYqR8D7FZeO4N-TH
    At 1 AM, this video is the funniest thing in the world
    +1
    AdenTheThird @ AdenTheThird: https://youtu.be/JmSqorj-EC0?si=vYqR8D7FZeO4N-TH At 1 AM, this video is the funniest thing in... +1