Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-27 | SCI: Use containers in GfxView and remove some SCI32 code | Colin Snover | |
2017-03-27 | SCI: Implement bounds-checked reads of game resources | Colin Snover | |
2017-03-27 | TITANIC: Fix copy/paste error | Eugene Sandulenko | |
2017-03-27 | FULLPIPE: Sanity check on data loading | Eugene Sandulenko | |
2017-03-27 | FULLPIPE: Safer string management | Eugene Sandulenko | |
2017-03-26 | TITANIC: Remove redundant static from CStarControlSub6 | Paul Gilbert | |
It was only ever used as a temporary matrix in the constructor. Given that, it was cleaner to simply declare it as a local variable. | |||
2017-03-26 | TITANIC: Fix loading of CStarView class | Paul Gilbert | |
2017-03-26 | TITANIC: Fix loading of CStarPoints2 data | Paul Gilbert | |
2017-03-26 | TITANIC: Remove redundant code | Paul Gilbert | |
2017-03-26 | TITANIC: Fix references to fields of DMatrix _row4 | Paul Gilbert | |
2017-03-27 | DIRECTOR: Fixed processing of embedded RIFF archives | Eugene Sandulenko | |
2017-03-26 | TITANIC: Minor cleanups, TODO removals | Paul Gilbert | |
2017-03-26 | TITANIC: Added CBaseStar draw4 method | Paul Gilbert | |
2017-03-26 | TITANIC: Added CBaseStar draw2 method | Paul Gilbert | |
2017-03-26 | BLADERUNNER: Another compilation fix | Paul Gilbert | |
2017-03-26 | BLADERUNNER: Fix compilation in Visual Studio 2015 | Paul Gilbert | |
It won't let the function pointer parameters in the debug calls to be cast to void *. Hopefully the alternate uint cast I've changed it to won't be a problem with any other compiler | |||
2017-03-26 | TITANIC: Added CBaseStar draw2 method | Paul Gilbert | |
2017-03-26 | BLADERUNNER: Added correct video looping and loop switching | Peter Kohaut | |
2017-03-26 | TITANIC: Compilation fix for openpandora | Paul Gilbert | |
2017-03-26 | TITANIC: Implemented CBaseStar draw1 method | Paul Gilbert | |
2017-03-25 | TITANIC: Fixes to CStarView class | Paul Gilbert | |
2017-03-25 | TITANIC: Finished CSurfaceArea class | Paul Gilbert | |
The fillRect method is implemented using an experimental, more ScummVM style, rather than all the different blocks and loops for different bit depths that the original did | |||
2017-03-25 | BLADERUNNER: Added credits for Blade Runner | Peter Kohaut | |
2017-03-25 | TITANIC: Fix warning and stray semicolon | Eugene Sandulenko | |
2017-03-25 | TITANIC: Added CBaseStarRef process method | Paul Gilbert | |
2017-03-25 | TITANIC: Added CStarPoints2 draw | Paul Gilbert | |
2017-03-25 | TITANIC: Added CStarPoints1 draw method | Paul Gilbert | |
2017-03-24 | TITANIC: Finished DMatrix class | Paul Gilbert | |
2017-03-24 | DIRECTOR: Fix Spaceship Warlock Mac detection | Eugene Sandulenko | |
2017-03-23 | TITANIC: Finished DVector class | Paul Gilbert | |
2017-03-23 | TITANIC: Finished FMatrix class | Paul Gilbert | |
2017-03-23 | TITANIC: Finished FVector class | Paul Gilbert | |
2017-03-23 | TITANIC: Finished CStarControlSub27 class | Paul Gilbert | |
2017-03-23 | TITANIC: Finished CStarControlSub26 class | Paul Gilbert | |
2017-03-24 | FULLPIPE: Plug one more memory leak in the Movement class destructor | Filippos Karapetis | |
2017-03-24 | Unify all string function parameters to be const Common::String & | Filippos Karapetis | |
Thanks to wjp for the suggestion | |||
2017-03-23 | BLADERUNNER: Reorganized script files | Peter Kohaut | |
2017-03-23 | TITANIC: Fix warning | Eugene Sandulenko | |
2017-03-23 | Merge pull request #925 from bluegr/fullpipe_common_str | Eugene Sandulenko | |
Fullpipe Common::String + memory leak fixes | |||
2017-03-22 | TITANIC: Finished CStarControlSub24 class | Paul Gilbert | |
2017-03-23 | BLADERUNNER: Fixed function for changing actors goal | Peter Kohaut | |
2017-03-23 | BLADERUNNER: Added more functionality to movement track | Peter Kohaut | |
2017-03-22 | FULLPIPE: Plug a memory leak in _dynamicPhases | Filippos Karapetis | |
Free the pixel data of each entry in the _dynamicPhases array before emptying it | |||
2017-03-22 | FULLPIPE: Fix corruption in flipped bitmaps | Filippos Karapetis | |
The TODO in the code in question should be reviewed, but the call to freePixelData() unconditionally deleted the original bitmap, which is not correct | |||
2017-03-22 | FULLPIPE: Refactor _pixels so that it's not part of the Bitmap class | Filippos Karapetis | |
2017-03-22 | FULLPIPE: _data is unused in the Statics and DynamicPhase classes | Filippos Karapetis | |
2017-03-22 | GNAP: Fix a warning in the PSP port | Strangerke | |
2017-03-22 | GNAP: Split font description array in two | Strangerke | |
2017-03-22 | FULLPIPE: Fix mismatched free() when deleting _bitmap | Filippos Karapetis | |
_bitmap is initialized with new, so it needs to be freed with delete, not free() | |||
2017-03-22 | FULLPIPE: Code optimization | Filippos Karapetis | |
Checking for an empty string is what the original code does, according to sev, so the check for a string of size 1 was wrong |