Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-07 | ENGINES: Remove default1x scaler flag | Colin Snover | |
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions. | |||
2017-09-22 | FULLPIPE: Fix leaking the save MemoryWriteStreamDynamic buffer | Bastien Bouclet | |
2017-08-01 | FULLPIPE: Fix warning | Willem Jan Palenstijn | |
2017-03-27 | FULLPIPE: Sanity check on data loading | Eugene Sandulenko | |
2017-03-27 | FULLPIPE: Safer string management | Eugene Sandulenko | |
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-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 | 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 | |||
2017-03-22 | FULLPIPE: Change the sound code to use Common::String | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Change genFileName() and loadFile() to use Common::String | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Plug a memory leak in getDibInfo() | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Change more object-related functions to use Common::String | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Change some more _memfilename usage to Common::String | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Use Common::String in all scene object names | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Change transCyrillic() to accept a Common::String | Filippos Karapetis | |
2017-03-22 | FULLPIPE: Use Common::String with _memfilename and loadFile() | Filippos Karapetis | |
There are several calls to loadFile() with _memfilename, which is why these two changes are interconnected | |||
2017-03-22 | FULLPIPE: Change _staticsName to be a Common::String | Filippos Karapetis | |
2017-01-05 | FULLPIPE: Silence GCC signed/unsigned warning. | Torbjörn Andersson | |
2017-01-05 | Merge pull request #883 from bluegr/fullpipe_mem | Eugene Sandulenko | |
FULLPIPE: Plug some memory leaks | |||
2016-12-31 | FULLPIPE: Fix leaks in surface and bitmap usage. | Aaryaman Vasishta | |
Fixes part of bug #9654. | |||
2016-12-26 | FULLPIPE: Decrease header dependency | Eugene Sandulenko | |
2016-12-23 | FULLPIPE: Open relevant URLs in demo for purchasing full games | Eugene Sandulenko | |
2016-12-20 | FULLPIPE: Change _objCommandName and _queueName to Common::String | Filippos Karapetis | |
2016-12-20 | FULLPIPE: Delete temporary memory streams used with MfcArchive | Filippos Karapetis | |
2016-12-20 | FULLPIPE: Remove unused variable | Filippos Karapetis | |
2016-12-20 | FULLPIPE: Change _gameName into a Common::String | Filippos Karapetis | |
2016-12-20 | FULLPIPE: Delete cursors in _cursorsArray in InputController destructor | Filippos Karapetis | |
2016-12-13 | FULLPIPE: Revert memory leak fixing as that introduced tons of regressions | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Fix colors in intro video | Paul Gilbert | |
2016-12-12 | FULLPIPE: Fix warning | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Avoid double free on memory cleanup | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Fix warning | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Plug more memory leaks | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Fix memory leak in bitmap code | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Plug more memory leaks | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Plug another leak | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Plug more memory leaks | Eugene Sandulenko | |
2016-12-12 | FULLPIPE: Plug several memory leaks | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Center map on opening. Fixes bug #9668 | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Implement Russian demo differences | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Implement demo-specific help screen | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Simplify demo check in the engine | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Properly restart Russian demo | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Fix crash at the end of Russian demo | Eugene Sandulenko | |
2016-12-11 | FULLPIPE: Initial support for Russian Demo. The demo starts | Eugene Sandulenko | |