Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-22 | changed some stuff with track_flags param in IACT handle smush code | Paweł Kołodziejski | |
svn-id: r11842 | |||
2003-12-21 | added workaround for scriptbug (fixes ending sequence). | Robert Göffringmann | |
Sword1 is completable now with some graphical glitches left to fix. svn-id: r11841 | |||
2003-12-21 | Invisible mouse pointer fix. | Marcus Comstedt | |
svn-id: r11840 | |||
2003-12-21 | disable custom new/delete/free by default (only keep it around in case it ↵ | Max Horn | |
comes in handy again in the future) svn-id: r11839 | |||
2003-12-21 | Avoid Loom dupes. | Marcus Comstedt | |
svn-id: r11838 | |||
2003-12-21 | tiny cleanup | Max Horn | |
svn-id: r11837 | |||
2003-12-21 | Avoid duplicate entries due to case. | Marcus Comstedt | |
svn-id: r11836 | |||
2003-12-21 | cleanup; fix endian bug which caused the dreaded Simon1 hang on MacOS ↵ | Max Horn | |
(_palette_color_count was treated as a 32 bit int when it is only 16 bit -> once again proves that one should be really really carefully with pointer cast hacks!) svn-id: r11835 | |||
2003-12-21 | fix mouse bugs (fixes chess puzzle) | Robert Göffringmann | |
svn-id: r11834 | |||
2003-12-21 | The rewritten Timer class actually allows us to get rid of several evil ↵ | Max Horn | |
hacks in the SMUSH code (which were previously needed to avoid various race conditions/crashes/hangups) svn-id: r11833 | |||
2003-12-21 | Make sure plugins are loaded when the selector is running. | Marcus Comstedt | |
svn-id: r11832 | |||
2003-12-21 | Highlight the correct (I hope!) menu icon during conversation, and do the | Torbjörn Andersson | |
cheesy menu fade-in/fade-out. svn-id: r11831 | |||
2003-12-21 | fixed scrolling | Robert Göffringmann | |
svn-id: r11830 | |||
2003-12-21 | include stdafx.h | Max Horn | |
svn-id: r11829 | |||
2003-12-21 | fixed parallax drawing for room 54 | Robert Göffringmann | |
svn-id: r11828 | |||
2003-12-21 | warning fix | Torbjörn Andersson | |
svn-id: r11827 | |||
2003-12-21 | Add header | Travis Howell | |
svn-id: r11826 | |||
2003-12-21 | Add music_mute config option to Simon 1/2 | Travis Howell | |
svn-id: r11825 | |||
2003-12-21 | Add sfx_mute to simon | Travis Howell | |
svn-id: r11824 | |||
2003-12-21 | now two inventory items can be combined | Robert Göffringmann | |
svn-id: r11823 | |||
2003-12-21 | Require stdafx.h to have been included. | Marcus Comstedt | |
svn-id: r11822 | |||
2003-12-21 | Add fotaq config options | Travis Howell | |
svn-id: r11821 | |||
2003-12-21 | stdafx.h first, please. | Marcus Comstedt | |
svn-id: r11820 | |||
2003-12-21 | Leave set to false for now, due to Simon2. | Travis Howell | |
svn-id: r11819 | |||
2003-12-21 | Renames. | Marcus Comstedt | |
svn-id: r11818 | |||
2003-12-21 | cleanup | Max Horn | |
svn-id: r11817 | |||
2003-12-21 | add purely experimental & untested Ogg Vorbis support to Simon | Max Horn | |
svn-id: r11816 | |||
2003-12-21 | changed speech code, should now play all waves correctly | Robert Göffringmann | |
svn-id: r11815 | |||
2003-12-21 | stdafx.h first, please. | Marcus Comstedt | |
svn-id: r11814 | |||
2003-12-21 | Use of stat() is not portable... | Marcus Comstedt | |
svn-id: r11813 | |||
2003-12-21 | added convenience SoundMixer::playVorbis variant which calls through to ↵ | Max Horn | |
playSfxSound_Vorbis; made scumm/queen engines use it svn-id: r11812 | |||
2003-12-21 | Make it possible for game detection functions to detect language/platform ↵ | Max Horn | |
(not yet done by any detector, but will come with the MD5 detection code) svn-id: r11811 | |||
2003-12-21 | Switch speech config option to speech_mute config options, for Simon 1/2 ↵ | Travis Howell | |
games. In order to match other engines. svn-id: r11810 | |||
2003-12-21 | yet another place were 'nosubtitles' wasn't properly changed to 'subtitles' | Max Horn | |
svn-id: r11809 | |||
2003-12-21 | Fix for bug #847805 (FOA: Assertion failed crash at lava pit) | Max Horn | |
svn-id: r11808 | |||
2003-12-21 | Revert for now, breaks VC. | Travis Howell | |
svn-id: r11807 | |||
2003-12-21 | ops | Paweł Kołodziejski | |
svn-id: r11806 | |||
2003-12-21 | update and fix depedences | Paweł Kołodziejski | |
svn-id: r11805 | |||
2003-12-21 | Might as well merge, not need for larger sizes. | Travis Howell | |
svn-id: r11804 | |||
2003-12-21 | Cleaned up SoundMixer::newStream() a bit (I plan to replace all usages of ↵ | Max Horn | |
this by playInputStream(), this cleanup eases this a bit) svn-id: r11803 | |||
2003-12-21 | changed wording in NEWS a bit | Max Horn | |
svn-id: r11802 | |||
2003-12-21 | o Make use of the new LinearMemoryStream feature which allows auto-disposing ↵ | Max Horn | |
the sound data o This allows us to get rid of the ChannelRaw class o Removed the sound index return value from several methods o Removed all methods dealing with sound indices (i.e. stopChannel and pauseChannel) svn-id: r11801 | |||
2003-12-21 | incorrect use of pauseChannel (replaced by correct pauseID) | Max Horn | |
svn-id: r11800 | |||
2003-12-21 | Incorrect use of stopChannel (must be stopHandle); replaced single remaining ↵ | Max Horn | |
use of stopChannel by a hack (note: the code in question is a hack in itself already) svn-id: r11799 | |||
2003-12-21 | Rewrote make*Stream factory functions to work around bug in MSVC6 (see bug ↵ | Max Horn | |
report #860067); added some comments; LinearMemoryStream now can auto-dispose the data passed to it svn-id: r11798 | |||
2003-12-21 | automatically update the date in the README (not pretty, but works) | Max Horn | |
svn-id: r11797 | |||
2003-12-21 | Typo | Travis Howell | |
svn-id: r11796 | |||
2003-12-21 | cleanup | Max Horn | |
svn-id: r11795 | |||
2003-12-21 | don't use sound/mixer index, rather use the sound handle! | Max Horn | |
svn-id: r11794 | |||
2003-12-21 | Enable more debugging output | Travis Howell | |
svn-id: r11793 |