From cc807465f88a272d6e61a3c41c5f4e7277c5ee2f Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 29 Dec 2014 22:58:27 +0100 Subject: [PATCH] [DEBUG] coorection of the read all file text --- etk/os/FSNode.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/etk/os/FSNode.cpp b/etk/os/FSNode.cpp index fe77451..50367eb 100644 --- a/etk/os/FSNode.cpp +++ b/etk/os/FSNode.cpp @@ -2029,6 +2029,7 @@ std::string etk::FSNodeReadAllData(const std::string& _path) { std::string tmp; while (node.fileGets(tmp) == true) { output += tmp; + output += "\n"; } output += tmp; node.fileClose();