aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-11-18FULLPIPE: Fix memory leaks and ownership problems with Behavior objectsColin Snover
2017-11-18FULLPIPE: Correctly fix Bitmap leaksColin Snover
2017-11-18FULLPIPE: Fix memory leak of MGMItemColin Snover
2017-11-18FULLPIPE: Fix memory leaks of MovTable and remove unnecessary extra classColin Snover
2017-11-18FULLPIPE: Remove manual memory management of streamsColin Snover
2017-11-18FULLPIPE: Use bool literals instead of ints for bool propertiesColin Snover
2017-11-18FULLPIPE: Take references instead of pointers for required arguments in ↵Colin Snover
statics, remove unnecessary Picture allocation
2017-11-18FULLPIPE: Remove memory leaks and manual memory management in SceneColin Snover
2017-11-18FULLPIPE: Fix memory leaks of SceneTagColin Snover
2017-11-18FULLPIPE: Remove unnecessary and illegal C-style castsColin Snover
2017-11-18FULLPIPE: Fix memory leak of save game thumbnailColin Snover
2017-11-18FULLPIPE: Fix leaks and unnecessary extra allocations in FullpipeEngineColin Snover
2017-11-18FULLPIPE: Fix memory leak & unnecessary heap allocation of RectsColin Snover
2017-11-18FULLPIPE: Fix memory leaks of inventory icons and itemsColin Snover
2017-11-18FULLPIPE: Fix memory leaks in ModalVideoPlayerColin Snover
2017-11-18FULLPIPE: Handle quit/RTL events correctlyColin Snover
Fixes Trac#10316.
2017-11-18FULLPIPE: Remove unnecessary extra allocation for RNGColin Snover
2017-11-18FULLPIPE: Fix leaks of MGMSubItemColin Snover
2017-11-18FULLPIPE: Improve memory ownership in MotionColin Snover
2017-11-18FULLPIPE: Make TODO labelled so it is picked up by toolsColin Snover
2017-11-18FULLPIPE: Fix memory leaks, ownership issues, and endianness issues in ↵Colin Snover
graphics code
2017-11-18FULLPIPE: Fix whitespace errorsColin Snover
2017-11-18FULLPIPE: Make dimensions/coordinate getters pure functionsColin Snover
2017-11-18FULLPIPE: Remove illegal C-style cast to incompatible typeColin Snover
2017-11-18FULLPIPE: Improve memory safety and fix leaks in sound codeColin Snover
2017-11-18FULLPIPE: Improve memory safety and typing of NGIArchiveColin Snover
2017-11-18FULLPIPE: Fix illegal C-style cast to incompatible typeColin Snover
2017-11-18COMMON: Add limited support for custom deleters to ScopedPtrColin Snover
Custom deleters of ScopedPtr are not currently fully conforming to C++11's support for custom deleters in std::unique_ptr for the sake of simplicity of implementation. Unlike in the standard library, plain functions and lvalue references are not supported, nor may custom deleters be passed to the constructor at runtime. This can be improved in the future, if necessary, by doing what standard library implementations usually do and creating a Pair class that uses the Empty Base Optimization idiom to avoid extra storage overhead of the deleter instance when it is not needed, as in typical standard library implementations, plus some additional type traits to support the necessary metaprogramming for the different type overloads.
2017-11-18I18N: Update translation (Czech)Zbyněk Schwarz
Currently translated at 96.0% (922 of 960 strings)
2017-11-18NEVERHOOD: fix musical hut crash in DR, bug #7085Ivan Avdeev
2017-11-17CREATE_PROJECT: Fix compilation failure in C++11 modeColin Snover
Getting the address of an rvalue is invalid, and not necessary here. Once C++11 can be used always, this utility function can just be replaced with std::to_string.
2017-11-17TITANIC: Fix compilation failure in C++11 modeColin Snover
2017-11-17SWORD25: Fix possible redefinition of FLT_EPSILONColin Snover
2017-11-17XEEN: Fix Coverity identified problemsPaul Gilbert
2017-11-17XEEN: Fix music channel loopPaul Gilbert
2017-11-17SDL: Grab mouse when ScummVM is started in fullscreen modeColin Snover
2017-11-17I18N: Update translation (Czech)Zbyněk Schwarz
Currently translated at 92.3% (887 of 960 strings)
2017-11-16XEEN: Map and game flag fixesPaul Gilbert
2017-11-15XEEN: Fix some Coverity warningsPaul Gilbert
2017-11-15XEEN: Fix uninitialized instance field warningsPaul Gilbert
2017-11-15WIN32: Add German Start Menu entries to the installerrootfather
2017-11-15I18N: Update translation (German)Lothar Serra Mari
Currently translated at 100.0% (960 of 960 strings)
2017-11-15SDL: Don't pass null pointers to SDL_DestroyTexture/SDL_DestroyRendererColin Snover
SDL does not like this and will raise an assertion when built with internal SDL assertions turned on. With internal assertions turned off, it will still call SDL_SetError any time a null pointer is passed, though it will not raise an assertion or crash.
2017-11-14XEEN: Fix some Coverity warningsPaul Gilbert
2017-11-15I18N: Update translations templatesThierry Crozat
2017-11-15Revert "DRASCULA: Revert range 4dbed774..1f1d8607"Filippos Karapetis
This reverts commit bf69b25e33189581848412e77624865aa55ba234. The original game had slight differences between the code for each chapter. Part of these changes was to simplify the code and unify some of these differences, particularly in the checks for clickable areas, where the code is using Common::Rects with contains() now. I have play tested the whole game with these changes, there are no visible regressions, and the game is still completable. Thus, I'm restoring the changes to the engine.
2017-11-14I18N: Update translations templatesThierry Crozat
2017-11-14DRASCULA: Revert range 4dbed774..1f1d8607Willem Jan Palenstijn
This reverts 1f1d8607 DRASCULA: Merge the floor coordinates into _walkRect 1e1b6f7c DRASCULA: Rename gotoObject() to walkToPoint() and simplify it 2bf05c2a DRASCULA: Clean up room variables, and simplify some related checks Reverting due to unanswered questions about why the changes in behaviour in 2bf05c2a746065f373ac136c994714dae376cdbc are correct.
2017-11-14I18N: Update translation (Czech)Zbyněk Schwarz
Currently translated at 90.8% (872 of 960 strings)
2017-11-14XEEN: Added missing initialization for new gamesPaul Gilbert