Merge branch 'branch-1-3-0' into master
I manually resolved all conflicts, and inspected every single change. Many were due to the version string mismatch and thus easily resolved. The MSVC project files add in the 1-3-0 branch were not merged, neither where the changes to gui/themes/translations.dat. Conflicts: NEWS backends/base-backend.cpp backends/graphics/samsungtvsdl/samsungtvsdl-graphics.cpp backends/module.mk backends/platform/ds/arm9/makefile backends/platform/psp/README.PSP backends/platform/samsungtv/main.cpp backends/platform/samsungtv/samsungtv.cpp backends/saves/posix/posix-saves.cpp base/commandLine.cpp base/internal_version.h base/main.cpp common/array.h configure devtools/create_project/create_project.cpp dists/android/AndroidManifest.xml dists/android/plugin-manifest.xml dists/iphone/Info.plist dists/irix/scummvm.spec dists/macosx/Info.plist dists/redhat/scummvm-tools.spec dists/redhat/scummvm.spec dists/scummvm.rc dists/slackware/scummvm.SlackBuild dists/wii/meta.xml engines/sci/parser/vocabulary.cpp engines/tinsel/handle.cpp gui/themes/translations.dat
This commit is contained in:
commit
a4610df482
19 changed files with 188 additions and 82 deletions
|
@ -718,6 +718,8 @@ void LauncherDialog::updateListing() {
|
|||
|
||||
void LauncherDialog::addGame() {
|
||||
int modifiers = g_system->getEventManager()->getModifierState();
|
||||
|
||||
#ifndef DISABLE_MASS_ADD
|
||||
const bool massAdd = (modifiers & Common::KBD_SHIFT) != 0;
|
||||
|
||||
if (massAdd) {
|
||||
|
@ -746,6 +748,7 @@ void LauncherDialog::addGame() {
|
|||
updateButtons();
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
// Allow user to add a new game to the list.
|
||||
// 1) show a dir selection dialog which lets the user pick the directory
|
||||
|
@ -918,7 +921,7 @@ void LauncherDialog::loadGame(int item) {
|
|||
gameId = _domains[item];
|
||||
|
||||
const EnginePlugin *plugin = 0;
|
||||
|
||||
|
||||
EngineMan.findGame(gameId, &plugin);
|
||||
|
||||
String target = _domains[item];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue