Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-09 | ANDROID: Really fix compilation. | D G Turner | |
The vanilla android toolchain even is unhappy when unknown folders are present in the resources directory, so have moved the ouya specific resources out to another directory. | |||
2013-10-09 | ANDROID: Fix compilation. | D G Turner | |
The aapt throws an "invalid resource directory name" if the resource directory name is not known to the tools. Unfortunately, "values-television" is an OUYA specific addition and thus breaks with the standard vanilla Android toolchain. | |||
2013-10-08 | Merge pull request #372 from zeldin/ouya | David Turner | |
Basic OUYA support | |||
2013-08-23 | TIZEN: Silence cppcheck warning in scanStringUntil() | Torbjörn Andersson | |
This is consistent with scanString(), and I have verified that the included test cases still work. | |||
2013-08-18 | ANDROID: Add some margins when screen is a TV | Marcus Comstedt | |
2013-08-17 | TIZEN: updates for tizen 2.2 SDK | Chris Warren-Smith | |
2013-08-13 | DC: Use const version of ConfigManager::getGameDomains. | Johannes Schickel | |
This should fix compilation for the DC port. | |||
2013-08-08 | ANDROID: Enter main menu on middle mouse press | Marcus Comstedt | |
2013-08-08 | ANDROID: Add support for joystick motion | Marcus Comstedt | |
2013-08-08 | ANDROID: Add gamepad button support | Marcus Comstedt | |
2013-08-07 | IPHONE: Fix accidental double free. | Johannes Schickel | |
This was a copy&paste error. I also adapted the comment to be more clear. | |||
2013-08-07 | ANDROID: Add OUYA icon and intent | Marcus Comstedt | |
2013-08-06 | N64: Do not access Surface::pixels anymore. | Johannes Schickel | |
2013-08-06 | DC: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | ANDROID: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | PSP: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | IPHONE: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | NDS: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | PS2: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | WII: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-03 | IPHONE: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-07-18 | Merge pull request #353 from clone2727/eventrec_timer_fix | Eugene Sandulenko | |
ALL: Don't use EventRecorder at all when not compiled in | |||
2013-07-14 | JANITORIAL: Remove trailing whitespace | Sven Hesse | |
2013-07-06 | ALL: Don't use EventRecorder at all when not compiled in | Matthew Hoops | |
2013-07-04 | Merge pull request #350 from chrisws/tizen_port_1_6_0a | Johannes Schickel | |
TIZEN: bada port updated to tizen Conflicts: backends/platform/tizen/system.cpp | |||
2013-07-04 | Merge pull request #331 from sev-/gsoc2012-eventsrecorder | Eugene Sandulenko | |
GSoC2012: Event Recorder (reworked) | |||
2013-07-04 | SDL: Fix compilation by moving getMixerManager out of USE_OPENGL guard. | Johannes Schickel | |
2013-07-04 | SDL: 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-03 | TIZEN: bada port updated to tizen | Chris Warren-Smith | |
2013-06-01 | MAEMO: Update debian/changelog | Tarek Soliman | |
2013-05-25 | PSP: 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-17 | RECORDER: Implement Events Recorder | Eugene Sandulenko | |
2013-05-16 | ANDROID: Disable parachute slot 0 saves. | Alyssa Milburn | |
2013-05-16 | ANDROID: Force htc_fail for all Android devices, for now. | Alyssa Milburn | |
2013-05-16 | ANDROID: Ignore subdirectories of asset archives. | Alyssa Milburn | |
2013-05-16 | ANDROID: Delete local JNI references to asset data/classes. | Alyssa Milburn | |
2013-05-05 | RELEASE: This is 1.7.0git | Eugene Sandulenko | |
2013-04-04 | Symbian:Support for new engines | anotherguest | |
2013-01-26 | JANITORIAL: Enforce "} // End of namespace" with a single space after }. | Johannes Schickel | |
2013-01-14 | IPHONE: Initialize the palettes on startup. | Johannes Schickel | |
This hopefully fixes the occasional odd color flashes on startup. | |||
2013-01-14 | IPHONE: 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-02 | JANITORIAL: Update copyright year | Strangerke | |
2012-12-28 | ANDROID: 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-24 | ANDROID: 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-16 | WINCE: Fix shadow variable warnings associated with GUIElement classes. | D G Turner | |
2012-11-27 | PS2: Fix three compiler warnings and minor code formatting fixes. | D G Turner | |
2012-11-23 | WII: Remove remaining signed-unsigned compiler warning. | D G Turner | |
2012-11-23 | N64: Remove remaining signed-unsigned compiler warning. | D G Turner | |
2012-11-19 | N64: Fix remaining warnings associated with mouse cursor drawing. | D G Turner | |
2012-11-18 | N64: Fix compiler warnings associated with cursor size variables. | D G Turner | |