Language…
15 users online:  AmperSam, crocodileman94, CroNo, Dark Prince, Green, Green Jerry, GRIMMKIN, JezJitzu, mtheordinarygamer, RPG Hacker, Rykon-V73, Skewer, SMW Magic, W3aper, Zavok - Guests: 271 - Bots: 459
Users: 64,795 (2,373 active)
Latest user: mathew

Getting rid of the file select screen completely

I think that the file select and player select look bad. So I installed 2 patches that get rid of them both. However, the file select screen still shows up for a split second. Is there anyway to get rid of it?

For the nuke_fileselect i used this code:
Code
header
lorom
org $9CB8
JSR MyMain
RTS

org $B091
MyMain:
LDA #$0A
STA $0100
JSR $9D38
LDY #$12
STY $12
RTS

And for the nuke_playerselect i used this patch.
Could i do a hex exit to remove the file select that shows up briefly? Any help is appreciated.
You can write just this:
Code
org $009CB8
	LDA #$0A
	STA $0100
	RTS

After, apply the other patch.
thank you so much! this fixed my problem perfectly <3