Skip to content

Commit

Permalink
Fix: Fix some issues with output token funkeyos (emmercm#803)
Browse files Browse the repository at this point in the history
Co-authored-by: Julia Mono Brunenberg <[email protected]>
  • Loading branch information
juliadin and Julia Mono Brunenberg committed Nov 7, 2023
1 parent c344ed4 commit 138008c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/argumentsParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ Advanced usage:
{batocera} The ROM's emulator-specific /roms/* directory for Batocera (e.g. "gb")
{jelos} The ROM's emulator-specific /roms/* directory for JELOS (e.g. "gb")
{funkeyos} The ROM's emulator-specific /Roms* directory for FunKey OS (e.g. "Game Boy")
{twmenu} The ROM's emulator-specific /roms/* directory for FunKey OS (e.g. "gb")
{funkeyos} The ROM's emulator-specific /* directory for FunKey OS (e.g. "Game Boy")
Example use cases:
Expand Down
1 change: 0 additions & 1 deletion src/types/gameConsole.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,6 @@ export default class GameConsole {
onion: 'NEOGEO',
batocera: 'neogeo',
jelos: 'neogeo',
funkeyos: 'Neo Geo Pocket',
}),
new GameConsole(/Neo ?Geo CD/i, [/* '.bin', '.cue' */], {
onion: 'NEOCD',
Expand Down
2 changes: 1 addition & 1 deletion test/outputFactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ describe('token replacement', () => {
])(
'should throw on {funkeyos} for unknown extension: %s',
async (outputRomFilename) => {
const options = new Options({ commands: ['copy'], output: 'roms/{funkeyos}' });
const options = new Options({ commands: ['copy'], output: '{funkeyos}' });

const rom = new ROM({ name: outputRomFilename, size: 0, crc: '' });

Expand Down

0 comments on commit 138008c

Please sign in to comment.