[00:38] gsi_ (~gsi@user/gsi) left irc: Ping timeout: 248 seconds [01:54] Dominus (~dominus@exult/developer/dominus) left irc: Ping timeout: 252 seconds [01:55] DominusExult (~dominus@exult/developer/dominus) joined #scummvm. [01:55] Nick change: DominusExult -> Dominus [05:05] gsi (~gsi@user/gsi) joined #scummvm. [06:24] Dominus (~dominus@exult/developer/dominus) left irc: Ping timeout: 248 seconds [06:25] Dominus (~dominus@exult/developer/dominus) joined #scummvm. [08:15] sev (~sev@151.38.159.122) joined #scummvm. [08:15] sev (~sev@151.38.159.122) left irc: Changing host [08:15] sev (~sev@scummvm/sev) joined #scummvm. [08:15] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [08:31] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [09:01] sev (~sev@151.38.159.122) joined #scummvm. [09:01] sev (~sev@151.38.159.122) left irc: Changing host [09:01] sev (~sev@scummvm/sev) joined #scummvm. [09:01] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [09:01] [scummvm] bluegr closed pull request #6791: GUI: Support CLUT8 surfaces in graphical widgets (master...gui-widget-clut8) https://is.gd/WwzDgA [09:01] [scummvm] bluegr pushed 2 new commits to master: https://is.gd/eZ8Inq [09:01] scummvm/master b423a34 ccawley2011: GRAPHICS: Copy miscellaneous properties when scaling ManagedSurfaces [09:01] scummvm/master 007009a ccawley2011: GUI: Support CLUT8 surfaces in graphical widgets [09:01] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://is.gd/vloebC [09:01] scummvm/master 4cf1040 weblate: I18N: Update translations templates [09:01] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://is.gd/0gaRdf [09:01] scummvm/master 4976abe weblate: I18N: Update translation files [09:07] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [09:14] sev (~sev@scummvm/sev) joined #scummvm. [09:14] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [09:38] borosky (~borosky@213-134-187-71.dynamic.play.pl) joined #scummvm. [09:54] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [09:57] sev (~sev@scummvm/sev) joined #scummvm. [09:57] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [10:58] Scummette_ (~Scummette@al.scummvm.net) joined #scummvm. [11:00] Scummette_ (~Scummette@al.scummvm.net) left irc: Remote host closed the connection [11:06] Nick change: Deledrius_ -> Deledrius [11:52] Scummette (~Scummette@al.scummvm.net) left irc: Remote host closed the connection [11:52] Scummette (~Scummette@al.scummvm.net) joined #scummvm. [12:36] janov911 (~janov911@77-170-197-57.fixed.kpn.net) joined #scummvm. [12:43] janov911 (~janov911@77-170-197-57.fixed.kpn.net) left irc: Quit: Leaving [12:57] [discord] @.bluegr Minor regression and crash of ScummVM at startup with latest master... [12:57] [discord] :/ [12:57] [discord] Ouch [12:58] [discord] Here is the valgrind backtrace. It is probably fixable. [12:58] [discord] https://cdn.discordapp.com/attachments/581224061091446795/1391402893688573992/message.txt?ex=686bc46c&is=686a72ec&hm=a475c1eca7ebf26593688785ac67bf30ab241c668316c232037eed55704c3eb7& [12:58] [discord] Because if this, I assume? [12:58] [discord] https://github.com/scummvm/scummvm/commit/007009a77c74777a1f839ec12482a2c8653b30f4 [12:58] [discord] Yes, one of those [12:58] [discord] Because of this, I assume? [12:58] [discord] https://github.com/scummvm/scummvm/commit/007009a77c74777a1f839ec12482a2c8653b30f4 (edited) [12:59] [discord] @ccawley2011 could you check, please? [12:59] [discord] I'm not at my PC atm [12:59] [discord] I will take a look as well and see if it is an easy fix [13:07] [discord] 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] [discord] Does this patch help fix the issue? [13:12] [discord] ``` [13:12] [discord] diff --git a/gui/widget.cpp b/gui/widget.cpp [13:12] [discord] index e196e51e70b..6b595d81ffb 100644 [13:12] [discord] --- a/gui/widget.cpp [13:12] [discord] +++ b/gui/widget.cpp [13:12] [discord] @@ -621,7 +621,7 @@ const Graphics::ManagedSurface *scaleGfx(const Graphics::ManagedSurface *gfx, in [13:12] [discord] [13:12] [discord] PicButtonWidget::PicButtonWidget(GuiObject *boss, int x, int y, int w, int h, bool scale, const Common::U32String &tooltip, uint32 cmd, uint8 hotkey) [13:12] [discord] : ButtonWidget(boss, x, y, w, h, scale, Common::U32String(), tooltip, cmd, hotkey), [13:12] [discord] - _showButton(true) { [13:12] [discord] + _showButton(true), _gfx{} { [13:12] [discord] Common::fill(_alphaType, _alphaType + ARRAYSIZE(_alphaType), Graphics::ALPHA_OPAQUE); [13:12] [discord] setFlags(WIDGET_ENABLED/* | WIDGET_BORDER*/ | WIDGET_CLEARBG); [13:12] [discord] _type = kButtonWidget; [13:12] [discord] @@ -633,7 +633,7 @@ PicButtonWidget::PicButtonWidget(GuiObject *boss, int x, int y, int w, int h, co [13:12] [discord] [13:12] [discord] PicButtonWidget::PicButtonWidget(GuiObject *boss, const Common::String &name, const Common::U32String &tooltip, uint32 cmd, uint8 hotkey) [13:12] [discord] : ButtonWidget(boss, name, Common::U32String(), tooltip, cmd, hotkey), [13:12] [discord] - _showButton(true) { [13:12] [discord] + _showButton(true), _gfx{} { [13:12] [discord] Common::fill(_alphaType, _alphaType + ARRAYSIZE(_alphaType), Graphics::ALPHA_OPAQUE); [13:12] [discord] setFlags(WIDGET_ENABLED/* | WIDGET_BORDER*/ | WIDGET_CLEARBG); [13:12] [discord] _type = kButtonWidget; [13:12] [discord] ``` [13:31] [discord] Two secs. Will test [13:43] [discord] @ccawley2011 Yep that fixes it. Nothing on valgrind and no crash [13:58] [discord] @ccawley2011 Will you commit or should I? [14:02] [scummvm] ccawley2011 pushed 1 new commits to master: https://is.gd/k8VMm7 [14:02] scummvm/master 8867779 ccawley2011: GUI: Fix uninitialised array in PicButtonWidget constructor [14:03] [discord] I've committed the changes. [14:03] [discord] Thx [14:40] Scummette (~Scummette@al.scummvm.net) left irc: Remote host closed the connection [14:40] Scummette (~Scummette@al.scummvm.net) joined #scummvm. [14:43] grogbot (~grogbot@al.scummvm.net) left irc: Remote host closed the connection [14:44] grogbot (~grogbot@al.scummvm.net) joined #scummvm. [14:46] grogbot (~grogbot@al.scummvm.net) left irc: Remote host closed the connection [14:46] grogbot (~grogbot@al.scummvm.net) joined #scummvm. [14:47] felsqualle (~felsquall@p2003000633520827a1258c3be4a0c11e.dip0.t-ipconnect.de) joined #scummvm. [14:48] felsqualle (~felsquall@p2003000633520827a1258c3be4a0c11e.dip0.t-ipconnect.de) left irc: Client Quit [14:48] felsqualle (~felsquall@p2003000633520827a1258c3be4a0c11e.dip0.t-ipconnect.de) joined #scummvm. [14:49] felsqualle (~felsquall@p2003000633520827a1258c3be4a0c11e.dip0.t-ipconnect.de) left irc: Changing host [14:49] felsqualle (~felsquall@scummvm/rootfather) joined #scummvm. [14:49] #scummvm: mode change '+o felsqualle' by ChanServ!ChanServ@services.libera.chat [14:49] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [14:53] sev (~sev@151.38.159.122) joined #scummvm. [14:53] sev (~sev@151.38.159.122) left irc: Changing host [14:53] sev (~sev@scummvm/sev) joined #scummvm. [14:53] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [14:57] [discord] yet another test [14:57] and it works [14:57] yay! [14:57] IRC still going strong! [14:58] https://xkcd.com/1782/ [14:58] 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] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/ja9d5e [15:34] 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 (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [15:38] sev (~sev@151.38.159.122) joined #scummvm. [15:38] sev (~sev@151.38.159.122) left irc: Changing host [15:38] sev (~sev@scummvm/sev) joined #scummvm. [15:38] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [15:49] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/ovjmyd [15:49] 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 (~felsquall@scummvm/rootfather) left irc: Quit: Client closed [16:34] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [16:41] ny00123 (~ny00123@2a0d:6fc2:5ac2:9e00:ef2b:d73:c1b0:38eb) joined #scummvm. [16:44] [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 (~Scummette@al.scummvm.net) left irc: Remote host closed the connection [16:58] Scummette (~Scummette@al.scummvm.net) joined #scummvm. [17:02] [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] [scummvm] lephilousophe pushed 5 new commits to master: https://is.gd/lW2apL [17:02] scummvm/master be9a106 ccawley2011: COMMON: Add utility functions for rotating 32-bit integers [17:02] scummvm/master f377815 ccawley2011: GRAPHICS: Add fast paths for converting between 32-bit pixel formats [17:02] scummvm/master 8eb0dcb ccawley2011: OPENGL: Remove TextureSurfaceRGBA8888Swap [17:23] [discord] thank you both @_digitall_ and @ccawley2011 for the quick fix 🙂 [17:55] [scummvm] lephilousophe pushed 1 new commits to master: https://is.gd/eJrOSq [17:55] scummvm/master 76cf793 chkuendig: BACKENDS: OPENGL3D: Fix builds with USE_FORCED_GLES and without USE_GLAD [18:00] sev (~sev@scummvm/sev) joined #scummvm. [18:00] #scummvm: mode change '+o sev' by ChanServ!ChanServ@services.libera.chat [18:29] [scummvm] Aztorius opened pull request #6796: BLADERUNNER: add ARM NEON pixel drawing for VQADecoder (master...bladerunner-neon) https://is.gd/dVP0ON [18:38] actioninja (~actioninj@user/actioninja) left irc: Remote host closed the connection [18:41] actioninja (~actioninj@user/actioninja) joined #scummvm. [18:57] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/gh4EK3 [18:57] scummvm/master afcf514 Strangerke: M4: RIDDLE: Fix for bug #16080 in room 704 (Frozen conversation) [19:34] [scummvm] lephilousophe pushed 1 new commits to master: https://is.gd/ZPa2kB [19:34] scummvm/master 1f9b65d lephilousophe: CRYOMNI3D: Add support for Chinese DOS/Win95 Versailles CD version [19:36] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/cCFve6 [19:36] 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] [scummvm] aunnoman1 opened pull request #6797: ACCESS: Add keymapper support (master...access-keymapper) https://is.gd/ZrJEbL [20:02] [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 (~JU@user/JamminUnit) left irc: Quit: leaving [20:33] ny00123 (~ny00123@2a0d:6fc2:5ac2:9e00:ef2b:d73:c1b0:38eb) left irc: Ping timeout: 245 seconds [20:34] JamminUnit (~JU@user/JamminUnit) joined #scummvm. [20:49] [scummvm] donaldm opened pull request #6799: DIRECTOR: Add support for The Simpsons Cartoon Studio (master...simpsons_cartoon_studio) https://is.gd/KeeNdL [20:54] [scummvm] tag2015 pushed 1 new commits to master: https://is.gd/i7Bw5r [20:54] scummvm/master 8eb5041 tag2015: DIRECTOR: Fix coldcutletusplay entry [21:37] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/n4HnbS [21:37] scummvm/master c937d4d Strangerke: M4: RIDDLE: Fix for bug #16084 in room 508 (breaking chain animation is playing at wrong speed) [22:09] [scummvm] Strangerke pushed 1 new commits to master: https://is.gd/QhOQQ2 [22:09] 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 (~borosky@213-134-187-71.dynamic.play.pl) left irc: Ping timeout: 276 seconds [22:50] sev (~sev@scummvm/sev) left irc: Quit: This computer has gone to sleep [23:07] [scummvm] sluicebox pushed 1 new commits to master: https://is.gd/vJcLpc [23:07] scummvm/master 63ebe6d sluicebox: SCI32: Fix QFG4 1.0 detection entry comments [00:00] --- Mon Jul 7 2025