mirror of
https://github.com/holub/mame
synced 2025-04-25 01:40:16 +03:00
debugcmd: correct trace file append
This commit is contained in:
parent
b615f9c6f3
commit
8aec17bcc6
@ -3522,7 +3522,7 @@ void debugger_commands::execute_trace(const std::vector<std::string_view> ¶m
|
||||
// opening for append?
|
||||
if ((filename[0] == '>') && (filename[1] == '>'))
|
||||
{
|
||||
mode |= std::ios_base::ate;
|
||||
mode |= std::ios_base::app;
|
||||
filename = filename.substr(2);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user