From 898650a515af32fe4fdf8e26753c13ee3568ca27 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Thu, 5 Dec 2024 21:22:37 -0500 Subject: [PATCH] Fix rom path for Grid 1520 --- src/machine/m_at_grid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/m_at_grid.c b/src/machine/m_at_grid.c index 54d9a6f2a..521641c39 100644 --- a/src/machine/m_at_grid.c +++ b/src/machine/m_at_grid.c @@ -338,7 +338,7 @@ const device_t grid_device = { int machine_at_grid1520_init(const machine_t *model) { int ret = 0; - ret = bios_load_linear("roms/machines/grid/grid1520_891025.rom", + ret = bios_load_linear("roms/machines/grid1520/grid1520_891025.rom", 0x000f8000, 0x8000, 0); if (bios_only || !ret) return ret;