From 9317ad4b2336ce3aaf827a414b036fe41f2978ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 28 Dec 2023 21:08:43 +0100 Subject: [PATCH] Allow streaming .chd files --- Core/WebServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/WebServer.cpp b/Core/WebServer.cpp index a2192984c094..31bed62f26d8 100644 --- a/Core/WebServer.cpp +++ b/Core/WebServer.cpp @@ -113,7 +113,7 @@ static bool RegisterServer(int port) { bool RemoteISOFileSupported(const std::string &filename) { // Disc-like files. - if (endsWithNoCase(filename, ".cso") || endsWithNoCase(filename, ".iso")) { + if (endsWithNoCase(filename, ".cso") || endsWithNoCase(filename, ".iso") || endsWithNoCase(filename, ".chd")) { return true; } // May work - but won't have supporting files.