summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/recorder.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp
index bebd3e19..022054cc 100644
--- a/src/gui/recorder.cpp
+++ b/src/gui/recorder.cpp
@@ -98,7 +98,8 @@ void Recorder::changeRecordingStatus(const std::string &msg)
* recorded.
*/
mChat->chatLog(_("Starting to record..."), BY_SERVER);
- std::string file = std::string(PHYSFS_getUserDir()) + "/.aethyra/" + msgCopy;
+ const std::string file =
+ std::string(PHYSFS_getUserDir()) + "/.tmw/" + msgCopy;
mStream.open(file.c_str(), std::ios_base::trunc);