aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise
AgeCommit message (Collapse)Author
2017-11-10ALL: Fix misuse of comma operatorColin Snover
2017-10-07ENGINES: Remove default1x scaler flagColin 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-08-06CRUISE: Add explicit fall through comments to switchPaul Gilbert
2017-08-06JANITORIAL: Silence more GCC 7 warningsTorbjörn Andersson
There were all flagged as intentional fall throughs. I simply changed the comments to something GCC would recognize.
2016-12-10CRUISE: Fix font space widthDaniel Plakhotich
2016-12-09CRUISE: font: Don't overwrite transparent pixelsDaniel Plakhotich
2016-05-17CINE: Remove useless code.Eugene Sandulenko
var_2 used to be always NULL after while() loop, thus, the first if() condition is always false.
2016-05-11CRUISE: Safer string manipulationEugene Sandulenko
2016-05-09CRUISE: Plug another memory leakEugene Sandulenko
2016-05-07CRUISE: Plug memory leakEugene Sandulenko
2016-04-14JANITORIAL: Reduce audio header dependenciesOri Avtalion
2016-03-08ENGINES: Make variable names of ADGameDescription conform to our guidelines.Johannes Schickel
gameid -> gameId guioptions -> guiOptions
2016-03-08ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines.Johannes Schickel
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions
2016-02-25CRUISE: Let listSaves return list sorted on slot numbers.Johannes Schickel
2016-01-26CRUISE: Only request actual save slots in listSaves.Johannes Schickel
2015-07-07AUDIO: Remove all AudioStream access to OPLMatthew Hoops
2015-07-07CRUISE: Use the built-in OPL timerMatthew Hoops
2015-07-07AUDIO: Remove the sample rate configuration from the OPL codeMatthew Hoops
2015-07-07AUDIO: Remove the legacy OPL APIMatthew Hoops
2014-06-15CRUISE: Add a safeguard to avoid a potential null pointer derefenreceStrangerke
2014-06-10CRUISE: Remove some useless variables, use a boolean for a variableStrangerke
2014-06-09CRUISE: Initialize some variablesStrangerke
2014-06-09CRUISE: some more renaming, remove another useless variableStrangerke
2014-06-09CRUISE: Remove a couple of useless variablesStrangerke
2014-06-09CRUISE: Initialize some variables in the contractor, change some variables ↵Strangerke
to boolean
2014-06-08CRUISE: Directly use assert.Johannes Schickel
This fixes an ASSERT macro redefinition when compiling the Symbian port. See bug #6622 "SYMBIAN: CRUISE: warning: `ASSERT' redefined".
2014-06-07CRUISE: Add a safeguard, some minor rework in BackgroundIncrustStrangerke
2014-06-07CRUISE: Add a couple of checks to avoid the use of negative indices in ↵Strangerke
arrays. Some minor rework in the data Loader
2014-06-07CRUISE: Some minor rework in script handlerStrangerke
2014-06-07CRUISE: Add some comments, remove some optional bracketsStrangerke
2014-06-07CRUISE: Fix a null pointer dereferenceStrangerke
2014-06-06CRUISE: Fix some more CppCheck warningsStrangerke
2014-06-06CRUISE: Reduce the scope of some more variablesStrangerke
2014-06-06CRUISE: Fix CppCheck warnings in gfxModuleStrangerke
2014-06-06CRUISE: Reduce the scope of several variables in processActorWalk()Strangerke
2014-06-06CRUISE: Disable a bit more efficiently some code in Op_Random() and Op_PlayFx()Strangerke
2014-06-06CRUISE: Reduce the scope of variables in fillpoly()Strangerke
2014-06-06CRUISE: disable more efficiently some codeStrangerke
2014-06-06CRUISE: Fix a couple of CppCheck warnings in VolumeStrangerke
2014-06-05CRUISE: Remove useless code in addAnimation()Strangerke
2014-06-05CRUISE: Remove logically dead code in SoundStrangerke
2014-06-01CRUISE: More rework and renaming on the decompilerStrangerke
2014-06-01CRUISE: Start renaming opcodes in the Decompiler, some reworkStrangerke
2014-06-01CRUISE: Fix a CppCheck error in decompilerStrangerke
2014-06-01CRUISE: Fix a bug in the decompilerStrangerke
2014-06-01CRUISE: Reduce the scope of a variable, remove a useless incrementStrangerke
2014-06-01CRUISE: Comment out some useless codeStrangerke
2014-06-01CRUISE: Reduce the scope of some variables in actor and cruise_mainStrangerke
2014-06-01CRUISE: Reduce the scope of variables used in the for loopsStrangerke
2014-06-01CRUISE: error out in some cases where divide by zero is expectedStrangerke