Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-02 | SAGA: Fix odd memcmp() conditions, as reported by clang | Filippos Karapetis | |
Thanks to LordHoto for pointing those out - they followed the incorrect paradigm of previous code | |||
2013-06-08 | SAGA: Add "fallthrough" comments to switch. CID 1003742, 1003743 | Torbjörn Andersson | |
I'm almost certain these are intentional fallthroughs. It makes sense to handle the little-endian cases like the big-endian ones, with the added FLAG_LITTLE_ENDIAN. | |||
2013-06-01 | SAGA: Add missing "break"s | Torbjörn Andersson | |
It seems pretty clear to me that these fallthroughs were not intentional, seeing how one of them could cause ITE to fall through to IHNM-specific code. CID 1003744, 1003745 | |||
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-05-01 | SAGA: Fix some non-initialized variables in the Music class - CID 1003131 | Filippos Karapetis | |
2013-04-28 | SAGA: Null terminate string. CID 1003869 | Eugene Sandulenko | |
2013-04-28 | SAGA: Fix potentially unitialized pointer. CID 1003186, CID 1003187, CID ↵ | Eugene Sandulenko | |
1003188, CID 1003189 | |||
2013-04-28 | SAGA: Null terminate string. CID 1003870 | Eugene Sandulenko | |
2013-04-28 | SAGA: Null terminate string. CID 1003868 | Eugene Sandulenko | |
2013-04-27 | SAGA: Fix memory leak in Mac version of IHNM | Torbjörn Andersson | |
CID 1004123. Unfortunately, I do not have this version of the game so I cannot verify that this fix is correct, but it should be. | |||
2013-01-09 | SAGA: Silence C++11 narrowing warnings. | Johannes Schickel | |
2013-01-06 | SAGA: Update to new IFFDecoder for PBM images | Tomas Jakobsson | |
2012-12-13 | Merge pull request #293 from clone2727/qtmidi | clone2727 | |
Add support for QuickTime Music playback | |||
2012-11-11 | SAGA: Add support for played time | Filippos Karapetis | |
2012-11-11 | SAGA: Fix bug #3564919 - "SAGA: IHNM Spanish: Spiritual Barometer doesn't ↵ | Filippos Karapetis | |
change" The Spanish version uses different colors for portrait backgrounds. Also, portrait colors are now set correctly when loading games directly from the launcher. | |||
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-12 | SAGA: Add support for IHNM Mac music | Matthew Hoops | |
2012-08-26 | Merge pull request #268 from clone2727/video-rewrite | Matthew Hoops | |
VideoDecoder upgrade & partial rewrite | |||
2012-08-20 | SAGA: Remove incorrect free() in loadShortenFromStream() | Filippos Karapetis | |
This removes a warning and fixes bug #3558052 - "SAGA: use-after-free warning" | |||
2012-08-16 | VIDEO: Remove setSystemPalette() | Matthew Hoops | |
2012-07-23 | VIDEO: Rewrite SmackerDecoder to use the new API | Matthew Hoops | |
2012-07-03 | SAGA: Slight cleanup in querySaveMetaInfos implementation. | Johannes Schickel | |
Saves are writable and deletable by default, there is no need to mark them explicitly as such. | |||
2012-06-20 | Merge pull request #246 from lordhoto/osystem-void-buffers | Johannes Schickel | |
OSYSTEM: Use void buffers for screen/overlay/mouse buffers and proper pitch values for overlay code | |||
2012-06-17 | SAGA: Workaround fix for IHNM pathfinding glitches. | D G Turner | |
This fixes bug #3360396 - "IHNM: Can't use right monitor with ellen". Have done a full playtest of IHNM to ensure this fixes the issue without any other regressions. Thanks to eriktorbjorn for creating this patch. | |||
2012-06-16 | SAGA: Get rid of casts on OSystem::copyRectToScreen calls. | Johannes Schickel | |
2012-05-20 | SAGA: Fix bug #3528338 - "ITE: Subtitles always shown in introduction" | Filippos Karapetis | |
2012-03-13 | JANITORIAL: Use appropriate type for loop counter. | Christoph Mallon | |
2012-03-13 | JANITORIAL: Remove unnecessary empty default constructors/destructors. | Christoph Mallon | |
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2012-02-15 | JANITORIAL: Fix whitespace in pointer template arg | Tarek Soliman | |
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-12-24 | SAGA: Rework the way audio is buffered | Matthew Hoops | |
The streams that are created are now used directly instead of SAGA creating its own RawStream after decoding it. In addition, this should fix ADPCM-compressed sounds on big endian systems (as the code was treating the result of readBuffer() to always be LE, whereas it's actual native endian). I've also clarified the bugfix to bug #1256701. It only applies to 16-bit PCM data and the size for other data is no longer truncated too ;) | |||
2011-12-24 | SAGA: Properly handle ITE Mac sound resources | Matthew Hoops | |
2011-11-21 | SAGA: Simply use a Graphics::Surface instead of a Saga::Surface. | Christoph Mallon | |
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-11-03 | SAGA: Fix warnings | Eugene Sandulenko | |
2011-11-03 | SAGA: Fix copy/paste error | Eugene Sandulenko | |
2011-10-29 | JANITORIAL: Remove unnecessary semicolons | Torbjörn Andersson | |
2011-10-24 | LAUNCHER: Add GUIO_NOASPECT to saga | Strangerke | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-10-04 | SAGA: Fixed script bug #3358007 - "IHNM: Freeze when exiting from the motor ↵ | Filippos Karapetis | |
room's right door" Thanks to digital for finding the actual script bug | |||
2011-08-30 | SAGA: properly remove the save reminder callback on engine exit | Filippos Karapetis | |
This fixes an error when exiting to the launcher and restarting a game | |||
2011-08-30 | SAGA: Slight cleanup | Filippos Karapetis | |
2011-08-13 | Merge pull request #63 from tsoliman/detection-tables | Filippos Karapetis | |
Some missing ADGF_CD and ADGF_UNSTABLE flags | |||
2011-08-07 | GRAPHICS: Simplify the interface of Graphics::loadThumbnail(). | Christoph Mallon | |
Now it returns the Surface, so the caller does not need to create one and pass it. | |||
2011-08-07 | ALL: Use Graphics::skipThumbnail() where appropriate. | Christoph Mallon | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | SAGA: Flag CD titles with ADGF_CD | Tarek Soliman | |