[Back to Index]

  
[00:38] <-- gsi_ left irc: Ping timeout: 248 seconds
[01:54] <-- Dominus left irc: Ping timeout: 252 seconds
[01:55] --> DominusExult joined #scummvm.
[01:55] Nick change: DominusExult -> Dominus
[05:05] --> gsi joined #scummvm.
[06:24] <-- Dominus left irc: Ping timeout: 248 seconds
[06:25] --> Dominus joined #scummvm.
[08:15] --> sev joined #scummvm.
[08:15] <-- sev left irc: Changing host
[08:15] --> sev joined #scummvm.
[08:15] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[08:31] <-- sev left irc: Quit: This computer has gone to sleep
[09:01] --> sev joined #scummvm.
[09:01] <-- sev left irc: Changing host
[09:01] --> sev joined #scummvm.
[09:01] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[09:01] <Scummette> [scummvm] bluegr closed pull request #6791: GUI: Support CLUT8 surfaces in graphical widgets (master...gui-widget-clut8) https://is.gd/WwzDgA
[09:01] <Scummette> [scummvm] bluegr pushed 2 new commits to master: https://is.gd/eZ8Inq
[09:01] <Scummette> scummvm/master b423a34 ccawley2011: GRAPHICS: Copy miscellaneous properties when scaling ManagedSurfaces
[09:01] <Scummette> scummvm/master 007009a ccawley2011: GUI: Support CLUT8 surfaces in graphical widgets
[09:01] <Scummette> [scummvm] ScummVM-Translations pushed 1 new commits to master: https://is.gd/vloebC
[09:01] <Scummette> scummvm/master 4cf1040 weblate: I18N: Update translations templates
[09:01] <Scummette> [scummvm] ScummVM-Translations pushed 1 new commits to master: https://is.gd/0gaRdf
[09:01] <Scummette> scummvm/master 4976abe weblate: I18N: Update translation files
[09:07] <-- sev left irc: Quit: This computer has gone to sleep
[09:14] --> sev joined #scummvm.
[09:14] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[09:38] --> borosky joined #scummvm.
[09:54] <-- sev left irc: Quit: This computer has gone to sleep
[09:57] --> sev joined #scummvm.
[09:57] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[10:58] --> Scummette_ joined #scummvm.
[11:00] <-- Scummette_ left irc: Remote host closed the connection
[11:06] Nick change: Deledrius_ -> Deledrius
[11:52] <-- Scummette left irc: Remote host closed the connection
[11:52] --> Scummette joined #scummvm.
[12:36] --> janov911 joined #scummvm.
[12:43] <-- janov911 left irc: Quit: Leaving
[12:57] <grogbot> [discord] <Digitall> @.bluegr Minor regression and crash of ScummVM at startup with latest master...
[12:57] <grogbot> [discord] <bluegr> :/
[12:57] <grogbot> [discord] <bluegr> Ouch
[12:58] <grogbot> [discord] <Digitall> Here is the valgrind backtrace. It is probably fixable.
[12:58] <grogbot> [discord] <Digitall> https://cdn.discordapp.com/attachments/581224061091446795/1391402893688573992/message.txt?ex=686bc46c&is=686a72ec&hm=a475c1eca7ebf26593688785ac67bf30ab241c668316c232037eed55704c3eb7&
[12:58] <grogbot> [discord] <bluegr> Because if this, I assume?
[12:58] <grogbot> [discord] <bluegr> https://github.com/scummvm/scummvm/commit/007009a77c74777a1f839ec12482a2c8653b30f4
[12:58] <grogbot> [discord] <Digitall> Yes, one of those
[12:58] <grogbot> [discord] <bluegr> Because of this, I assume?
[12:58] <grogbot> [discord] <bluegr> https://github.com/scummvm/scummvm/commit/007009a77c74777a1f839ec12482a2c8653b30f4 (edited)
[12:59] <grogbot> [discord] <bluegr> @ccawley2011 could you check, please?
[12:59] <grogbot> [discord] <bluegr> I'm not at my PC atm
[12:59] <grogbot> [discord] <Digitall> I will take a look as well and see if it is an easy fix
[13:07] <grogbot> [discord] <Digitall> Hmm... This looks like a latent problem where statenum passed to void PicButtonWidget::setGfx(const Graphics::ManagedSurface *gfx, int statenum, bool scale) is an uninitialized value... Previously that was still a problem, but didn't provoke a crash. Now it does with delete of the array.
[13:12] <grogbot> [discord] <ccawley2011> Does this patch help fix the issue?
[13:12] <grogbot> [discord] <ccawley2011> ```
[13:12] <grogbot> [discord] <ccawley2011> diff --git a/gui/widget.cpp b/gui/widget.cpp
[13:12] <grogbot> [discord] <ccawley2011> index e196e51e70b..6b595d81ffb 100644
[13:12] <grogbot> [discord] <ccawley2011> --- a/gui/widget.cpp
[13:12] <grogbot> [discord] <ccawley2011> +++ b/gui/widget.cpp
[13:12] <grogbot> [discord] <ccawley2011> @@ -621,7 +621,7 @@ const Graphics::ManagedSurface *scaleGfx(const Graphics::ManagedSurface *gfx, in
[13:12] <grogbot> [discord] <ccawley2011>
[13:12] <grogbot> [discord] <ccawley2011> PicButtonWidget::PicButtonWidget(GuiObject *boss, int x, int y, int w, int h, bool scale, const Common::U32String &tooltip, uint32 cmd, uint8 hotkey)
[13:12] <grogbot> [discord] <ccawley2011> : ButtonWidget(boss, x, y, w, h, scale, Common::U32String(), tooltip, cmd, hotkey),
[13:12] <grogbot> [discord] <ccawley2011> - _showButton(true) {
[13:12] <grogbot> [discord] <ccawley2011> + _showButton(true), _gfx{} {
[13:12] <grogbot> [discord] <ccawley2011> Common::fill(_alphaType, _alphaType + ARRAYSIZE(_alphaType), Graphics::ALPHA_OPAQUE);
[13:12] <grogbot> [discord] <ccawley2011> setFlags(WIDGET_ENABLED/* | WIDGET_BORDER*/ | WIDGET_CLEARBG);
[13:12] <grogbot> [discord] <ccawley2011> _type = kButtonWidget;
[13:12] <grogbot> [discord] <ccawley2011> @@ -633,7 +633,7 @@ PicButtonWidget::PicButtonWidget(GuiObject *boss, int x, int y, int w, int h, co
[13:12] <grogbot> [discord] <ccawley2011>
[13:12] <grogbot> [discord] <ccawley2011> PicButtonWidget::PicButtonWidget(GuiObject *boss, const Common::String &name, const Common::U32String &tooltip, uint32 cmd, uint8 hotkey)
[13:12] <grogbot> [discord] <ccawley2011> : ButtonWidget(boss, name, Common::U32String(), tooltip, cmd, hotkey),
[13:12] <grogbot> [discord] <ccawley2011> - _showButton(true) {
[13:12] <grogbot> [discord] <ccawley2011> + _showButton(true), _gfx{} {
[13:12] <grogbot> [discord] <ccawley2011> Common::fill(_alphaType, _alphaType + ARRAYSIZE(_alphaType), Graphics::ALPHA_OPAQUE);
[13:12] <grogbot> [discord] <ccawley2011> setFlags(WIDGET_ENABLED/* | WIDGET_BORDER*/ | WIDGET_CLEARBG);
[13:12] <grogbot> [discord] <ccawley2011> _type = kButtonWidget;
[13:12] <grogbot> [discord] <ccawley2011> ```
[13:31] <grogbot> [discord] <Digitall> Two secs. Will test
[13:43] <grogbot> [discord] <Digitall> @ccawley2011 Yep that fixes it. Nothing on valgrind and no crash
[13:58] <grogbot> [discord] <Digitall> @ccawley2011 Will you commit or should I?
[14:02] <Scummette> [scummvm] ccawley2011 pushed 1 new commits to master: https://is.gd/k8VMm7
[14:02] <Scummette> scummvm/master 8867779 ccawley2011: GUI: Fix uninitialised array in PicButtonWidget constructor
[14:03] <grogbot> [discord] <ccawley2011> I've committed the changes.
[14:03] <grogbot> [discord] <Digitall> Thx
[14:40] <-- Scummette left irc: Remote host closed the connection
[14:40] --> Scummette joined #scummvm.
[14:43] <-- grogbot left irc: Remote host closed the connection
[14:44] --> grogbot joined #scummvm.
[14:46] <-- grogbot left irc: Remote host closed the connection
[14:46] --> grogbot joined #scummvm.
[14:47] --> felsqualle joined #scummvm.
[14:48] <-- felsqualle left irc: Client Quit
[14:48] --> felsqualle joined #scummvm.
[14:49] <-- felsqualle left irc: Changing host
[14:49] --> felsqualle joined #scummvm.
[14:49] #scummvm: mode change '+o felsqualle' by ChanServ!ChanServ@services.libera.chat
[14:49] <-- sev left irc: Quit: This computer has gone to sleep
[14:53] --> sev joined #scummvm.
[14:53] <-- sev left irc: Changing host
[14:53] --> sev joined #scummvm.
[14:53] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[14:57] <grogbot> [discord] <lephilousophe> yet another test
[14:57] <LePhilousophe> and it works
[14:57] <felsqualle> yay!
[14:57] <felsqualle> IRC still going strong!
[14:58] <LePhilousophe> https://xkcd.com/1782/
[14:58] <felsqualle> now I want to set up a bouncer server that stays connected forever... the last time I did something like that was... 15 years ago?
[15:34] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/ja9d5e
[15:34] <Scummette> scummvm/master 0178b52 Strangerke: M4: RIDDLE: Fix for bug #16075 in room 303: Crash after looking at the copper tank viewer before visiting room 301
[15:34] <-- sev left irc: Quit: This computer has gone to sleep
[15:38] --> sev joined #scummvm.
[15:38] <-- sev left irc: Changing host
[15:38] --> sev joined #scummvm.
[15:38] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[15:49] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/ovjmyd
[15:49] <Scummette> scummvm/master f0e559b Strangerke: M4: RIDDLE: Fix for bug #16083 in room 303: Wrong speech when looking at the cobra case with the cobra inside
[16:20] <-- felsqualle left irc: Quit: Client closed
[16:34] <-- sev left irc: Quit: This computer has gone to sleep
[16:41] --> ny00123 joined #scummvm.
[16:44] <Scummette> [scummvm] lephilousophe closed pull request #6790: BACKENDS: OPENGL3D: Fix builds with USE_FORCED_GLES and without USE_GLAD (master...opengles2-fixes) https://is.gd/8anE8O
[16:58] <-- Scummette left irc: Remote host closed the connection
[16:58] --> Scummette joined #scummvm.
[17:02] <Scummette> [scummvm] lephilousophe closed pull request #6760: GRAPHICS: Add fast paths for converting between 32-bit pixel formats (master...fast-blit-8888) https://is.gd/H5yYAH
[17:02] <Scummette> [scummvm] lephilousophe pushed 5 new commits to master: https://is.gd/lW2apL
[17:02] <Scummette> scummvm/master be9a106 ccawley2011: COMMON: Add utility functions for rotating 32-bit integers
[17:02] <Scummette> scummvm/master f377815 ccawley2011: GRAPHICS: Add fast paths for converting between 32-bit pixel formats
[17:02] <Scummette> scummvm/master 8eb0dcb ccawley2011: OPENGL: Remove TextureSurfaceRGBA8888Swap
[17:23] <grogbot> [discord] <bluegr> thank you both @_digitall_ and @ccawley2011 for the quick fix 🙂
[17:55] <Scummette> [scummvm] lephilousophe pushed 1 new commits to master: https://is.gd/eJrOSq
[17:55] <Scummette> scummvm/master 76cf793 chkuendig: BACKENDS: OPENGL3D: Fix builds with USE_FORCED_GLES and without USE_GLAD
[18:00] --> sev joined #scummvm.
[18:00] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat
[18:29] <Scummette> [scummvm] Aztorius opened pull request #6796: BLADERUNNER: add ARM NEON pixel drawing for VQADecoder (master...bladerunner-neon) https://is.gd/dVP0ON
[18:38] <-- actioninja left irc: Remote host closed the connection
[18:41] --> actioninja joined #scummvm.
[18:57] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/gh4EK3
[18:57] <Scummette> scummvm/master afcf514 Strangerke: M4: RIDDLE: Fix for bug #16080 in room 704 (Frozen conversation)
[19:34] <Scummette> [scummvm] lephilousophe pushed 1 new commits to master: https://is.gd/ZPa2kB
[19:34] <Scummette> scummvm/master 1f9b65d lephilousophe: CRYOMNI3D: Add support for Chinese DOS/Win95 Versailles CD version
[19:36] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/cCFve6
[19:36] <Scummette> scummvm/master d9dd485 Strangerke: M4: RIDDLE: Fix for bug #16081 in several rooms of group 7 (control not desactivated after click on look at grate)
[19:37] <Scummette> [scummvm] aunnoman1 opened pull request #6797: ACCESS: Add keymapper support (master...access-keymapper) https://is.gd/ZrJEbL
[20:02] <Scummette> [scummvm] ormanbai123 opened pull request #6798: TEENAGENT: Add language support for Polish, Czech and Russian versions (master...teenagent) https://is.gd/fUDJX6
[20:30] <-- JamminUnit left irc: Quit: leaving
[20:33] <-- ny00123 left irc: Ping timeout: 245 seconds
[20:34] --> JamminUnit joined #scummvm.
[20:49] <Scummette> [scummvm] donaldm opened pull request #6799: DIRECTOR: Add support for The Simpsons Cartoon Studio (master...simpsons_cartoon_studio) https://is.gd/KeeNdL
[20:54] <Scummette> [scummvm] tag2015 pushed 1 new commits to master: https://is.gd/i7Bw5r
[20:54] <Scummette> scummvm/master 8eb5041 tag2015: DIRECTOR: Fix coldcutletusplay entry
[21:37] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/n4HnbS
[21:37] <Scummette> scummvm/master c937d4d Strangerke: M4: RIDDLE: Fix for bug #16084 in room 508 (breaking chain animation is playing at wrong speed)
[22:09] <Scummette> [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/QhOQQ2
[22:09] <Scummette> scummvm/master b5862a6 Strangerke: M4: RIDDLE: Fix for one of the bugs related to #16086 in room 407 (Wrong setup appearing in the lab sink) + fix missing control disable
[22:15] <-- borosky left irc: Ping timeout: 276 seconds
[22:50] <-- sev left irc: Quit: This computer has gone to sleep
[23:07] <Scummette> [scummvm] sluicebox pushed 1 new commits to master: https://is.gd/vJcLpc
[23:07] <Scummette> scummvm/master 63ebe6d sluicebox: SCI32: Fix QFG4 1.0 detection entry comments
[00:00] --- Mon Jul 7 2025