[Scummvm-git-logs] scummvm branch-2-7 -> 3e45004487310df7cd7426754029ef4d20cd5d9b

lephilousophe noreply at scummvm.org
Sun Mar 5 09:51:56 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3e45004487 ENGINES: Use proper domain when creating backend options widget


Commit: 3e45004487310df7cd7426754029ef4d20cd5d9b
    https://github.com/scummvm/scummvm/commit/3e45004487310df7cd7426754029ef4d20cd5d9b
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-03-05T10:51:35+01:00

Commit Message:
ENGINES: Use proper domain when creating backend options widget

_domain is empty as per comment above the function

Changed paths:
    engines/dialogs.cpp


diff --git a/engines/dialogs.cpp b/engines/dialogs.cpp
index 15f8a4eb393..f0efcd596ce 100644
--- a/engines/dialogs.cpp
+++ b/engines/dialogs.cpp
@@ -323,7 +323,7 @@ ConfigDialog::ConfigDialog() :
 	//
 	int backendTabId = tab->addTab(_("Backend"), "GlobalConfig_Backend", false);
 
-	_backendOptions = g_system->buildBackendOptionsWidget(tab, "GlobalConfig_Backend.Container", _domain);
+	_backendOptions = g_system->buildBackendOptionsWidget(tab, "GlobalConfig_Backend.Container", gameDomain);
 
 	if (_backendOptions) {
 		_backendOptions->setParentDialog(this);




More information about the Scummvm-git-logs mailing list