Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-29 | PEGASUS: Fix lid sequences missing a frame | Matthew Hoops | |
2013-01-29 | PEGASUS: Reset _lastMillis when changing rate in the timer | Matthew Hoops | |
2013-01-29 | SCI: Use correct priority selector in SoundCmd | Willem Jan Palenstijn | |
It was using 'pri' instead of 'priority', apparently due to a selector number->name translation error from 544daa5c31. Thanks to waltervn for spotting this. | |||
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-28 | Merge pull request #306 from lordhoto/filechooser-hidden | Johannes Schickel | |
GUI: Allow user to display hidden files in the browser dialog. | |||
2013-01-28 | BUILD: Add wintermute.zip to resource file for Windows builds. | Kirben | |
2013-01-28 | WINTERMUTE: Move Resources out of binary and into wintermute.zip | Einar Johan Trøan Sømåen | |
2013-01-27 | GUI: Allow user to display hidden files in the browser dialog. | Johannes Schickel | |
This implements feature request #3600774 "File browser: show hidden files". | |||
2013-01-27 | SCUMM: Update handling of non so resources in Loom Mac. | Johannes Schickel | |
This changes the warning to a debug and also updates the comment a bit. Thanks to eriktorbjorn for checking Loom Mac in an emulator. | |||
2013-01-27 | SCUMM: Work around bug #3602239 ("Mac Loom crashes using opening...") | Torbjörn Andersson | |
Skip music resources that don't have the "so" (song?) tag. It is better than asserting, now that it turns out that they do exist. | |||
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 | TESTS: Add failing test for repeated seeks in BufferedSeekableReadStream | Willem Jan Palenstijn | |
2013-01-26 | COMMON: Make BufferedSeekableReadStream use the buffer with SEEK_SET and ↵ | Giulio Camuffo | |
SEEK_END | |||
2013-01-26 | WINTERMUTE: Replace all NULLs with nullptr. | Einar Johan Trøan Sømåen | |
2013-01-26 | GRAPHICS: Modify the JFIF version warning | Matthew Hoops | |
v1.02 images should only differ with the thumbnail from v1.01, and should be handled correctly by our decoder. | |||
2013-01-26 | WINTERMUTE: Replace a few NULLs with nullptr. | Einar Johan Trøan Sømåen | |
2013-01-26 | WINTERMUTE: Add override-tags to most of the overriden functions in base/gfx. | Einar Johan Trøan Sømåen | |
2013-01-26 | Merge pull request #303 from lordhoto/wrap-compressed | Johannes Schickel | |
Return NULL in wrapCompressedReadStream for compressed streams when ZLIB is disabled. | |||
2013-01-26 | COMMON: Return NULL in wrapCompressedReadStream for compressed streams when ↵ | Johannes Schickel | |
ZLIB is disabled. | |||
2013-01-26 | NEWS: Formatting fixes in the Drascula section of 1.6.0. | Johannes Schickel | |
2013-01-26 | QUEEN: Rename override to overrideCmd. | Johannes Schickel | |
This fixes compilation on pre-C++11 compilers. | |||
2013-01-26 | Merge pull request #256 from lordhoto/thumbnail-pixelformat | Johannes Schickel | |
GRAPHICS: Serialize PixelFormat for thumbnails and allow 4Bpp surfaces. | |||
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-26 | Merge branch 'eriktorbjorn-fluidsynth-settings' | Johannes Schickel | |
This is a manual merge of a slightly adapted pull request #296. The changes made are: - Each time the theme format changes, the version was increased - default.inc has been regenerated in the same commit as the theme changes | |||
2013-01-26 | GUI: Move the FluidSynth reset button from Misc tab to bottom | Torbjörn Andersson | |
This should make it clearer that Reset applies to all of the FluidSynth settings, not just the Misc tab. | |||
2013-01-26 | GUI: Misc FluidSynth-related cleanups. | Torbjörn Andersson | |
2013-01-26 | GUI: Add "Reset" button to FluidSynth settings dialog | Torbjörn Andersson | |
This resets the FluidSynth settings to their default values. | |||
2013-01-26 | WINTERMUTE: Don't cast bool to pointer. | Einar Johan Trøan Sømåen | |
2013-01-26 | GUI: Swap Reverb and Chorus tabs in FluidSynth settings | Torbjörn Andersson | |
Again, this is to be more like Qsynth. | |||
2013-01-26 | GUI: Make the FluidSynth settings dialog a bit more like Qsynth | Torbjörn Andersson | |
To help people familiar with Qsynth (I'm not, but it seems to be one of the more polished FluidSynth front ends), use the same presentation and terminology for the FluidSynth settings. More to follow. | |||
2013-01-26 | BADA: Add completely untested layout changes to Bada theme | Torbjörn Andersson | |
I've simply copied this from classic_layout.stx. It probably needs a bit of tweaking. | |||
2013-01-26 | FLUIDSYNTH: Add separate dialog for FluidSynth settings | Torbjörn Andersson | |
I don't really understand what these parameters do, or what the sensible values are, so for now the sliders are limited only by the allowed (or, in one case, "safe") values. | |||
2013-01-26 | VIDEO: Hook some more of our ADPCM decoder variants to our AVI video decoder | Filippos Karapetis | |
Information for the AVI audio track format IDs has been taken from libav. Thanks to clone2727 for his great help on this. | |||
2013-01-24 | Merge pull request #302 from clone2727/gl-linear-fix | Johannes Schickel | |
OPENGL: Fix linear filtering when the texture size doesn't match the real size | |||
2013-01-25 | SCI: Fix kReadNumber sign/hex behaviour | Willem Jan Palenstijn | |
Negative numbers now work, and hex overflow is handled like SSCI. Thanks to waltervn for testing. | |||
2013-01-24 | SCI: Update documentation on bug #3585189 and remove an invalid TODO | Filippos Karapetis | |
Thanks wjp for pointing out some extra parameters related to pathfinding in SCI | |||
2013-01-24 | SCI: Fix shadow warning | Willem Jan Palenstijn | |
2013-01-24 | SCI: Add GetAngle for SCI1 that matches SSCI | Willem Jan Palenstijn | |
Thanks to waltervn for creating a scis test script to verify. | |||
2013-01-24 | SCI: Fix bug #3585189 - "SCI: QFG1VGA - game hangs in the tavern" | Filippos Karapetis | |
2013-01-24 | WINTERMUTE: Even more formatting fixes. | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: More formatting fixes. | Einar Johan Trøan Sømåen | |
2013-01-24 | JANITORIAL: Fix ){ -> ) { | Einar Johan Trøan Sømåen | |
2013-01-24 | OPENGL: Fix linear filtering when the texture size doesn't match the real size | Matthew Hoops | |
2013-01-24 | WINTERMUTE: Fix formatting in persistent.h | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: Remove commented out code. | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: Return something from repeatLastDisplayOp | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: Fix a leak in sound-file loading. | Einar Johan Trøan Sømåen | |
2013-01-24 | GRAPHICS: Fix leak in PNG-decoder. | Einar Johan Trøan Sømåen | |