diff --git a/appveyor.yml b/appveyor.yml index dd40ecf5..4d1f1fab 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,8 +3,6 @@ image: Visual Studio 2017 clone_depth: 1 build_script: - ps: >- - Write-Output "#define VERSION_INFO `"$(git log -1 --date="format:%F %R" --format="%cd, %h")`"" > version.h - mkdir builds cd builds diff --git a/audio.cpp b/audio.cpp index aebdd88c..983d83bb 100644 --- a/audio.cpp +++ b/audio.cpp @@ -34,8 +34,6 @@ openal_buffer::openal_buffer( std::string const &Filename ) : if (sf == nullptr) throw std::runtime_error("sound: sf_open failed"); - sf_command(sf, SFC_SET_SCALE_FLOAT_INT_READ, NULL, SF_TRUE); - int16_t *fbuf = new int16_t[si.frames * si.channels]; if (sf_readf_short(sf, fbuf, si.frames) != si.frames) throw std::runtime_error("sound: incomplete file"); diff --git a/version.h b/version.h index 838514f0..0b25af63 100644 --- a/version.h +++ b/version.h @@ -1 +1 @@ -#define VERSION_INFO "M7 31.03.2018, based on tmj 07f1438" +#define VERSION_INFO "M7 1.04.2018, based on tmj 07f1438"