comparison 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
comparison
equal deleted inserted replaced
394:b6b13f669174 395:a4e49a3d9948
117 if(threadRunning == false){ 117 if(threadRunning == false){
118 startThread(); 118 startThread();
119 } 119 }
120 } 120 }
121 121
122 void WriteFile::log(float* array, int length){ 122 void WriteFile::log(const float* array, int length){
123 for(int n = 0; n < length; n++){ 123 for(int n = 0; n < length; n++){
124 log(array[n]); 124 log(array[n]);
125 } 125 }
126 } 126 }
127 127