Commit Graph
137148 Commits
Author SHA1 Message Date
Donovan Watteau e3152645d2 SCUMM: Fix missing Dr. Fred line when he receives a new diamond
When Dr. Fred receives a new diamond, he's supposed to report the status
of Hoagie's and Laverne's units, but these talkActor() lines don't have
any associated wait.waitForMessage(), so they were unseen and unheard in
the game until now.

I couldn't find a way of only targeting the impacted lines, so this is
applied to every line from Dr. Fred in this part of the script.
2022-06-17 14:50:04 +03:00
D G Turner 8af2dc3a8c AGS: Fix Remaining Compiler Warnings 2022-06-17 12:19:37 +01:00
D G Turner fffb69b6a3 AGS: Fix Various Signed vs. Unsigned Comparison Warnings 2022-06-17 11:48:27 +01:00
D G Turner fddcc5a4a2 MTROPOLIS: Fix GCC Set But Unused Variable Warning 2022-06-17 11:07:18 +01:00
neuromancer d22d5090f8 HYPNO: enable stereo sound for audio transitions in boyz 2022-06-17 09:26:13 +02:00
neuromancer c54b24fc39 HYPNO: use _musicStereo flag when restoring music playback in boyz 2022-06-17 09:26:13 +02:00
neuromancer 3cfac79e97 HYPNO: use _musicStereo flag when restoring music playback in boyz 2022-06-17 09:26:13 +02:00
neuromancer d6ae2c9189 HYPNO: start in flashback mode, if available, in boyz 2022-06-17 09:26:13 +02:00
neuromancer 0b8df5e280 HYPNO: fixed typo in video path in boyz 2022-06-17 09:26:13 +02:00
neuromancer 0cf636343c HYPNO: added support for playing stereo music in boyz 2022-06-17 09:26:13 +02:00
neuromancer ffb8e5a7e2 HYPNO: added missing video during levels c5x in boyz 2022-06-17 09:26:13 +02:00
Pragyansh Chaturvedi (r41k0u) 60fdff4231 DIRECTOR: LINGO: Replace printSTUBWithArglist with macro printWithArglist 2022-06-16 22:46:30 -05:00
elasota 8cb9d8d52a MTROPOLIS: Permit transitions to the same scene 2022-06-16 22:16:45 -04:00
elasota 9a5abe9a1b MTROPOLIS: Fix hidden elements having mouse collision 2022-06-16 21:14:58 -04:00
Eugene Sandulenko 38a1cb9963 DIRECTOR: Fix outlined QD sprites with pattern tiles 2022-06-17 01:07:14 +02:00
Eugene Sandulenko 83f66c6eb0 GRAPHICS: MACGUI: Fixed pattern origin calculation 2022-06-17 01:07:14 +02:00
Thierry Crozat d6d464f898 AGS: Fixed sprite cache limit was reset on sprite file open
From upstream 4f57730e2b3d41af4fd0300e8b092d31d448f544
2022-06-16 23:16:20 +01:00
Thierry Crozat 3b2f9fed4e AGS: Removed unused thread and mutex utils
From upstream 9173a2d8ea90b019c27d49a2d48018fab5a4c2b6
2022-06-16 23:16:20 +01:00
Thierry Crozat 6690bfa5c7 AGS: Remove unused mutex variables in AGSEngine
The last use for those mutexes were removed respectively in:
a4569cb180 - AGS: Properly remove sound caching
ce606cd25c - AGS: Remove deprecated audio classes
c25b08448d - AGS: Removed AudioChannelsLock as it's no longer needed
2022-06-16 23:16:20 +01:00
Thierry Crozat 5f29c6b523 AGS: Fixed frame delay was skipped each time the game speed changes
This was not correct, and could cause endless frame skipping if
SetGameSpeed() is called repeatedly in game script.
From upstream 690f08b8468dd61ae570c7480098708ba6dc669f
2022-06-16 23:16:20 +01:00
Thierry Crozat 9789a32bac AGS: In BufferedStream skip buffering if reading large chunk at once
From upstream 8137918c209a479edf5127bb7c21d29470b8c40e
2022-06-16 23:16:20 +01:00
Thierry Crozat 5d8c66c511 AGS: Implemented debug keys for saving/restoring a game
This may be useful in case the game does not provide any save system, or one is broken.
From upstream 86130ec92f6966cfa2d5565c749ba839acad8136
2022-06-16 23:16:20 +01:00
Pragyansh Chaturvedi (r41k0u) ec3a741c29 DIRECTOR: LINGO: Implement copyToClipBoard and pasteClipBoardInto STUBs in Lingo Builtins 2022-06-17 00:03:06 +02:00
Eugene Sandulenko de11c01419 MTROPOLIS: Fix engine module.mk, removed duplicate 2022-06-16 23:40:45 +02:00
Eugene Sandulenko f92f51b3e4 DIRECTOR: Fix thickness when drawing tiled QD shapes 2022-06-16 23:40:45 +02:00
Timo Mikkolainen 101e016af1 I18N: Update translation (Finnish)
Currently translated at 100.0% (1742 of 1742 strings)
2022-06-16 20:42:48 +00:00
ScummVM-Translations 644c88208d I18N: Update translations templates 2022-06-16 19:58:23 +00:00
D G Turner 0a9539d1df MTROPOLIS: Fix Deprecated Implicit Copy Operator GCC Warning
This copy operator appears to be identical to the implicit default
copy operator generated by the compiler which causes a warning to be
emitted.
2022-06-16 21:58:09 +02:00
D G Turner 3192daf0a7 VIDEO: Fix Signed vs. Unsigned Warnings in MTROPOLIS changes to QT Decoder 2022-06-16 21:58:09 +02:00
D G Turner e58ae77728 MTROPOLIS: Fix Signed vs. Unsigned Comparison GCC Compiler Warnings 2022-06-16 21:58:09 +02:00
D G Turner 17c24579b0 MTROPOLIS: Make Explicit Unhandled Type Cases in DynamicValueType Change
This removes several unhandled type in switch GCC compiler warnings.
2022-06-16 21:58:09 +02:00
D G Turner 1d0ea143a7 MTROPOLIS: Fix Set But Unused Variable GCC Compiler Warnings 2022-06-16 21:58:09 +02:00
D G Turner 9fdb8d3e83 MTROPOLIS: Fix GCC Compiler Shadowing Warnings 2022-06-16 21:58:09 +02:00
D G Turner 46d70265a6 MTROPOLIS: Fix Stray Extra Semicolon Causing GCC Pedantic Warnings 2022-06-16 21:58:09 +02:00
D G Turner 39ac21f6b6 MTROPOLIS: Fix Missing Field Initializers for Group ID of Extra GUI Options 2022-06-16 21:58:09 +02:00
elasota 5d738ee6ac MTROPOLIS: Fix formatting 2022-06-16 21:58:09 +02:00
elasota 3b68a84f0e MTROPOLIS: Remove notes since they are in the wiki now 2022-06-16 21:58:09 +02:00
elasota 0365b9c76d MTROPOLIS: Cleanup 2022-06-16 21:58:09 +02:00
elasota ca322dbfbd MTROPOLIS: Add saveload.cpp to POTFILES 2022-06-16 21:58:09 +02:00
elasota eb450cf5c4 MTROPOLIS: Warning/error cleanup, fix Xcode build 2022-06-16 21:58:09 +02:00
elasota b52b80c8fa MTROPOLIS: Warning/error cleanup 2022-06-16 21:58:09 +02:00
elasota 3baac5a15e MTROPOLIS: Prep for moving some things from runtime to core, add IInterfaceBase to quiet warnings about missing virtual dtor 2022-06-16 21:58:09 +02:00
elasota 1dae5a71eb MTROPOLIS: Remove MIDI source allocation/deallocation to fix compile error when INT8_MAX is unavailable 2022-06-16 21:58:09 +02:00
elasota 53dde2193e MTROPOLIS: Merge prep header and warning cleanup 2022-06-16 21:58:09 +02:00
elasota 4bc7b46440 MTROPOLIS: Add credits 2022-06-16 21:58:09 +02:00
elasota 06963b2f3d MTROPOLIS: Fix missing header 2022-06-16 21:58:09 +02:00
elasota 09a885e49d MTROPOLIS: Switch to using common XPFloat 2022-06-16 21:58:09 +02:00
elasota 7ed8358691 MTROPOLIS: Change Point16 to Common::Point 2022-06-16 21:58:09 +02:00
elasota af25941669 MTROPOLIS: Replace Rect16 with Common::Rect 2022-06-16 21:58:09 +02:00
elasota da8d251713 MTROPOLIS: Clean up some things from initial review 2022-06-16 21:58:09 +02:00