aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/launcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 34c4ebf474..d3c42c63fb 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -450,7 +450,7 @@ void EditGameDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
// Write back changes made to config object
String newDomain(_domainWidget->getEditString());
if (newDomain != _domain) {
- if (newDomain.empty() || ConfMan.hasGameDomain(newDomain)) {
+ if (newDomain.empty() || ConfMan.hasGameDomain(newDomain) || newDomain == "scummvm") {
MessageDialog alert("This game ID is already taken. Please choose another one.");
alert.runModal();
return;