aboutsummaryrefslogtreecommitdiff
path: root/backends
AgeCommit message (Collapse)Author
2013-08-01Merge pull request #339 from onlyjob/hurdJohannes Schickel
BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOST
2013-07-18Merge pull request #353 from clone2727/eventrec_timer_fixEugene Sandulenko
ALL: Don't use EventRecorder at all when not compiled in
2013-07-14JANITORIAL: Remove trailing whitespaceSven Hesse
2013-07-06ALL: Don't use EventRecorder at all when not compiled inMatthew Hoops
2013-07-04Merge pull request #350 from chrisws/tizen_port_1_6_0aJohannes Schickel
TIZEN: bada port updated to tizen Conflicts: backends/platform/tizen/system.cpp
2013-07-04GUI: Cleanup EventRecorder::getSurface.Johannes Schickel
Formerly the function created a SDL_Surface by hand. Instead now it uses SDL_CreateRGBSurface (which is used in the SDL backend anyway and yields the same results). This should fix PS3 port compilation.
2013-07-04Merge pull request #331 from sev-/gsoc2012-eventsrecorderEugene Sandulenko
GSoC2012: Event Recorder (reworked)
2013-07-04RECORDER: Fix guard ifdefEugene Sandulenko
2013-07-04SDL: Fix compilation by moving getMixerManager out of USE_OPENGL guard.Johannes Schickel
2013-07-04SDL: Fix compilation on Solaris 10.Johannes Schickel
This replaces a dummy FILE definition before including the SDL headers with simply using the toolchain's definition on Solaris. This is pretty harmless because we only allow FILE to be used in the SDL headers by this. Fixes bug #3614514 "#define FILE FAKE_FILE doesn't work on Solaris (w/ patch)". Thanks to lblume for his patch!
2013-07-03TIZEN: bada port updated to tizenChris Warren-Smith
2013-06-18BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOSTDmitry Smirnov
Bug-ScummVM: https://sourceforge.net/tracker/?func=detail&atid=418820&aid=3614268&group_id=37116 See more in similar http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=387665
2013-06-06ALL: Fix typo (succesful -> successful)Willem Jan Palenstijn
Thanks to 'onlyjob' on pull request #337 for pointing out an instance of this.
2013-06-01MAEMO: Update debian/changelogTarek Soliman
2013-05-25PSP: Remove leftover debug statement to non-existant variable.D G Turner
This would cause a compilation error when the __PSP_DEBUG_PRINT__ define was enabled for debugging as the variable is non-existant.
2013-05-17RECORDER: Implement Events RecorderEugene Sandulenko
2013-05-16ANDROID: Disable parachute slot 0 saves.Alyssa Milburn
2013-05-16ANDROID: Force htc_fail for all Android devices, for now.Alyssa Milburn
2013-05-16ANDROID: Ignore subdirectories of asset archives.Alyssa Milburn
2013-05-16ANDROID: Delete local JNI references to asset data/classes.Alyssa Milburn
2013-05-05RELEASE: This is 1.7.0gitEugene Sandulenko
2013-04-23AUDIO: Remove useless checkWillem Jan Palenstijn
2013-04-21BACKENDS: Fix unitialized variables in event manager. CID 1002944Eugene Sandulenko
2013-04-04Symbian:Support for new enginesanotherguest
2013-02-01MACOSX: Fix compilation with the 10.2.8 SDKMatthew Hoops
This is a pretty bad hack of not using the kMusicDeviceProperty_SoundBankFSRef symbol and using its value instead. It felt wrong breaking 10.2.8 support just because of Soundfonts.
2013-02-01MACOSX: Load soundfonts using FSRef instead of FSSpec on 10.5Matthew Hoops
Fixes bug #3602452
2013-01-26JANITORIAL: Enforce "} // End of namespace" with a single space after }.Johannes Schickel
2013-01-26Merge pull request #301 from lordhoto/c++11-playgroundJohannes Schickel
RFC: Allow use of override and nullptr. Also allow C++11 compilation.
2013-01-24Merge pull request #302 from clone2727/gl-linear-fixJohannes Schickel
OPENGL: Fix linear filtering when the texture size doesn't match the real size
2013-01-24JANITORIAL: Fix ){ -> ) {Einar Johan Trøan Sømåen
2013-01-24OPENGL: Fix linear filtering when the texture size doesn't match the real sizeMatthew Hoops
2013-01-14IPHONE: Initialize the palettes on startup.Johannes Schickel
This hopefully fixes the occasional odd color flashes on startup.
2013-01-14IPHONE: Recreate mouse texture on palette changes when needed.Johannes Schickel
This fixes the color of the cursor in the Eye of the Beholder menu.
2013-01-09SDL: Silence C++ narrowing warnings.Johannes Schickel
2013-01-09OPENGL: Silence C++11 narrowing warning.Johannes Schickel
2013-01-02JANITORIAL: Update copyright yearStrangerke
2012-12-28ANDROID: Minor fixes to build-specific makefile.D G Turner
This fixes two minor issues when trying to cross-compile to Android on Win32 using the Win32 Android SDK/NDK and MinGW shell. However, this is still no working as DX and APKBUILDER are batch files in the Win32 SDK (which then call the real Java tools) and these fail to run in shell. However, using "cmd /C" also fails as the paths in the parameters have unix, rather than native separators. Unsure how to fix.
2012-12-24ANDROID: Remove parameter forcing use of Modern theme.D G Turner
This parameter overrides any user choice in the GUI or config file, which is not good UX design (and is making it hard to debug loading issues associated with theme files). If we want to set this to default to Modern, we should do this in a different way i.e. do this by ConfMan.loadDefaultConfigFile() This is probably related to the Android issue with the backend init running before main() is called, rather than after...
2012-12-16WINCE: Fix shadow variable warnings associated with GUIElement classes.D G Turner
2012-12-10Revert "OPENGLSDL: Remove HACK in fullscreen toggle mode."Johannes Schickel
This reverts commit b6f7d697090ca6f90d20f0f2d5661cc4c8b71bf2. This actually breaks fullscreen mode cycling.
2012-11-27PS2: Fix three compiler warnings and minor code formatting fixes.D G Turner
2012-11-24BACKENDS: Remove excess space from warningsMatthew Hoops
2012-11-23WII: Remove remaining signed-unsigned compiler warning.D G Turner
2012-11-23N64: Remove remaining signed-unsigned compiler warning.D G Turner
2012-11-19N64: Fix remaining warnings associated with mouse cursor drawing.D G Turner
2012-11-18N64: Fix compiler warnings associated with cursor size variables.D G Turner
2012-11-18OSX: Remove use of deprecated methodsThierry Crozat
FSRef and FSPathMakeRef have been deprecated in OS X 10.8. So we use CFURLRef instead.
2012-11-18OSX: Fix Sparkle compilation on older systemsThierry Crozat
This patch was provided by fingolfin (see patch #3582260). It replaces use of methods introduced in MacOS X 10.4 with methods that exists since MacOS X 10.0.
2012-11-18OSX: Improve native OS X browser dialogMax Horn
Signed-off-by: Thierry Crozat <criezy@scummvm.org>
2012-10-21ANDROID: Fixed tapping touchpad not sending left clicksLauri Härsilä