[00:00] GitHub80 (~GitHub80@192.30.252.45) joined #scummvm. [00:00] [scummvm] dreammaster closed pull request #1016: TITANIC: Star_control-cleanup (master...star_control-cleanup) https://git.io/v5wpg [00:00] GitHub80 (GitHub80@192.30.252.45) left #scummvm. [00:00] GitHub48 (~GitHub48@192.30.252.45) joined #scummvm. [00:00] [scummvm] dreammaster pushed 6 new commits to master: https://git.io/v5o3X [00:00] scummvm/master 40684e8 David Fioramonti: TITANIC: Better naming for Viewport function... [00:00] scummvm/master d69404d David Fioramonti: TITANIC: Make use of CCameraAutoMover::setPath() more clear... [00:00] scummvm/master 4bdea38 David Fioramonti: TITANIC: make sure of setOrientations more clear... [00:00] GitHub48 (GitHub48@192.30.252.45) left #scummvm. [00:26] Stormkeeper|2 (~kvirc@2.26.112.22) joined #scummvm. [00:28] Stormkeeper (~kvirc@2.26.112.22) left irc: Ping timeout: 255 seconds [00:36] GitHub184 (~GitHub184@192.30.252.40) joined #scummvm. [00:36] [scummvm] dreammaster pushed 1 new commit to master: https://git.io/v5oZX [00:36] scummvm/master aceff58 Paul Gilbert: TITANIC: Fix hiding SGT toilet after turning it on & off [00:36] GitHub184 (GitHub184@192.30.252.40) left #scummvm. [00:49] dafioram (~dafioram@pool-71-121-237-223.bltmmd.fios.verizon.net) joined #scummvm. [00:50] hm. [00:50] Good hm, or bad hm? [00:51] https://bugs.scummvm.org/ticket/10188 i am wondering if we managed to get really really lucky up to this point with the heuristic detection of entry sizes [00:52] the last entry in an audio map is always filled with 0xff, so the heuristic counts the number of 0xffs to decide entry sizes [00:52] but, uh, if the last entry has an offset ending in 0xff& [00:53] Ah, yes, that could be a problem, indeed. Just by pure dumnb chance [00:53] then the entry size that is actually 11 looks like it is 12 and this != check is wrong and it might explode exactly the way this person is reporting [00:55] Is there any way to figure that out based on if the file (or portion of it) is an even multple of some number of bytes? [00:55] yeah, thats what i am thinking about right now. [00:58] of course that will not work too if the size is a multiple of both 7 and 8 [00:59] its not entirely clear to me what the point was of doing this heuristically since its not like games could ever mix and match more than one audio map type since the original interpreter wouldnt have been able to handle that [00:59] Right, but a combination of the two approaches might. ie. start off with "12" for the found number of FF's, and keep decrementing the size until you get a proper multiple that works [01:02] yeah. i mean, it is better than what is happening right now [01:07] i just like to avoid layering broken approaches on top of other broken approaches :) [01:07] Right, the whole "throwing a major wobbly" :) [01:11] Joefish (~Joefish@p200300764F1439001A5E0FFFFE1124CA.dip0.t-ipconnect.de) left irc: Ping timeout: 246 seconds [01:12] seeing such a large offset is a bit of a curiosity in itself, since the offsets are relative [01:12] it would mean the final sample would need to be placed over 16MB after the penultimate sample [01:13] or that the audio map was in big-endian format for some reason [01:13] (this isnt impossible, the audio resource file is 210MB, but it also seems like a crazy thing) [01:13] Maybe an unused sample was simly filled in with garbage values [01:14] i guess to be sure i will ask them to upload the map file. [01:14] rsn8887 (Elite19646@gateway/shell/elitebnc/x-dwlwphnavfsjszfy) left irc: Quit: EliteBNC - http://elitebnc.org (Auto-Removal: idle account/not being used) [01:23] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 260 seconds [01:23] Dominus (~dominus@unaffiliated/dominus) joined #scummvm. [01:24] dreammaster: liking that star puzzle more than before? [01:25] Joefish (~Joefish@p200300764F132B001A5E0FFFFE1124CA.dip0.t-ipconnect.de) joined #scummvm. [01:25] #scummvm: mode change '+v Joefish' by ChanServ!ChanServ@services. [01:26] travis-ci (~travis-ci@ec2-54-81-171-172.compute-1.amazonaws.com) joined #scummvm. [01:26] scummvm/scummvm#4328 (master - 2b7b75f : Paul Gilbert): The build passed. [01:26] Change view : https://github.com/scummvm/scummvm/compare/e7745bf02551...2b7b75f9a8d9 [01:26] Build details : https://travis-ci.org/scummvm/scummvm/builds/273115938 [01:26] travis-ci (travis-ci@ec2-54-81-171-172.compute-1.amazonaws.com) left #scummvm. [01:30] dafioram: In all honesty, I haven't actually played it since you started doing your refactoring, just verified that your pull requests were all clean and seemed to make sense. [01:30] There were more than enough remaining bugs in the other areas to look into :) [01:31] I've been quite happy to leave sprucing it all up in your capable hands. After all, you've proven quite the master at identifying bugs. [01:32] its a good challenge. You're making my job harder with each iteration [01:34] Luckily, it seems like the bug list is starting to finally wind down. If we ignore the cursors and optimizations as a nice to have, only the music room music and it's bells video are likely to be significant/problematic things to look into [01:37] the music puzzle has quite a lot of functionality, once 9885 is resolved I will need to test it thorougly. Of course we can get the solution, but there is a lot of behaviors that will need to be checked. [01:39] Right. Given modern systems, I may be able to simply matters by dumping the paging it uses and simply allocate a buffer big enough for the entire sound. And if I dump the original's entire playback data, I should be able to verify if it's byte identical. Then I'd at least know that the generation is working correctly [01:40] the official strategy guide seems to think that puzzle can be solved by playing with the knobs and having a musical ear, so that is experience that I would be testing. [01:40] After that, it'd just be a matter of ensuring that ScummVM is correctly treating the raw data the correct way. I'm not an expert on music, but I know there's minor differences like signed vs unsigned handling that might be causing issues. [01:40] just use the ring buffer stream instead of preallocating like that? [01:42] MemoryReadWriteStream. maybe that should get a better name like RingBufferStream :) [01:42] Right, I was thinking of using MemoryReadWriteStream [01:42] oh, ok. cool. [01:42] we are on the same page then. [01:43] from my experience so far, the only good that comes out of implementing things exactly like the original engine is to be able to reverify the reverse engineering from the machine code [01:43] Seems like it :). At the time I was primarily focused on a 1:1 representation of the code where possible, since it was one of the last areas of the game I hadn't disassembled, so was writing the code as I reversed it. But with it now in place, I can make some simplifications at the same time I'm debugging it [01:44] bugs and all [01:44] (the original has a lot of bugs) [01:44] well see if i change my tune again in a few years, but it seems to really only be worth it when youre writing an engine that is used for many games [01:45] Oh man, can Strangerke tell you stories on that subject.. the Dungeon Master code with all it's ifdefs for byte-matched compatibility of the original executables for, what, about a dozen different versions. Nasty. :P [01:45] i seem to recall that the music puzzle was super bustedzo in the original engine, so i was really enthusiastic about being able to play it in scummvm. and then it was broken in scummvm. hopes and dreams shattered forever. [01:45] FOREVER. [01:46] "I must apologize for the music, it is nasty" [01:47] https://www.youtube.com/watch?v=SDWHIMUfi1Q [01:49] https://youtu.be/UWJpPBV7XOo?list=PLvFk3QopsJRBA1QHrIEjhfBvfnkRPzxlK&t=781 [01:49] https://ifarchive.org/if-archive/infocom/articles/NZT-testing-text dafioram worked for Infocom before [01:52] is there a way we can pipe some cackling laughs in here every time a new ticket is opened? [01:52] i can think of no better way to improve productivity and morale. [01:54] Given the number of bugs dafioram found, it's probably for the best that we dont [01:55] how many more bugs can there be? [01:55] 580 active ones right now [01:56] Lets just hope there won't be too many more for Titanic to add to the overall bug tracker total :) [01:56] i could just delete the database [01:56] truncate tickets; [01:57] zero bugs! ship it! [01:57] Or another unexpected "downtime" that accidentally-on-purpose loses everything ;) [01:57] hurry while the trackers down! [01:57] unfortunately i took the opportunity once the server returned to make some backups [01:57] so you wont get rid of them that easily. [01:58] travis-ci (~travis-ci@ec2-54-221-18-187.compute-1.amazonaws.com) joined #scummvm. [01:58] scummvm/scummvm#4329 (master - aceff58 : Paul Gilbert): The build passed. [01:58] Change view : https://github.com/scummvm/scummvm/compare/2b7b75f9a8d9...aceff5852e7f [01:58] Build details : https://travis-ci.org/scummvm/scummvm/builds/273123592 [01:58] travis-ci (travis-ci@ec2-54-221-18-187.compute-1.amazonaws.com) left #scummvm. [01:58] Pity :P [02:00] Lightkey (~Darklock@p200300764C71F88122CF30FFFE083718.dip0.t-ipconnect.de) left irc: Ping timeout: 246 seconds [02:15] Lightkey (~Darklock@p200300764C71F86222CF30FFFE083718.dip0.t-ipconnect.de) joined #scummvm. [02:41] Lightkey: titanic had a bug at one point similar to that corpse bug from that article. When movement via the keyboard was in its early stages, I was able to report the craziest behaviors. I could change the seasons, skip entire parts, go the end game, etc. It was fun until dreammaster shut it down. [02:45] dreammaster (~dreammast@c-73-149-116-247.hsd1.vt.comcast.net) left irc: [04:04] dafioram (~dafioram@pool-71-121-237-223.bltmmd.fios.verizon.net) left irc: Quit: Leaving [04:15] Nick change: Stormkeeper|2 -> Storm-AFK [04:47] am1_1 (dce39546@gateway/web/freenode/ip.220.227.149.70) joined #scummvm. [05:07] abrcdbr (~abrcdbr@109.87.232.207) joined #scummvm. [05:09] am1_1 (dce39546@gateway/web/freenode/ip.220.227.149.70) left irc: Quit: Page closed [05:09] am1_1 (dce39546@gateway/web/freenode/ip.220.227.149.70) joined #scummvm. [05:15] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 252 seconds [05:28] am1_1 (dce39546@gateway/web/freenode/ip.220.227.149.70) left irc: Ping timeout: 260 seconds [06:07] ny00123 (~ny00123@2a02:ed0:43ba:b00::2) joined #scummvm. [06:11] abrcdbr (~abrcdbr@109.87.232.207) left irc: Quit: My MacBook has gone to sleep. ZZZzzz& [06:24] _sev (~sev@scummvm/undead/sev) joined #scummvm. [06:24] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [06:31] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [06:32] _sev (~sev@scummvm/undead/sev) joined #scummvm. [06:32] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [06:34] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) joined #scummvm. [06:34] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [06:37] abrcdbr (~abrcdbr@109.87.232.207) joined #scummvm. [06:37] abrcdbr (~abrcdbr@109.87.232.207) left irc: Remote host closed the connection [06:39] morning [06:45] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [06:49] Morning all [07:00] _sev (~sev@scummvm/undead/sev) joined #scummvm. [07:00] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [07:27] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [07:33] ced117 (~ced117@opensuse/member/ced117) left irc: Ping timeout: 248 seconds [07:35] ced117 (~ced117@opensuse/member/ced117) joined #scummvm. [08:23] LittleToonCat (~littlecat@47.54.148.237) left irc: Remote host closed the connection [08:34] TMM (~hp@fsf/member/pdpc.professional.tmm) left irc: Quit: Ex-Chat [08:36] criezy|Work (a5e150ea@gateway/web/freenode/ip.165.225.80.234) joined #scummvm. [08:36] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services. [09:17] ajax16384 (~User@109.60.138.138) joined #scummvm. [09:17] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [09:26] TMM (~hp@fsf/member/pdpc.professional.tmm) joined #scummvm. [09:26] #scummvm: mode change '+o TMM' by ChanServ!ChanServ@services. [09:27] _sev (~sev@a238130.upc-a.chello.nl) joined #scummvm. [09:27] _sev (~sev@a238130.upc-a.chello.nl) left irc: Changing host [09:27] _sev (~sev@scummvm/undead/sev) joined #scummvm. [09:27] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [09:57] user9 (~Thunderbi@leoseb.ujf-grenoble.fr) left irc: Ping timeout: 240 seconds [10:11] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) left irc: Read error: Connection reset by peer [10:14] user9 (~Thunderbi@leoseb.ujf-grenoble.fr) joined #scummvm. [10:21] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [10:34] _sev (~sev@scummvm/undead/sev) joined #scummvm. [10:34] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [10:47] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [10:50] abrcdbr (~abrcdbr@159.224.109.206) joined #scummvm. [11:28] _sev (~sev@scummvm/undead/sev) joined #scummvm. [11:28] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [11:34] Boobuigi (~weechat@2602:304:cdcd:1db0:9646:96ff:fe11:21a9) joined #scummvm. [11:36] Does "scummvm -z" output stay up to date? I ask because I don't see t7g (The 7th Guest), even though its compatibility is listed as excellent. http://www.scummvm.org/compatibility/DEV/t7g/ [11:37] I use "scummvm -z" to automatically organize files and noticed The 7th Guest was overlooked. There could be others. [11:39] abrcdbr (~abrcdbr@159.224.109.206) left irc: Ping timeout: 248 seconds [11:41] it's apparently grouped into the "Groovie engine game" entry [11:42] which is not really ideal for the -z output [11:43] for example all sierra games are also grouped into "Sierra AGI game" and "Sierra SCI game" there [11:44] user9 (~Thunderbi@leoseb.ujf-grenoble.fr) left irc: Ping timeout: 240 seconds [12:37] Strangerke|work (5bb7582b@gateway/web/freenode/ip.91.183.88.43) joined #scummvm. [12:37] hi guys [12:42] wjp: I see. Thanks for the explanation. [12:44] Strangerke|work (5bb7582b@gateway/web/freenode/ip.91.183.88.43) left irc: Quit: Bbl [12:48] Strangerke|work (5bb7582b@gateway/web/freenode/ip.91.183.88.43) joined #scummvm. [13:27] user9 (~Thunderbi@leoseb.ujf-grenoble.fr) joined #scummvm. [13:39] ny00123 (~ny00123@2a02:ed0:43ba:b00::2) left irc: Quit: Leaving [14:18] Littleboy (~littleboy@c-73-4-50-241.hsd1.ma.comcast.net) joined #scummvm. [14:18] #scummvm: mode change '+o Littleboy' by ChanServ!ChanServ@services. [14:28] abrcdbr (~abrcdbr@109.87.232.207) joined #scummvm. [14:45] abrcdbr (~abrcdbr@109.87.232.207) left irc: Quit: Textual IRC Client: www.textualapp.com [14:55] jamm (~jam@240d:1a:1b4:8600:508c:c27b:2a6c:ab39) joined #scummvm. [14:55] jamm (~jam@240d:1a:1b4:8600:508c:c27b:2a6c:ab39) left irc: Changing host [14:55] jamm (~jam@unaffiliated/jamm) joined #scummvm. [15:17] TMM (~hp@fsf/member/pdpc.professional.tmm) left irc: Quit: Ex-Chat [15:59] Henke37 (~Henrik@81-227-16-59-no133.bredband.skanova.com) joined #scummvm. [16:00] LittleToonCat (~littlecat@47.54.148.237) joined #scummvm. [16:01] ajax16384 (~User@109.60.138.138) left irc: Quit: Leaving [16:02] #10173 sounds quite mysterious [16:05] wjp: hey! good to see you. yeah, it is. [16:06] I was thinking maybe a cwd issue, but I'm not sure how that would happen in practice [16:06] i forgot to mention since i wrote that comment too late that the 0.SCR thing is somewhat interesting since 0.SCR is a patch file in EQ1 EN floppy [16:07] (i.e., similarly strange things happen if I start scummvm from the eq2 directory) [16:08] aha [16:08] huh. i mean, there is at least one code path where path is given as ".", but theres a warning in there. [16:08] if I try to start eq2 when in the eq1 directory: [16:08] Access violation seeking script.0 buffer: 0 + 54514 > 11476 (abs: 9344 + 54514 > 20820)! [16:09] (by the way: . is always added to SearchMan) [16:09] (in SearchManager constructor) [16:10] huh. [16:10] does the cwd get changed in windows? [16:10] that's what I'm wondering [16:10] don't see any SetCurrentDirectory calls though [16:11] anything to do with $PATH? [16:12] hrm, don't think so, but not familiar enough with windows to say [16:12] the odd thing is that this seems backward though [16:13] exmensa (~exmensa@96.31.26.199) joined #scummvm. [16:13] apparently this 54514 error happens when eq2 picks up eq1 data files [16:14] does it happen if you move away 0.SCR? [16:14] or is it only because it is picking up 0.SCR because it exists in EQ1 and not in EQ2? [16:16] the error also happens if I start scummvm from an almost empty directory containing only eq1's 0.SCR [16:22] does any part of the sci detector accidentally use SearchMan? [16:23] although I suppose that wouldn't cause a Windows-only effect [16:28] not as far as i saw, everything seemed pretty much well-behaved [16:33] it seems a little weird that SearchMan directories get added in the SciEngine constructor instead of initializePath [16:35] im not quite sure how that all ends up working out, since the default initializePath adds the game path with a depth of 4 [16:40] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) joined #scummvm. [16:40] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services. [16:44] ajax16384 (~User@109.60.130.33) joined #scummvm. [16:44] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [17:09] Farmboy0 (~quassel@p5DD10E25.dip0.t-ipconnect.de) joined #scummvm. [17:09] Farmboy0 (~quassel@p5DD10E25.dip0.t-ipconnect.de) left irc: Changing host [17:09] Farmboy0 (~quassel@xoreos/farmboy0) joined #scummvm. [17:14] criezy|Work (a5e150ea@gateway/web/freenode/ip.165.225.80.234) left irc: Quit: Page closed [17:51] criezy (~criezy@host86-141-213-152.range86-141.btcentralplus.com) joined #scummvm. [17:51] #scummvm: mode change '+o criezy' by ChanServ!ChanServ@services. [17:55] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [18:18] DJWillis (~djwillis@cpc123746-trow7-2-0-cust5.18-1.cable.virginm.net) joined #scummvm. [18:18] #scummvm: mode change '+o DJWillis' by ChanServ!ChanServ@services. [18:31] abrcdbr (~abrcdbr@159.224.109.206) joined #scummvm. [18:37] abrcdbr_ (~abrcdbr@109.87.232.207) joined #scummvm. [18:37] abrcdbr (~abrcdbr@159.224.109.206) left irc: Ping timeout: 240 seconds [18:41] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [18:41] #scummvm: mode change '+o Strangerke' by ChanServ!ChanServ@services. [18:47] jamm (~jam@unaffiliated/jamm) left irc: Ping timeout: 246 seconds [18:54] _sev (~sev@scummvm/undead/sev) joined #scummvm. [18:54] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [19:14] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [19:21] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 260 seconds [19:21] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [19:21] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [19:26] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 240 seconds [19:36] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) joined #scummvm. [19:36] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [19:41] TMM (~hp@fsf/member/pdpc.professional.tmm) joined #scummvm. [19:41] #scummvm: mode change '+o TMM' by ChanServ!ChanServ@services. [19:44] _sev (~sev@scummvm/undead/sev) joined #scummvm. [19:44] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [19:47] Littleboy (~littleboy@c-73-4-50-241.hsd1.ma.comcast.net) left irc: Read error: Connection reset by peer [19:55] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [19:55] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [20:06] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 248 seconds [20:11] girafe (~girafe@92.184.100.203) joined #scummvm. [20:15] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [20:15] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [20:20] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 255 seconds [20:27] Nick change: Storm-AFK -> Stormkeeper [20:32] GitHub41 (~GitHub41@192.30.252.40) joined #scummvm. [20:32] [scummvm] criezy pushed 1 new commit to master: https://git.io/v56en [20:32] scummvm/master d98d4bc Thierry Crozat: UPDATES: Fix crash when compiling with updates enabled but without an UpdateManager... [20:32] GitHub41 (GitHub41@192.30.252.40) left #scummvm. [20:33] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) left irc: Ping timeout: 248 seconds [20:35] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [20:36] _sev (~sev@scummvm/undead/sev) joined #scummvm. [20:36] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [20:46] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [20:46] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [20:46] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [20:49] abrcdbr (~abrcdbr@159.224.109.206) joined #scummvm. [20:51] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 248 seconds [20:52] abrcdbr_ (~abrcdbr@109.87.232.207) left irc: Ping timeout: 240 seconds [20:53] ajax16384 (~User@109.60.130.33) left irc: Read error: Connection reset by peer [20:53] _sev (~sev@a238130.upc-a.chello.nl) joined #scummvm. [20:53] _sev (~sev@a238130.upc-a.chello.nl) left irc: Changing host [20:53] _sev (~sev@scummvm/undead/sev) joined #scummvm. [20:53] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [21:13] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [21:13] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [21:15] m_kiewitz (~m_kiewitz@x4d03f418.dyn.telefonica.de) joined #scummvm. [21:15] m_kiewitz (~m_kiewitz@x4d03f418.dyn.telefonica.de) left irc: Changing host [21:15] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) joined #scummvm. [21:15] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services. [21:16] GitHub11 (~GitHub11@192.30.252.42) joined #scummvm. [21:16] [scummvm] csnover pushed 9 new commits to master: https://git.io/v56kW [21:16] scummvm/master d97f192 Colin Snover: SCI: Improve array bounds safety check... [21:16] scummvm/master b5e8013 Colin Snover: DEBUGGER: Flush stdout after debugger writes with USE_TEXT_CONSOLE_FOR_DEBUGGER... [21:16] scummvm/master 5bc4b46 Colin Snover: COMMON: Add comparator for sorting ArchiveMemberList [21:16] GitHub11 (GitHub11@192.30.252.42) left #scummvm. [21:16] GitHub20 (~GitHub20@192.30.252.35) joined #scummvm. [21:16] [scummvm] criezy pushed 1 new commit to master: https://git.io/v56k4 [21:16] scummvm/master f9bc0d6 Thierry Crozat: I18N: Update translations templates [21:16] GitHub20 (GitHub20@192.30.252.35) left #scummvm. [21:21] DrMcCoy (~drmccoy@xoreos/drmccoy) left irc: Ping timeout: 240 seconds [21:47] DrMcCoy (~drmccoy@xoreos/drmccoy) joined #scummvm. [21:47] #scummvm: mode change '+o DrMcCoy' by ChanServ!ChanServ@services. [21:57] _sev (~sev@scummvm/undead/sev) left irc: Ping timeout: 248 seconds [22:05] _sev (~sev@a238130.upc-a.chello.nl) joined #scummvm. [22:05] _sev (~sev@a238130.upc-a.chello.nl) left irc: Changing host [22:05] _sev (~sev@scummvm/undead/sev) joined #scummvm. [22:05] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [22:07] abrcdbr_ (~abrcdbr@109.87.232.207) joined #scummvm. [22:07] abrcdbr_ (~abrcdbr@109.87.232.207) left irc: Max SendQ exceeded [22:08] abrcdbr (~abrcdbr@159.224.109.206) left irc: Ping timeout: 248 seconds [22:10] abrcdbr_ (~abrcdbr@109.87.232.207) joined #scummvm. [22:10] Henke37 (~Henrik@81-227-16-59-no133.bredband.skanova.com) left irc: Quit: ERR_SHUTDOWN [22:38] criezy (~criezy@host86-141-213-152.range86-141.btcentralplus.com) left irc: Quit: criezy [22:51] Farmboy0 (~quassel@xoreos/farmboy0) left irc: Remote host closed the connection [23:01] Port build status changed with f11b0a4f: Failure: master-ds [23:11] girafe (~girafe@92.184.100.203) left irc: Quit: Leaving [23:32] vv222 (~vv221@dotslashplay.it) left irc: Ping timeout: 246 seconds [23:38] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) left irc: Quit: Leaving [23:39] vv222 (~vv221@dotslashplay.it) joined #scummvm. [23:51] Port build status changed with f11b0a4f: Failure: master-debian-x86-nullbackend [00:00] --- Sat Sep 9 2017