diff core/WriteFile.cpp @ 395:a4e49a3d9948 prerelease

Updated WriteFile to be happy with const
author Giulio Moro <giuliomoro@yahoo.it>
date Tue, 14 Jun 2016 18:11:38 +0100
parents e4392164b458
children
line wrap: on
line diff
--- a/core/WriteFile.cpp	Tue Jun 14 17:55:30 2016 +0100
+++ b/core/WriteFile.cpp	Tue Jun 14 18:11:38 2016 +0100
@@ -119,7 +119,7 @@
 	}
 }
 
-void WriteFile::log(float* array, int length){
+void WriteFile::log(const float* array, int length){
 	for(int n = 0; n < length; n++){
 		log(array[n]);
 	}