Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-18 | SCUMM: Replace use of strdup with Common::String | Colin Snover | |
2016-11-19 | SCUMM: Fix some class initializations | Eugene Sandulenko | |
2016-05-21 | SCUMM: Reduce audio header dependencies | Ori Avtalion | |
2016-04-14 | JANITORIAL: Reduce audio header dependencies | Ori Avtalion | |
2016-01-07 | JANITORIAL: Fix clang printf warnings | Ori Avtalion | |
2015-02-03 | SCUMM: Adapt wording for the fix in commit f1c64c2afe | Filippos Karapetis | |
2015-02-03 | SCUMM: Fix handling of string resources in smash player for Steam mac games | Thierry Crozat | |
The Dig Steam/mac uses LF instead of CRLF for end of line. This fixes display of subtitles in that version. This also fixes the crash described in bug #6796. | |||
2014-08-03 | Fix non-MSVC build | wonst719 | |
2014-07-24 | SCUMM: Refine SMUSH Korean text shadow rendering to match the original ↵ | wonst719 | |
version as close as possible | |||
2014-03-06 | SCUMM: Manually specify function alignment in ARM assembly. | Johannes Schickel | |
2014-02-18 | SCUMM: Make GPL headers consistent in themselves. | Johannes Schickel | |
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. | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. | |||
2011-10-18 | BADA: Misc changes merged from appstore release | Chris Warren-Smith | |
2011-08-22 | SCUMM: Revert "Avoid calling malloc with new_size=0" | Willem Jan Palenstijn | |
This reverts commit d6f7e5933657e2e6fcbd1accf9f8a4b77454daec, and marks the issue with a FIXME. The problem is that it not only skips the malloc, but also the other code in that block. | |||
2011-08-21 | BADA: Avoid calling malloc with new_size=0 | Chris Warren-Smith | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-28 | JANITORIAL: Format forward declarations to follow convention | Ori Avtalion | |
2011-04-23 | ASM: Defines do not get mangled | dhewg | |
2011-04-13 | SCUMM: Resolve some code duplication | Max Horn | |
2011-04-12 | COMMON: Replace MKID_BE by MKTAG | Max Horn | |
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro. | |||
2011-02-14 | SCUMM: Adapt to setPalette RGBA->RGB change. | Johannes Schickel | |
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-01-30 | SCUMM: Fix Valgrind mismatched delete errors in SMUSH channel base class. | David Turner | |
This was due to the SMUSH channel base class using new/delete to manage buffer, but the imuse_channel and saud_channel classes which subclass and override this using malloc/free. The more C++ solution of moving all to new/delete was tried, but the buffer is passed into a MemoryReadStream and free()'d there, so all classes have been moved to malloc/free instead. This is not a critical problem as the buffers are byte primitive type anyway. svn-id: r55660 | |||
2010-10-18 | SCUMM: Fix out of bound access (discovered by Code Analysis in MS VS2010; ↵ | Max Horn | |
thanks to aquadran for helping verify the fix) svn-id: r53575 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-03-22 | Patch #2973290: Semicolon cleanup | Max Horn | |
svn-id: r48359 | |||
2010-03-18 | Switch from Common::tag2string(foo).c_str() to tag2str(foo) | Max Horn | |
svn-id: r48276 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-19 | Move raw audio flags from sound/mixer.h to sound/raw.h | Max Horn | |
svn-id: r47395 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-16 | Switch most AudioStream factories to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47334 | |||
2010-01-08 | Switch SCUMM from AppendableAudioStream to QueuingAudioStream | Max Horn | |
svn-id: r47183 | |||
2010-01-03 | Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is null | Torbjörn Andersson | |
before freeing it, which isn't necessary. svn-id: r46941 | |||
2009-10-08 | Change doxygen inline comments from "//!" to "///" as proposed on -devel | Max Horn | |
svn-id: r44802 | |||
2009-09-23 | ops, remove some ancient change | Paweł Kołodziejski | |
svn-id: r44268 | |||
2009-09-23 | this should fix bug #2820389 | Paweł Kołodziejski | |
svn-id: r44267 | |||
2009-09-11 | Remove excess spaces. | Travis Howell | |
svn-id: r44029 | |||
2009-09-06 | Minor constness fixes | Bertrand Augereau | |
svn-id: r43974 | |||
2009-07-03 | Added more GCC_PRINTF attributes, and fixed resulting warnings in format strings | Max Horn | |
svn-id: r42054 | |||
2009-05-31 | The error() and warning() functions add ! and newline automatically. (I didn't | Torbjörn Andersson | |
look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061 | |||
2009-05-11 | Silenced warning. | Torbjörn Andersson | |
svn-id: r40464 | |||
2009-05-11 | Fix bug #2678272: "FT: Russian version crashes on windows and psp" | Eugene Sandulenko | |
svn-id: r40461 | |||
2009-03-20 | SCUMM: Split intern.h into multiple headers | Max Horn | |
svn-id: r39567 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 |