aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-25ALL: initialise -> initializeMatthew Hoops
2011-05-25QUEEN: tyre -> tireMatthew Hoops
2011-05-25ALL: recognise -> recognizeMatthew Hoops
2011-05-25ALL: analyse -> analyzeMatthew Hoops
2011-05-25ALL: armour -> armorMatthew Hoops
2011-05-25GRAPHICS: flavour -> flavorMatthew Hoops
2011-05-25ALL: favour/favourite -> favor/favoriteMatthew Hoops
2011-05-25ALL: behaviour -> behaviorMatthew Hoops
2011-05-25ALL: neighbour -> neighborMatthew Hoops
2011-05-25SCI: Constify Object::_baseVarsMax Horn
This may have to be undone if we ever want to start free'ing _baseVars again.
2011-05-25M4: Attempt to fix the broken Rails codeMax Horn
I am not sure how this code could have ever worked without lots of crashing, but maybe I am missing something... Still, casting an arbitrary integer value to an int *pointer* and then later dereferencing it does not seem like a good idea :). Changed the code to do what I *guess* it was meant to do. But somebody who actually knows M4 and its games should double check.
2011-05-25TSAGE: Silence another (incorrect but still annoying) uninitialized var warningMax Horn
2011-05-25MOHAWK: Fix warning about uninitialized varMax Horn
2011-05-25BUILD: Unify plugin prefix/suffix handling, unify setting DYNAMIC_MODULESMax Horn
2011-05-25BUILD: Minor configure cleanupMax Horn
2011-05-25BUILD: Do not define LUA_USE_POSIXMax Horn
It doesn't really do anything useful anymore anyway (except make linux builds use _setjmp instead of setjmp, but both are equally bad for us and need to replaced anyway).
2011-05-25BUILD: Update commentsMax Horn
2011-05-25BUILD: Declare RELEASE_BUILD in DEFINES, not CXXFLAGSMax Horn
2011-05-25BUILD: Replace _need_memalign runtime test by hardcoded listMax Horn
According to a discussion on -devel, this test cannot work reliably in general: It cannot determine when unaligned access really works reliably in all situations, nor on all implementations of the target CPU arch; nor does it determine whether unaligned access is supported effectively (as opposed to say supported via super-slow fault handler mechanism).
2011-05-25BUILD: Rename USE_TEXT_CONSOLE -> USE_TEXT_CONSOLE_FOR_DEBUGGERMax Horn
This reduces the similarity in name to the otherwise mostly unrelated DISABLE_TEXT_CONSOLE #define.
2011-05-25BUILD: Always enable indeo3 codecMax Horn
2011-05-25BUILD: Add only one -D to DEFINES per line; add FIXMEs to -D in CXXFLAGSMax Horn
2011-05-25BUILD: Unify how _posix is computedMax Horn
However, the current approach of determining _posix based on _host_os is flawed and should be replaced by feature detection; added a TODO about this.
2011-05-25BUILD: Rename UNIX #define to POSIXMax Horn
2011-05-25BUILD: Move some Android 'hack' back to near end of configureMax Horn
2011-05-25BUILD: Rearrange some PSP stuffMax Horn
Cursory testing shows no regressions caused by this, but proper testing of this change is recommended.
2011-05-25BUILD: Unify how debug/release mode defaults are determinedMax Horn
2011-05-25BUILD: Overhaul how we determine the need for aligned mem accessMax Horn
Also add some comments explaining what is going on and why.
2011-05-25BUILD: Enable ARM asm only based on _host_cpuMax Horn
Also moved x86 and ARM recognition code in configure to be next to each other; and print whether ARM specific code is going to be used or not.
2011-05-25BUILD: Unify build & configure rules for SDL based backendsMax Horn
2011-05-25BUILD: Do not manually set endianessMax Horn
If for some reason the endianess is not detected right, then this should be reported as a bug; and any (hopefully temporary) specification of the endianess should be accompanied by an explanatory comment.
2011-05-25BUILD: Reorder parts of configureMax Horn
2011-05-25SWORD25: Remove more unused loadlib code + use of fopenMax Horn
The functions loader_C and loader_Croot provably did not do anything besides returning an error, so removing them was safe. For loader_Lua, this was using luaL_loadfile. But that in turn now uses Sword25FileProxy, which only supports loading config.lua, and config.lua is not used via the loadlib mechanism. Therefore, I deemed it safe to also remove this third loader. This leaves loader_preload as only remaining loader. It is probably unused, too, but I did not both to investigate further, as I already achieved my primary goal (getting rid of fopen/fclose use). All other removed functions were unused due to the removal of the first three loader_* functions.
2011-05-25SCUMM: Switch some code to use String::formatMax Horn
2011-05-25WINCE: Update port specific readmeCeRiAl
2011-05-24GRAPHICS: Optimize the convertYUV420ToRGB function a bit moreMatthew Hoops
A template is used to avoid a bytesPerPixel check on every pixel and less deferences are done
2011-05-25CREDITS: Fix sort orderWillem Jan Palenstijn
2011-05-25CREDITS: Temporarily retire Jubanka, add CeRiAlCeRiAl
2011-05-24RELEASE: Specified release date for 1.3.0Eugene Sandulenko
2011-05-24I18N: rebuild translations.datEugene Sandulenko
2011-05-24TSAGE: Fix bug "Scene 2320: If you try to activate the flycycle, [...] the ↵strangerke
game becomes unresponsive.". Also fix an animation bug related to display priorities
2011-05-24TSAGE: Fix bug "Scene 2100: If you sit down at Quinn's console and then get ↵strangerke
back up again, his walk animation gets screwed"
2011-05-24SAMSUNGTV: changed pathsPawel Kolodziejski
2011-05-24SAMSUNGTV: fix typoPawel Kolodziejski
2011-05-24COMMON: Silence MSVC warning for Common::gcd calls with an unsigned typeLittleboy
2011-05-24LASTEXPRESS: Add a separate sound cache list for entries with a sound data ↵Littleboy
buffer
2011-05-24PSP: Fix compilationMax Horn
2011-05-24N64: Fix compilationMax Horn
2011-05-24COMMON: Add putc(har) and getc(har) to forbidden symbolsMax Horn
Sorry, buildbot...
2011-05-24SWORD25: Remove unused Lua print stuffMax Horn