133589 Commits

Author SHA1 Message Date
Le Philousophe
5b67238944 SKY: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
682c11e801 SCI: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
0b918a5352 SCI: Rename strcpy function to prepare for forbidden name
Even though strcpy in SegManager isn't a problem, our forbidden symbols
list being defined at preprocessor level, we won't be able to use this
name anymore.
2022-10-23 22:46:19 +02:00
Le Philousophe
80ee3dddd7 SAGA2: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
44870b1ad6 SAGA: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f564ffc12f SCUMM: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
e61f13b0aa QUEEN: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
a21b7eb75a PARALLACTION: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
e249dac38e NGI: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
295253abf3 MADS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
700a965361 LURE: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
abb4c3cd6c LASTEXPRESS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f24d143565 ICB: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
5fbf81f498 HUGO: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
6a391ff462 HOPKINS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
e15aa92118 GRIM: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
0a0d21b904 GRIFFON: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f26ce1e4ff GOB: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
93cdbbbf39 GLK: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
b25335bd33 DRASCULA: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
667ea2f88e DM: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
b6a1284baf CRYOMNI3D: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f25c8239b1 CRYO: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f2ddbbea91 CRUISE: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
c618b7fe91 CINE: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
e871394664 CHEWY: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
ceca603464 CGE2: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
d698fc6bbe CGE: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
a302f1859b ASYLUM: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
7f90669bdd AGS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
1d23fc0240 AGOS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
c89f760066 AGI: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
d8a4c106dd GUI: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
7948a2820f ENGINES: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
3aa220fdb4 GRAPHICS: Don't use unsafe strcat and strcpy 2022-10-23 22:46:19 +02:00
Le Philousophe
f8c25e2374 COMMON: Add strcpy_s and strcat_s
These functions will issue warnings and truncate strings.
It's like strlcpy and strlcat but noisier.
There are also versions automatically determining size based on the destination
array size.
This raises a compilation error when the size cannot be determined by
the compiler.
2022-10-23 22:46:19 +02:00
ScummVM-Translations
f1eb05c898 I18N: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: ScummVM/scummvm
Translate-URL: https://translations.scummvm.org/projects/scummvm/scummvm/
2022-10-23 19:45:20 +00:00
Hubert Maier
874f894936 AMIGAOS: Fix oversight in debug output 2022-10-23 21:45:10 +02:00
aquadran
60038a4809 I18N: Update translation (Polish)
Currently translated at 65.8% (1165 of 1768 strings)
2022-10-23 18:43:55 +00:00
Donovan Watteau
3c4d3a0d62 CI: Explicitly use the Bash shell on macOS and Linux
If it's just set implicitly, pipefail isn't enabled, but that's a
setting one almost always wants in a CI setup.

https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
2022-10-23 20:14:27 +02:00
jacobhyman
6931714c2f
ANDROID: Fix touchscreen stylus check 2022-10-23 19:33:21 +02:00
ScummVM-Translations
4be4a210d1 I18N: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: ScummVM/scummvm
Translate-URL: https://translations.scummvm.org/projects/scummvm/scummvm/
2022-10-23 15:35:52 +00:00
Le Philousophe
0da806b04b ICB: Fix CID 1433477, 1433308 and 1433637 2022-10-23 17:32:37 +02:00
ScummVM-Translations
4ed9a0dfd3 I18N: Update translations templates 2022-10-23 13:43:41 +00:00
ScummVM-Translations
3e1b4266eb I18N: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: ScummVM/scummvm
Translate-URL: https://translations.scummvm.org/projects/scummvm/scummvm/
2022-10-23 13:43:39 +00:00
Eugene Sandulenko
dedeb489f2
GUI: And even more properly fix the shader override 2022-10-23 15:43:22 +02:00
ScummVM-Translations
c534d49d56 I18N: Update translations templates 2022-10-23 13:32:34 +00:00
Eugene Sandulenko
7b3c68480a
GUI: Properly remove shader settings when GUI override is unchecked 2022-10-23 15:31:56 +02:00
athrxx
ff0c339d19 SCUMM: (IMS/MT-32) - fix regression
(assert in SAMNMAX)
2022-10-23 14:36:30 +02:00
Donovan Watteau
e557a339a9 ALL: Force CRLF line-endings for Windows .bat files
Subtle parsing problems with labels can happen if Windows batch files
are checked out with Unix LF line-endings.
2022-10-23 11:03:49 +03:00