[Scummvm-git-logs] scummvm branch-2-7-0-android -> 5b76a3563e01cb162ddaaaf9d8e2ab03b985b436

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:
5b76a3563e ENGINES: Use proper domain when creating backend options widget


Commit: 5b76a3563e01cb162ddaaaf9d8e2ab03b985b436
    https://github.com/scummvm/scummvm/commit/5b76a3563e01cb162ddaaaf9d8e2ab03b985b436
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-03-05T10:50:55+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