- Fixed: The new sound pausing on menu open interrupted Strife conversations.
- Did some very preliminary support for x64 compiling. - Now I see why makewad is using the __fastcall calling convention by default: Because the release zlib is built with it as well. - Fixed: Conversion from 'const char *' to 'char *' in DEM_SAVEGAME case in Net_DoCommand(). - Updated the project files for Visual C++ 2005. SVN r138 (trunk)
This commit is contained in:
parent
ade6319a3c
commit
cb18719d05
31 changed files with 10421 additions and 2632 deletions
|
|
@ -117,7 +117,7 @@ FLACSampleLoader::~FLACSampleLoader ()
|
|||
void FLACSampleLoader::CopyToSample (size_t ofs, FLAC__int32 **buffer, size_t ilen)
|
||||
{
|
||||
size_t i;
|
||||
size_t len = MIN (ilen, SLen);
|
||||
size_t len = MIN<size_t> (ilen, SLen);
|
||||
FLAC__int32 *buffer0 = buffer[0] + ofs;
|
||||
|
||||
if (SampleBits == 16)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue