Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-05-25 | MOHAWK: Fix warning about uninitialized var | Max Horn | |
2011-05-25 | BUILD: Unify plugin prefix/suffix handling, unify setting DYNAMIC_MODULES | Max Horn | |
2011-05-25 | BUILD: Minor configure cleanup | Max Horn | |
2011-05-25 | BUILD: Do not define LUA_USE_POSIX | Max 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-25 | BUILD: Update comments | Max Horn | |
2011-05-25 | BUILD: Declare RELEASE_BUILD in DEFINES, not CXXFLAGS | Max Horn | |
2011-05-25 | BUILD: Replace _need_memalign runtime test by hardcoded list | Max 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-25 | BUILD: Rename USE_TEXT_CONSOLE -> USE_TEXT_CONSOLE_FOR_DEBUGGER | Max Horn | |
This reduces the similarity in name to the otherwise mostly unrelated DISABLE_TEXT_CONSOLE #define. | |||
2011-05-25 | BUILD: Always enable indeo3 codec | Max Horn | |
2011-05-25 | BUILD: Add only one -D to DEFINES per line; add FIXMEs to -D in CXXFLAGS | Max Horn | |
2011-05-25 | BUILD: Unify how _posix is computed | Max 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-25 | BUILD: Rename UNIX #define to POSIX | Max Horn | |
2011-05-25 | BUILD: Move some Android 'hack' back to near end of configure | Max Horn | |
2011-05-25 | BUILD: Rearrange some PSP stuff | Max Horn | |
Cursory testing shows no regressions caused by this, but proper testing of this change is recommended. | |||
2011-05-25 | BUILD: Unify how debug/release mode defaults are determined | Max Horn | |
2011-05-25 | BUILD: Overhaul how we determine the need for aligned mem access | Max Horn | |
Also add some comments explaining what is going on and why. | |||
2011-05-25 | BUILD: Enable ARM asm only based on _host_cpu | Max 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-25 | BUILD: Unify build & configure rules for SDL based backends | Max Horn | |
2011-05-25 | BUILD: Do not manually set endianess | Max 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-25 | BUILD: Reorder parts of configure | Max Horn | |
2011-05-25 | SWORD25: Remove more unused loadlib code + use of fopen | Max 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-25 | SCUMM: Switch some code to use String::format | Max Horn | |
2011-05-25 | WINCE: Update port specific readme | CeRiAl | |
2011-05-24 | GRAPHICS: Optimize the convertYUV420ToRGB function a bit more | Matthew Hoops | |
A template is used to avoid a bytesPerPixel check on every pixel and less deferences are done | |||
2011-05-25 | CREDITS: Fix sort order | Willem Jan Palenstijn | |
2011-05-25 | CREDITS: Temporarily retire Jubanka, add CeRiAl | CeRiAl | |
2011-05-24 | RELEASE: Specified release date for 1.3.0 | Eugene Sandulenko | |
2011-05-24 | I18N: rebuild translations.dat | Eugene Sandulenko | |
2011-05-24 | TSAGE: 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-24 | TSAGE: 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-24 | SAMSUNGTV: changed paths | Pawel Kolodziejski | |
2011-05-24 | SAMSUNGTV: fix typo | Pawel Kolodziejski | |
2011-05-24 | COMMON: Silence MSVC warning for Common::gcd calls with an unsigned type | Littleboy | |
2011-05-24 | LASTEXPRESS: Add a separate sound cache list for entries with a sound data ↵ | Littleboy | |
buffer | |||
2011-05-24 | PSP: Fix compilation | Max Horn | |
2011-05-24 | N64: Fix compilation | Max Horn | |
2011-05-24 | COMMON: Add putc(har) and getc(har) to forbidden symbols | Max Horn | |
Sorry, buildbot... | |||
2011-05-24 | SWORD25: Remove unused Lua print stuff | Max Horn | |
2011-05-23 | TINSEL: Fix bug #3306020, DW2: Crash On Entering Sewers | eriktorbjorn | |
This is a simpler fix than the one I committed to the 1.3 branch, but since it carries a theoretical risk of regressions it's so much more macho. | |||
2011-05-23 | DS: Fix compilation | Max Horn | |
2011-05-23 | DC: Fix compilation | Max Horn | |
2011-05-23 | SWORD25: Remove obsolete FORBIDDEN_SYMBOL_ALLOW_ALL defines | Max Horn | |
2011-05-23 | COMMON: Add exit() to list of forbidden symbols | Max Horn | |
2011-05-23 | COMMON: Modify Base::processSettings, get rid of Common::kArgumentNotProcessed | Max Horn | |
Instead of defining a hacked up Common::Error code, split the return value of processSettings into two parts: An error code, and a value which indicates whether the specified command was completely handled by processSettings or not. | |||
2011-05-23 | COMMON: Mark more symbols as forbidden | Max Horn | |
2011-05-23 | BACKENDS: Move SCUMMVM_SAVEPATH env var handling to POSIX savefile manager | Max Horn | |
2011-05-23 | SWORD25: Include scummsys.h from lua.h, partially deal with the consequences | Max Horn | |
This should help mark the spots that are still non-portable, just follow the FIXMEs. | |||
2011-05-23 | COMMON: Provide our own implementations for scumm_str(n)icmp | Max Horn | |
This takes up a tiny little bit of extra binary size, but gets rid of some awful #ifdef hackery. | |||
2011-05-23 | SWORD25: Avoid including lua headers in other headers | Max Horn | |
2011-05-23 | SWORD25: Replace some non-portable calls, add FIXMEs | Max Horn | |