From a3db023f19815d07ce89321cb45d6ccbdc6afe1c Mon Sep 17 00:00:00 2001 From: Adrien Moulin Date: Sat, 21 May 2022 11:23:14 +0200 Subject: [PATCH] Fix building on macOS without Qt --- src/unix/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/unix.c b/src/unix/unix.c index a7ef1abe7..3ab5d46e6 100644 --- a/src/unix/unix.c +++ b/src/unix/unix.c @@ -806,7 +806,7 @@ plat_init_rom_paths() #else char default_rom_path[1024] = { '\0 '}; getDefaultROMPath(default_rom_path); - rom_path_add(default_rom_path); + rom_add_path(default_rom_path); #endif }