mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-13 09:39:44 +00:00
Fix base_trace() to avoid double \n\n at the end of line
This commit is contained in:
parent
495a645917
commit
7d185d1543
@ -1,5 +1,5 @@
|
||||
// Aseprite Base Library
|
||||
// Copyright (c) 2001-2015 David Capello
|
||||
// Copyright (c) 2001-2016 David Capello
|
||||
//
|
||||
// This file is released under the terms of the MIT license.
|
||||
// Read LICENSE.txt for more information.
|
||||
@ -68,7 +68,7 @@ void base_trace(const char* msg, ...)
|
||||
|
||||
#else
|
||||
|
||||
std::cerr << buf << std::endl;
|
||||
std::cerr << buf << std::flush;
|
||||
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user