Skip to content

Gameboy export doesn't work for single page roms #19

@EvilTrev

Description

@EvilTrev

The logic currently sorts roms based on an index that isn't present when there is only one rom page. This means it would fail to export Tetris for example. I made this quick fix to work around it:

def rom_sorter(e):
	if(e.endswith("rom")):
		return 0
	return int(e[3:])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions