Skip to content

Commit

Permalink
ROM name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cacodemon345 committed Apr 26, 2024
1 parent 8871c97 commit 6e2f5ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/vid_bochs_vbe.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ bochs_vbe_init(const device_t *info)
bochs_vbe_t *bochs_vbe = malloc(sizeof(bochs_vbe_t));
memset(bochs_vbe, 0, sizeof(bochs_vbe_t));

rom_init(&bochs_vbe->bios_rom, "roms/video/bochs/bochs.bin", 0xc0000, 0x8000, 0x7fff, 0x2000, MEM_MAPPING_EXTERNAL);
rom_init(&bochs_vbe->bios_rom, "roms/video/bochs/VGABIOS-lgpl-latest.bin", 0xc0000, 0x8000, 0x7fff, 0x2000, MEM_MAPPING_EXTERNAL);

video_inform(VIDEO_FLAG_TYPE_SPECIAL, &timing_ps1_svga_isa);

Expand All @@ -402,7 +402,7 @@ bochs_vbe_init(const device_t *info)
static int
bochs_vbe_available(void)
{
return rom_present("roms/video/bochs/bochs.bin");
return rom_present("roms/video/bochs/VGABIOS-lgpl-latest.bin");
}

void
Expand Down

0 comments on commit 6e2f5ff

Please sign in to comment.