diff --git sys/simsys_s2.cc sys/simsys_s2.cc index 51bacb9e0..c07373b5e 100644 --- sys/simsys_s2.cc +++ sys/simsys_s2.cc @@ -321,7 +321,7 @@ void dr_os_close() int dr_textur_resize(unsigned short** const textur, int w, int const h ) { // enforce multiple of 16 pixels, or there are likely mismatches -// w = (w + 15 ) & 0x7FF0; + w = (w + 15 ) & 0x7FF0; // w, h are the width in pixel, we calculate now the scree size int width = (w*x_scale)/32l;