summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2025-04-19 15:07:43 +0200
committer hap <happppp@users.noreply.github.com>2025-04-19 15:07:53 +0200
commit8aec17bcc6e1998e3834f170d4f6c3f0dc0a690d (patch)
treea26fccadbc21357a68f4cfe054843fbbd6445845 /src/emu/debug/debugcmd.cpp
parentb615f9c6f3dca84e8b893258a41fc9a17a5feec5 (diff)
debugcmd: correct trace file append
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index a8c74f471d1..e9ba3df68db 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -3522,7 +3522,7 @@ void debugger_commands::execute_trace(const std::vector<std::string_view> &param
// opening for append?
if ((filename[0] == '>') && (filename[1] == '>'))
{
- mode |= std::ios_base::ate;
+ mode |= std::ios_base::app;
filename = filename.substr(2);
}
else