
ft55555
New Members-
Content Count
26 -
Joined
-
Last visited
Community Reputation
4 NeutralAbout ft55555
-
Rank
Space Invader
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Controller spiltter possible?
ft55555 replied to Coleco's topic in AtGames Flashback and Portable Consoles
I bought this adapter to try out: https://www.amazon.com/dp/B005XGOPF2/ref=cm_sw_r_em_apa_i_IgJ7EbD0TP109 It works great, indicating all 9 pins are wired from end-to-end. I have both a joystick and a pair of paddles connected to the left port leaving the right port free for another pair of paddles. -
Controller spiltter possible?
ft55555 replied to Coleco's topic in AtGames Flashback and Portable Consoles
This might work: https://www.amazon.com/QVS-CC317Y-Serial-Splitter-Db-9/dp/B005XGOPF2/ref=mp_s_a_1_7?dchild=1&keywords=9+pin+splitter&qid=1589140393&sr=8-7 -
Galaga on Legends Flashback 2019
ft55555 replied to ft55555's topic in AtGames Flashback and Portable Consoles
Bummer. Thanks for the info! -
Has anybody tried doing the Galaga "no-fire" cheat on Legends Flashback 2019 (or 2018)? I spent 20+ minutes trying this, and the bees never ran out of missiles. I'm not sure if I just did it wrong or if the console has the fixed version of the Galaga ROM on it.
-
Battlezone and Star Castle are my favorites.
-
Af9g wont see SD card
ft55555 replied to davealan74's topic in AtGames Flashback and Portable Consoles
Then the console is defective. -
Af9g wont see SD card
ft55555 replied to davealan74's topic in AtGames Flashback and Portable Consoles
Just because the "SD Card" menu option is grayed out doesn't mean that the console can't read the SD card. You need to update the firmware in order to enable the menu option from the UI. The console software is designed to automatically read the SD card for firmware whether or not the menu option is enabled. -
Af9g wont see SD card
ft55555 replied to davealan74's topic in AtGames Flashback and Portable Consoles
Did you update the firmware? -
Atari Flashback X Deluxe Firmware Updates
ft55555 replied to Serpentor's topic in AtGames Flashback and Portable Consoles
You can run these lines, one at a time, from Windows Powershell: Get-ChildItem * | Rename-Item -NewName { $_.Name -replace ' ','_' } Get-ChildItem * | Rename-Item -NewName { $_.Name -replace '__','_' } Get-ChildItem * | Rename-Item -NewName { $_.Name -replace '_\.','.' } This will replace all spaces with underscores (_), remove any two consecutive underscores as well as underscores at the end of the file name. NOTE: Make sure change directory (CD) into the correct folder before you run these. You don't want to mistakenly run these in a system folder. 😁