Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-06 | TITANIC: Added more sound manager methods, field renames in CProximity | Paul Gilbert | |
2016-08-06 | DIRECTOR: Fix some image rendering seg faults | Dmitry Iskrich | |
2016-08-06 | DIRECTOR: Debug output for Mac resource | Dmitry Iskrich | |
2016-08-06 | DIRECTOR: Change sprite type | Dmitry Iskrich | |
2016-08-06 | DIRECTOR: Lingo: Added stubs for open*, do, pause commands | Eugene Sandulenko | |
2016-08-06 | DIRECTOR: Lingo. Added stubs for 'do' and 'open' commands | Eugene Sandulenko | |
2016-08-06 | SCI32: Remove VMD flags from Audio32 mixer | Colin Snover | |
The VMD decoder sends audio directly to the system mixer. | |||
2016-08-06 | SCI32: Actually save and load remaps | Colin Snover | |
2016-08-06 | TITANIC: Added more sound manager methods | Paul Gilbert | |
2016-08-06 | WAGE: Fix crash in Explorer | Alexander Tkachev | |
Caused by operator[] usage on empty string. | |||
2016-08-06 | WIN32: Update copyright year in scummvm.iss | Lothar Serra Mari | |
2016-08-06 | DOCUMENTATION: Use uppercase filenames for German documentation | Lothar Serra Mari | |
The filenames of the German docs now uses uppercase filenames to match the style of the English documentation. | |||
2016-08-06 | DIRECTOR: Lingo: Added more command stubs | Eugene Sandulenko | |
2016-08-06 | DIRECTOR: Lingo: Moved recently added functions to built-ins | Eugene Sandulenko | |
2016-08-05 | TITANIC: Add sounds list to QSoundManager | Paul Gilbert | |
2016-08-05 | IMAGE: Add titanic to list of engines using TGA decoder | Paul Gilbert | |
2016-08-05 | AUDIO: Add titanic to list of engines using wave files | Paul Gilbert | |
2016-08-05 | TITANIC: Starting to flesh out sound loading | Paul Gilbert | |
2016-08-05 | DIRECTOR: Lingo: Fix compilation | Eugene Sandulenko | |
2016-08-05 | DIRECTOR: Lingo: Added generic built-in procedures | Eugene Sandulenko | |
2016-08-05 | DIRECTOR: Lingo: Made built-in functions generic | Eugene Sandulenko | |
2016-08-05 | NEWS: Update German NEWS file | Lothar Serra Mari | |
2016-08-05 | TITANIC: Added skeleton QMixer class for mixer interface | Paul Gilbert | |
2016-08-05 | CREATE_PROJECT: Fix Xcode generator macOS target | Colin Snover | |
2016-08-05 | WAGE: Fix crash in Brownie's Dream | Alexander Tkachev | |
I guess it would crash everywhere else as well, if console window would be placed the same way. The problem is that console window goes off screen a little in that game, but copyRectToScreen arguments are not adjusted to stay within screen area. This commit adds some checks and adjusts these arguments. | |||
2016-08-05 | WAGE: Fix cursor | Alexander Tkachev | |
It's now being clipped within window borders. | |||
2016-08-05 | DIRECTOR: Lingo: Revert adding prefix 'v' to all Symbol types. | Eugene Sandulenko | |
2016-08-05 | DIRECTOR: Lingo: Move MSVC fix to the .l file | Eugene Sandulenko | |
2016-08-04 | TITANIC: Rename WaveFile to CWaveFile for consistency | Paul Gilbert | |
2016-08-04 | DIRECTOR: Fix compilation in Visual Studio | Paul Gilbert | |
2016-08-04 | DIRECTOR: Fix warnings | Eugene Sandulenko | |
2016-08-04 | DIRECTOR: Lingo: Added stubs for 'continue', 'cursor' and 'delay' | Eugene Sandulenko | |
2016-08-04 | DIRECTOR: Lingo: Simplified code generation for constants | Eugene Sandulenko | |
2016-08-04 | DIRECTOR: Lingo: Added stubs for 'closeDA', 'closeResFile' and 'closeXlib' | Eugene Sandulenko | |
2016-08-04 | DIRECTOR: Lingo: Added 'alert' and 'beep' function stubs | Eugene Sandulenko | |
2016-08-04 | SCI32: Add QFG4 Windows signature | Colin Snover | |
2016-08-04 | POSIX: Add #ifdef guards for DATA_PATH. | Alyssa Milburn | |
Thanks to snover for pointing out they should be there. | |||
2016-08-04 | DIRECTOR: Lingo: Add prefix 'v' to all Symbol types. | Eugene Sandulenko | |
Helps WinCE backend which has lots of them defined. | |||
2016-08-04 | DIRECTOR: Lingo: Fix WinCE compilation. | Eugene Sandulenko | |
The plafrom has VOID defined | |||
2016-08-04 | DIRECTOR: Lingo: Fix PS2 compilation | Eugene Sandulenko | |
2016-08-04 | DIRECTOR: Put flex/bison as separate target, so general compilation is not ↵ | Eugene Sandulenko | |
affected | |||
2016-08-04 | Merge pull request #787 from sev-/director | Eugene Sandulenko | |
DIRECTOR: New engine | |||
2016-08-04 | DC: Fix compilation | Eugene Sandulenko | |
2016-08-04 | N64: Added pos() method to another save class | Eugene Sandulenko | |
2016-08-04 | N64: Fix warning | Eugene Sandulenko | |
2016-08-04 | N64: Fix build adter WriteStream::pos() addition | Eugene Sandulenko | |
2016-08-04 | BACKENDS: Fix DC's OutVMSave to have pos() | Alexander Tkachev | |
2016-08-04 | WAGE: Update saves format | Alexander Tkachev | |
Offset is added in the end of the file, so ScummVM would know where to look for description, version, thumbnail information. | |||
2016-08-04 | COMMON: Update GZipWriteStream::pos() | Alexander Tkachev | |
Though it seemed the _wrapped stream should return valid position, it was always 0. That's why I've added a _pos field, which is updated in write() and returned in pos(). | |||
2016-08-04 | COMMON: Add WriteStream::pos() | Alexander Tkachev | |
It returns int32, because some complex streams are derived from both WriteStream and ReadStream, and in ReadStream pos() returns int32, because -1 means an error. I had to change MemoryStream's uint32 to int32, which is probably not so good. |