aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-02COMMON: Cleanup BitStreamMatthew Hoops
Fix mismatched new[]/free and restored a missing statement
2011-07-02VIDEO: Fix mismatched new[]/freeMatthew Hoops
2011-07-02VIDEO: Cleanup Bink a bitMatthew Hoops
- Fix playing videos back-to-back - Silence a cast warning
2011-07-02VIDEO: Fix Bink RDFT stereoMatthew Hoops
Thanks to DrMcCoy
2011-07-02SCUMM: Add support for Bink videoMatthew Hoops
2011-07-02VIDEO: Remove Bink header check from SmackerMatthew Hoops
2011-07-02VIDEO: Add Bink video decoderMatthew Hoops
Based on eos' code which is in turn based on FFmpeg's code
2011-07-02COMMON: Add DCT math codeMatthew Hoops
Based on eos' code which is based on FFmpeg's code
2011-07-02COMMON: Add RDFT math codeMatthew Hoops
Based on eos' code which is based on FFmpeg's code
2011-07-02COMMON: Add an FFT math handlerMatthew Hoops
Based on eos' code which is based on FFmpeg's code
2011-07-02COMMON: Add a Huffman bitstream decoderMatthew Hoops
Based on eos' code
2011-07-02COMMON: Add some simple math utilitiesMatthew Hoops
Based on eos' code
2011-07-02COMMON: Add a BitStream classMatthew Hoops
Based on eos' BitStream
2011-07-02SCUMM: Don't have MoviePlayer inherit from SmackerDecoderMatthew Hoops
2011-07-02SCUMM: Remove backslashes from Mac file names tooMatthew Hoops
Fixes Smacker videos in Blue's Birthday
2011-07-02SCUMM: Fix Blue's Birthday MacintoshMatthew Hoops
2011-07-02TSAGE: Remove outdated extra channel variablePaul Gilbert
2011-07-02TSAGE: Linked in the (in progress) SoundBlaster Fx classPaul Gilbert
2011-07-02TSAGE: Fixed problem with saving double valuesPaul Gilbert
2011-07-02TSAGE: Beginnings of SoundBlaster sound driverPaul Gilbert
2011-07-02MOHAWK: Don't allocate zero-size array.Alyssa Milburn
2011-07-01MOHAWK: Add the Mac version of Arthur's Reading RaceMatthew Hoops
2011-07-02MOHAWK: Always create a code object for every LBPage.Alyssa Milburn
2011-07-02MOHAWK: Try implementing LBCode eval, random and seek.Alyssa Milburn
2011-07-02MOHAWK: Use LBCode instead of running scripts in LBItem.Alyssa Milburn
2011-07-02MOHAWK: Add LBCode::parseCode.Alyssa Milburn
This allows script strings to be parsed into LB bytecode.
2011-07-02MOHAWK: Allow creation of LBCode instances without an associated BCOD.Alyssa Milburn
2011-07-02MOHAWK: Add LBCode::resolveItem helper function.Alyssa Milburn
2011-07-02MOHAWK: Fix/add bounds checking in LBCode::nextToken.Alyssa Milburn
2011-07-01BACKENDS: Fix PS2 backend compilation for real.Johannes Schickel
2011-07-01BACKENDS: Fix compilation of PS2 backend.Johannes Schickel
2011-07-01GRAPHICS: Fix possible memory leak in BdfFont code.Johannes Schickel
2011-07-01GRAPHICS: Rename NewFont to BdfFont.Johannes Schickel
2011-07-01GRAPHICS: Format NewFont code with astyle.Johannes Schickel
2011-07-01GRAPHICS: Move NewFont code to a separate file.Johannes Schickel
2011-07-01Merge branch 'master' of github.com:scummvm/scummvmTravis Howell
2011-07-01BUILD: Update Windows installer script.Travis Howell
2011-07-01CREATE_PROJECT: Update with new location of NSIS script and updated parametersLittleboy
2011-07-01NSIS: Always pass ARCH variable to script and handle case when the variable ↵Littleboy
is empty
2011-07-01NSIS: Convert line endings on the fly during installationLittleboy
2011-07-01TOOLS: Update NSIS script locationLittleboy
2011-07-01DISTS: Add missing IDI_COUNT to scummvm.rc.inLittleboy
2011-07-01CONFIGURE: Rename $WIN32BUILD to $STAGINGLittleboy
2011-07-01LASTEXPRESS: Fix loading of subtitles from sound nameLittleboy
2011-07-01BUILD: Use static build when compiling with later GCC versions under mingw, ↵Travis Howell
to avoid additional DLL requirements.
2011-07-01GRAPHICS: Fix SJIS PCE font loading.Johannes Schickel
2011-07-01GRAPHICS: More default parameter remove in SJIS code.Johannes Schickel
2011-07-01GRAPHICS: Remove default values from FontSJIS::drawChar.Johannes Schickel
drawChar is overloaded in FontSJIS. One takes a "Surface &" as first parameter another one "void *", they furthermore have the exact same number of required parameters. The one "void *" just had a few extra parameters with default values. This resulted in a bug in SCUMM, where "VirtScreen *" (a subclass of Surface) was passed instead of "VirtScreen &" and thus the method taking "void *" was incorrectly used. To make it easier to spot such bugs in the future I just removed the default values and thus disallow such calls.
2011-07-01GRAPHICS: Offer support for PCE font data of SJIS.FNT.Johannes Schickel
2011-07-01GRAPHICS: Cleanup SJIS font code a bit.Johannes Schickel