aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-31DS, N64: Fix SaveFileManagersAlexander Tkachev
Added updateSavefilesList() and openRawFile() stubs. It should build fine now, I guess.
2016-08-31N64: Fix OutSaveFile errorAlexander Tkachev
OutSaveFile was just a typedef of WriteStream once, but now it's not. These Out*Save classes are then wrapped with OutSaveFile, so it should be OK to derive them from WriteStream instead of OutSaveFile.
2016-08-30TITANIC: Fleshed out CMusicRoom & CMusicHandler setupPaul Gilbert
2016-08-30FULLPIPE: Fix length calculation in AniHandler::getNumCyclesRetro-Junk
2016-08-30SCUMM HE: Add remote scripts-related kludgesAlexander Tkachev
Those are the last ones. Now Net stubs must be handled.
2016-08-30SCUMM HE: Add init-related kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add provider-related kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add session quering-related kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add session-related kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add a few more logic kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add two more kludgesAlexander Tkachev
2016-08-30SCUMM HE: Add more LogicHEmoonbase kludgesAlexander Tkachev
Less stubs there, more stubs in Net.
2016-08-30SCUMM HE: Fix some variable namingAlexander Tkachev
2016-08-30SCUMM HE: Replace strcpy with strlcpy in array setupAlexander Tkachev
setupStringArrayFromString() now uses Common::strlcpy().
2016-08-30SCUMM HE: Add some Moonbase logicAlexander Tkachev
Logic for getting host name and IP from name. Net gets more stubs.
2016-08-30HE: Add setupStringArrayFromString()Alexander Tkachev
It's based on PUI_ScummStringArrayFromCString(), which is used as SPUTM_ScummStringArrayFromCString() in Moonbase networking code.
2016-08-30HE: Replacing some Logic stubs with Net stubsAlexander Tkachev
Slowly moving kludge switch case contents into ScummVM Logic methods and thus adding more Net stubs.
2016-08-30HE: Add getStringFromArray()Alexander Tkachev
It's ARRAY_GetStringFromArray(), which was used in Moonbase networking code as SPUTM_CStringArrayFromScummString().
2016-08-30HE: Add net_defines.h and a few stubs updatesAlexander Tkachev
SPUTM_CStringArrayFromScummString is still has to be implemented to finish those stubs. Net now has joinGame() and hostGame(), which are not implemented yet.
2016-08-30HE: Add Moonbase logic ops stubsAlexander Tkachev
Most of them return int, yet there are a few which don't return anything. Stubs print a warning and return 1 (or nothing).
2016-08-30HE: Add Moonbase Net dummyAlexander Tkachev
2016-08-30FULLPIPE: Fix jumping on MapEugene Sandulenko
2016-08-30OSX: Implement clipboard supportThierry Crozat
There was already an implementation using SDL2 in the SDL backend, but this way we have it available also when using the SDL 1.
2016-08-30CLOUD: Disable the connect button initially as the code is emptyThierry Crozat
The connect button is enabled/disabled whenever the text in the code widget is changed and it's validity assessed. But the initial state was not correct.
2016-08-30CLOUD: Fix crash when trying to connect without entering a code firstThierry Crozat
2016-08-30CONFIGURE: Fix missing space in message when checking for cloud supportThierry Crozat
2016-08-30DIRECTOR: Lingo: Fix warning. Thanks to wjp.Eugene Sandulenko
2016-08-30COMMON: Replace broken URLWillem Jan Palenstijn
2016-08-30COMMON: Fix sign warningWillem Jan Palenstijn
2016-08-30BACKENDS: Rename variable shadowing functionWillem Jan Palenstijn
2016-08-30SDL: Fix const castWillem Jan Palenstijn
2016-08-30CLOUD: Fix Windows cross-compilationEugene Sandulenko
2016-08-30BUILD: Force the curl path when building the PS3 versionBastien Bouclet
Also, since SDL2 is enabled by default, there is no need to force using sdl2-config anymore.
2016-08-30BUILD: Don't try to run the curl test executable when cross-compilingBastien Bouclet
2016-08-30BUILD: Fix typos in find_libcurlconfigBastien Bouclet
2016-08-30BACKENDS: Use open instead of creat to create filesBastien Bouclet
creat is not defined on the PS3. Also close the file descriptor.
2016-08-30GUI: Fix hidden files visibility getting out of sync in the files browserBastien Bouclet
- The checkbox state was not initialized when opening the dialog. - The visibility state was initialized from ConfMan too early resuling in the value being incorrect when multiple file browsers are used.
2016-08-30OUYA: Bump to recommended API 16Eugene Sandulenko
2016-08-30SCI: Add missing parentheses to SIG/PATCH macrosWillem Jan Palenstijn
2016-08-30DIRECTOR: Lingo: Documented when..then statementsEugene Sandulenko
2016-08-30DIRECTOR: Fix scanned archive namesEugene Sandulenko
2016-08-30DIRECTOR: Fix another crash on quitEugene Sandulenko
2016-08-30Merge branch 'master' of https://github.com/scummvm/scummvmAlexander Tkachev
2016-08-30CLOUD: Fix Webserver's usage of DefaultSaveFileManagerAlexander Tkachev
concatWithSavesPath() is only defined when curl is used, but was used in Webserver even when curl is unavailable.
2016-08-30CONFIGURE: Fix curl-config failureAlexander Tkachev
Still, curl-config is required for Cloud integration feature, so it should be installed on buildbot in order to build it.
2016-08-30Merge pull request #433 from klusark/assetsEugene Sandulenko
ANDROID: Update the asset archive code to use AAssets
2016-08-30Merge pull request #788 from Tkachov/cloudEugene Sandulenko
ALL: Add Cloud storage support
2016-08-30DIRECTOR: Fix class initializationEugene Sandulenko
2016-08-30DIRECTOR: Fixed shared cast loadingEugene Sandulenko
2016-08-30DIRECTOR: Fix archive scanning at the startEugene Sandulenko