diff options
author | Max Horn | 2010-11-24 09:39:47 +0000 |
---|---|---|
committer | Max Horn | 2010-11-24 09:39:47 +0000 |
commit | fbd1ae7eb6ff09b62599721fa49d8d1ef18b488c (patch) | |
tree | a18efec315fedfef699e96aa4638f212ac57b0b7 /backends | |
parent | d93698fc1c8190fdc8b14a613c4455882ceca166 (diff) | |
download | scummvm-rg350-fbd1ae7eb6ff09b62599721fa49d8d1ef18b488c.tar.gz scummvm-rg350-fbd1ae7eb6ff09b62599721fa49d8d1ef18b488c.tar.bz2 scummvm-rg350-fbd1ae7eb6ff09b62599721fa49d8d1ef18b488c.zip |
LOG: Reset _startOfLine when opening a new log file
svn-id: r54452
Diffstat (limited to 'backends')
-rw-r--r-- | backends/log/log.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/log/log.cpp b/backends/log/log.cpp index e7fb924189..3ba1d67b16 100644 --- a/backends/log/log.cpp +++ b/backends/log/log.cpp @@ -52,6 +52,7 @@ void Log::open(Common::WriteStream *stream) { print(gScummVMFeatures); print("\n"); print("--- Log opened.\n"); + _startOfLine = true; } void Log::close() { |