From 353435a9e45d24eda15401c8f1aaccda53daeeb7 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 11 Jun 2016 12:31:42 +0100 Subject: [PATCH] Disable extensions to avoid logging loading error LOOT doesn't bundle the extensions resources, because it doesn't use extensions, but this has resulted in errors being logged that aren't actually a problem. --- src/gui/loot_app.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/loot_app.cpp b/src/gui/loot_app.cpp index 07ac9c52..8e08564f 100644 --- a/src/gui/loot_app.cpp +++ b/src/gui/loot_app.cpp @@ -58,6 +58,7 @@ namespace loot { // Disable spell checking. command_line->AppendSwitch("--disable-spell-checking"); + command_line->AppendSwitch("--disable-extensions"); } }