From 9af08ff18de5403289f053d5da572309d2e5ef03 Mon Sep 17 00:00:00 2001 From: Marc Zinnschlag Date: Mon, 13 Feb 2012 18:34:21 +0100 Subject: [PATCH] store screenshots in user directory instead of local directory --- apps/openmw/engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/engine.cpp b/apps/openmw/engine.cpp index 9e04d1ad00..2e4beb65f3 100644 --- a/apps/openmw/engine.cpp +++ b/apps/openmw/engine.cpp @@ -470,7 +470,7 @@ void OMW::Engine::screenshot() // Count screenshots. int shotCount = 0; - const std::string screenshotPath = mCfgMgr.getLocalPath().string(); + const std::string screenshotPath = mCfgMgr.getUserPath().string(); // Find the first unused filename with a do-while std::ostringstream stream;