[DEV] add return in Ios Log

This commit is contained in:
Edouard DUPIN 2014-04-19 00:15:36 +02:00
parent 31f670a70b
commit e730ba434e
2 changed files with 2 additions and 3 deletions

View File

@ -153,8 +153,7 @@ void etk::CCout::setOutputFile(bool _enable) {
etk::CCout::CCout(void) :
m_enableColor(true),
m_outputFile(NULL) {
#if ( defined(__TARGET_OS__Windows) \
|| defined(__TARGET_OS__IOs))
#if (defined(__TARGET_OS__Windows))
m_enableColor = false;
#endif
#if defined(__TARGET_OS__Android)

View File

@ -11,7 +11,7 @@
#include <etk/StreamIOs.h>
void iosNSLog(const char * _value) {
NSLog(@"%s", _value);
NSLog(@"\r%s", _value);
}