From noreply at scummvm.org Wed Apr 1 08:00:42 2026 From: noreply at scummvm.org (dwatteau) Date: Wed, 1 Apr 2026 08:00:42 +0000 (UTC) Subject: [Scummvm-git-logs] scummvm master -> eff428f6faf24ffbc9c82b21fa133b97f9e8f67b Message-ID: <20260401080042.855CE7003E3@ron.scummvm.net> This automated email contains information about 1 new commit which have been pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm . Summary: eff428f6fa ASYLUM: Escape non-ASCII characters in Italian/Polish C strings Commit: eff428f6faf24ffbc9c82b21fa133b97f9e8f67b https://github.com/scummvm/scummvm/commit/eff428f6faf24ffbc9c82b21fa133b97f9e8f67b Author: Donovan Watteau (contrib at dwatteau.fr) Date: 2026-04-01T09:58:27+02:00 Commit Message: ASYLUM: Escape non-ASCII characters in Italian/Polish C strings Changed paths: engines/asylum/views/menu.cpp diff --git a/engines/asylum/views/menu.cpp b/engines/asylum/views/menu.cpp index 43ac159842a..bb1fab1e5b9 100644 --- a/engines/asylum/views/menu.cpp +++ b/engines/asylum/views/menu.cpp @@ -1520,10 +1520,10 @@ void Menu::updateSettings() { animationsSpeed = "Vitesse d'animations"; break; case Common::IT_ITA: - animationsSpeed = "Velocit?? di animazioni"; + animationsSpeed = "Velocit\xc3\xa0 di animazioni"; break; case Common::PL_POL: - animationsSpeed = "Szybko???? animacji"; + animationsSpeed = "Szybko\xc5\x9b\xc4\x87 animacji"; break; case Common::RU_RUS: animationsSpeed = "\x91\xaa\xae\xe0\xae\xe1\xe2\xec\x20\xa0\xad\xa8\xac\xa0\xe6\xa8\xa9"; From noreply at scummvm.org Wed Apr 1 12:32:25 2026 From: noreply at scummvm.org (mikrosk) Date: Wed, 1 Apr 2026 12:32:25 +0000 (UTC) Subject: [Scummvm-git-logs] scummvm master -> 6819bf1ee0738dab863efc8dc7c114b8b16eabc7 Message-ID: <20260401123225.882B57003E3@ron.scummvm.net> This automated email contains information about 1 new commit which have been pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm . Summary: 6819bf1ee0 BACKENDS: ATARI: quit() should actually quit the application Commit: 6819bf1ee0738dab863efc8dc7c114b8b16eabc7 https://github.com/scummvm/scummvm/commit/6819bf1ee0738dab863efc8dc7c114b8b16eabc7 Author: Miro Kropacek (miro.kropacek at gmail.com) Date: 2026-04-01T22:31:52+10:00 Commit Message: BACKENDS: ATARI: quit() should actually quit the application Changed paths: backends/platform/atari/osystem_atari.cpp diff --git a/backends/platform/atari/osystem_atari.cpp b/backends/platform/atari/osystem_atari.cpp index d9e36e61678..f52a842aaa3 100644 --- a/backends/platform/atari/osystem_atari.cpp +++ b/backends/platform/atari/osystem_atari.cpp @@ -405,12 +405,15 @@ void OSystem_Atari::quit() { if (!s_dtor_already_called) destroy(); + + exit(0); } void OSystem_Atari::fatalError() { atari_debug("OSystem_Atari::fatalError()"); - quit(); + if (!s_dtor_already_called) + destroy(); // let exit_restore() and critical_restore() handle the recovery exit(1);