Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-09 | COMMON: Fix custom NE resource type names | Matthew Hoops | |
2013-06-08 | COMMON: Add basic documentation for RDFT | Willem Jan Palenstijn | |
2013-06-08 | COMMON: Improve comment in CosineTable::CosineTable. | Johannes Schickel | |
This commit changes the comment to use the same variable names as we do in the code. Furthermore, it also makes the comment a bit easier to grasp. | |||
2013-06-08 | COMMON: Try to document the SineTable/CosineTable table entries. | Johannes Schickel | |
2013-06-08 | COMMON: Save memory by allocating only required entries in Cosine-/SineTable. | Johannes Schickel | |
The tables only contain (2^bitPrecision)/2 entries. The code allocated twice as many entries previously. | |||
2013-06-08 | COMMON: Fix regression in SineTable creation. | Johannes Schickel | |
This is a regression from f4ba8a6485b097a8ef1e2004d1af127243f379f1. The commit replaced the static cosine and sine tables with dynamically created ones. In the process of that a copy&paste error happened which made the sine table use the layout of the cosine table. This commit now changes the dynamically created sine tables to conform to the layout of the previous static tables. | |||
2013-06-06 | COMMON: Add depth/flat parameters to addSubDirectoryMatching. | Alyssa Milburn | |
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-04-19 | COMMON: Add ConfigFile::addSection function. | Alyssa Milburn | |
2013-04-16 | COMMON: Don't use parserError for non-parser errors | Willem Jan Palenstijn | |
2013-04-15 | COMMON: Remove useless member variable FFT:_permutation | Sven Hesse | |
2013-03-20 | COMMON: Fix assert condition in String::setChar() | Thierry Crozat | |
2013-02-24 | Merge pull request #309 from dreammaster/hopkins | Paul Gilbert | |
Hopkins FBI Pull Request | |||
2013-02-23 | ALL: Fix typo (existant->existent) | Willem Jan Palenstijn | |
2013-02-15 | Merge branch 'master' into hopkins | Dreammaster | |
2013-01-28 | Merge pull request #305 from giucam/bufferedseekable | Johannes Schickel | |
Make BufferedSeekableReadStream use the buffer with SEEK_SET and SEEK_END | |||
2013-01-28 | COMMON: Fix successive seeks in BufferedSeekableReadStream. | Johannes Schickel | |
This fixes the failing test case added in da8eeb9dbed2102764b3ca0697d6882bae0402cc. Thanks to wjp for his input on this. | |||
2013-01-26 | JANITORIAL: Use "End of anonymous namespace" as comment for anonymous ↵ | Johannes Schickel | |
namespaces. | |||
2013-01-26 | JANITORIAL: Enforce "} // End of namespace" with a single space after }. | Johannes Schickel | |
2013-01-26 | COMMON: Make BufferedSeekableReadStream use the buffer with SEEK_SET and ↵ | Giulio Camuffo | |
SEEK_END | |||
2013-01-26 | COMMON: Return NULL in wrapCompressedReadStream for compressed streams when ↵ | Johannes Schickel | |
ZLIB is disabled. | |||
2013-01-26 | Merge pull request #301 from lordhoto/c++11-playground | Johannes Schickel | |
RFC: Allow use of override and nullptr. Also allow C++11 compilation. | |||
2013-01-24 | JANITORIAL: Fix ){ -> ) { | Einar Johan Trøan Sømåen | |
2013-01-09 | COMMON: Add a header for C++11 keywords for pre-C++11 compilers. | Johannes Schickel | |
This currently adds defines for nullptr and override, so we can use them in pre-C++11 compilers, while taking advantage of them with C++11 compilers. | |||
2013-01-06 | COMMON: Add PackBitsReadStream to iff_container | Tomas Jakobsson | |
2012-12-14 | HOPKINS: Add support for BeOS full version | Strangerke | |
2012-12-13 | Merge pull request #293 from clone2727/qtmidi | clone2727 | |
Add support for QuickTime Music playback | |||
2012-12-13 | COMMON: Forbid symbols for the rest of is* from ctype.h. | Johannes Schickel | |
I also moved the isprint case to the correct position. This adds a FIXME to our lua code from sword25, which uses iscntrl directly. | |||
2012-12-13 | COMMON: Add wrapper for isprint. | Johannes Schickel | |
This is done in the spirit of 658080deeda79d20ea40643569fbcb072573e7cf. | |||
2012-12-13 | COMMON: Fix potential uninitialized memory usage | Matthew Hoops | |
2012-10-31 | Merge branch 'master' into hopkins | Paul Gilbert | |
2012-10-17 | HOPKINS: Add detection for OS/2 and Win95 full versions | Strangerke | |
2012-10-09 | COMMON: Properly handle error indicator in MemoryWriteStream. | Johannes Schickel | |
Thanks to waltervn for noticing that MemoryWriteStream::write doesn't handle setting the error indicator properly. | |||
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-09-09 | COMMON: Make QuickTimeParser::readSampleDesc take the desc size | Matthew Hoops | |
2012-09-05 | COMMON: Allow for parsing QuickTime MIDI files | Matthew Hoops | |
2012-09-05 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
2012-08-31 | ALL: Mark off some things as used by Pegasus | Matthew Hoops | |
2012-08-28 | Merge remote-tracking branch 'origin/master' into tony | Alyssa Milburn | |
Conflicts: common/coroutines.cpp common/coroutines.h devtools/create_project/msbuild.cpp devtools/create_project/visualstudio.cpp | |||
2012-08-26 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
Conflicts: AUTHORS devtools/credits.pl gui/credits.h | |||
2012-08-26 | Merge pull request #268 from clone2727/video-rewrite | Matthew Hoops | |
VideoDecoder upgrade & partial rewrite | |||
2012-08-26 | COMMON: Add MKTAG16 for 16-bit multi-character constants | Matthew Hoops | |
2012-08-25 | COMMON: Fix waiting for multiple coroutine events. | Alyssa Milburn | |
This fixes the bWaitAll case of waitForMultipleObjects, and also the resetting of events later in the function. | |||
2012-08-15 | COMMON: Remove fprintf/stderr usage from xmlparser. | Alyssa Milburn | |
2012-07-27 | VIDEO: Adapt QuickTimeDecoder to the AdvancedVideoDecoder API | Matthew Hoops | |
2012-07-18 | COMMON: Add an optional argument to wrapCompressedReadStream, to simplify ↵ | Einar Johan Trøan Sømåen | |
using streams that can't tell their size() | |||
2012-07-01 | Merge pull request #239 from bluegr/skipsavecompression | Filippos Karapetis | |
COMMON: Allow the savefile manager to create uncompressed saves | |||
2012-07-01 | COMMON: Expand a bit the KeyState documentation | Thierry Crozat | |
This follows a bug that was found in the Lure engine where keycode was used in a place where it should have used ascii. | |||
2012-06-25 | COMMON: Simplify the documentation in openForSaving() | Filippos Karapetis | |
The new more concise description is courtesy of wjp. | |||
2012-06-24 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |