diff options
| author | Bojidar Marinov | 2016-04-16 15:12:29 +0300 |
|---|---|---|
| committer | Bojidar Marinov | 2016-04-16 15:12:29 +0300 |
| commit | 7a18bb8ace4bc7a639a1db92826fa16097fda803 (patch) | |
| tree | 580b19f9d09d06c228dd5aac4af35d156348c165 /core/os/file_access.cpp | |
| parent | bf0f9141409fd5f754c2b4e8dea0e5ea6f156896 (diff) | |
| download | godot-7a18bb8ace4bc7a639a1db92826fa16097fda803.tar.gz godot-7a18bb8ace4bc7a639a1db92826fa16097fda803.tar.zst godot-7a18bb8ace4bc7a639a1db92826fa16097fda803.zip | |
Diffstat (limited to 'core/os/file_access.cpp')
| -rw-r--r-- | core/os/file_access.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/os/file_access.cpp b/core/os/file_access.cpp index 0846ef3eb..a3ee9395d 100644 --- a/core/os/file_access.cpp +++ b/core/os/file_access.cpp @@ -284,7 +284,7 @@ Vector<String> FileAccess::get_csv_line(String delim) const { String l; int qc=0; do { - l+=get_line(); + l+=get_line()+"\n"; qc=0; for(int i=0;i<l.length();i++) { @@ -295,6 +295,8 @@ Vector<String> FileAccess::get_csv_line(String delim) const { } while (qc%2); + l=l.substr(0, l.length()-1); + Vector<String> strings; bool in_quote=false; |
