From 16a8c4cb2582d55c68435ebab7077a381800ed5c Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Sat, 16 Oct 2021 00:14:26 +0600 Subject: [PATCH] Add more missing strings to Unix backend --- src/unix/unix.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/unix/unix.c b/src/unix/unix.c index 8db22f39a..0dc966802 100644 --- a/src/unix/unix.c +++ b/src/unix/unix.c @@ -249,6 +249,12 @@ wchar_t* plat_get_string(int i) return L"Make sure libpcap is installed and that you are on a libpcap-compatible network connection."; case IDS_2114: return L"Unable to initialize Ghostscript"; + case IDS_2063: + return L"Machine \"%hs\" is not available due to missing ROMs in the roms/machines directory. Switching to an available machine."; + case IDS_2064: + return L"Video card \"%hs\" is not available due to missing ROMs in the roms/video directory. Switching to an available video card."; + case IDS_2128: + return L"Hardware not available"; } return L""; }