[Back to Index]

  
[00:16] <-- Mia left irc: Ping timeout: 255 seconds
[00:22] --> exmensa joined #scummvm.
[00:29] --> GitHub98 joined #scummvm.
[00:29] <GitHub98> [scummvm] dreammaster pushed 1 new commit to master: https://git.io/vHjVY
[00:29] <GitHub98> scummvm/master c92e1ec Paul Gilbert: TITANIC: Fix tearing/incorrect blocks in starship crash cutscene
[00:29] GitHub98 (GitHub98@192.30.252.40) left #scummvm.
[00:33] <snover> dreammaster: create_titanic did something weird when i tried to specify the titanic.dat on the command line. (by weird, i mean, seemed to get stuck in an infinite loop; when i killed it, it had written an 88.5MiB titanic.dat, in the cwd, not in the location i specified)
[00:34] <snover> is that not actually an output parameter?
[00:35] <dreammaster> Did you just specify titanic.dat? You should specify parameters of st.exe st_de.exe titanic.dat (where st_de.exe is a renamed copy of the German EXE)
[00:35] <snover> oh, i ran it `ST.exe titanic.dat`
[00:35] <snover> (i have no german copy)
[00:35] <dreammaster> Ah. Maybe I have a bug with that handling. Been running with the German exe additionally for a while. Let me quickly check
[00:39] <dreammaster> Yep. I had incorrect argc check values
[00:39] --> GitHub139 joined #scummvm.
[00:39] <GitHub139> [scummvm] dreammaster pushed 1 new commit to master: https://git.io/vHjVV
[00:39] <GitHub139> scummvm/master f3c7aa9 Paul Gilbert: DEVTOOLS: Fix incorrect argc checks in create_titanic
[00:39] GitHub139 (GitHub139@192.30.252.42) left #scummvm.
[01:01] <-- m_kiewitz left irc: Quit: technology isn't intrinsically good or evil. It's how it's used. Like the Death Ray.
[01:07] <-- t0by left irc: Quit: t0by
[01:28] --> DominusExult joined #scummvm.
[01:30] <-- Dominus left irc: Ping timeout: 260 seconds
[01:30] Nick change: DominusExult -> Dominus
[01:45] <dreammaster> I'm starting to track down various remaining graphic glitches, and I've got a bit of a poser. If I start the game from a savegame in the middle of the embarkation lobby and move towards the desk, I get some graphic corruption for several frames
[01:46] <dreammaster> It's going to b306.avi, and starting to animate from frame 442. The first output frame looks like this: http://imageshack.com/a/img922/550/UVf8aV.png
[01:46] <dreammaster> I checked in the system AVIDecoder, and it's registering a key frame for 442, so it's not using any prior frames to build up a starting background. So I'm not sure why this is happening
[01:48] <dreammaster> Hmmm.. actually.. frame 441 does give a perfect background. Maybe there's something in the system AVI decoding the game uses that automatically starts at the desired frame - 1, and then decodes two frames in a row. Sort of like a guard against the starting frame having bad data like this
[01:48] <snover> which codec is it?
[01:50] <dreammaster> Cinepak
[01:55] <snover> looks like i am still too ignorant to be able to help with video coding problems like this
[01:57] <dreammaster> Oh.. Now this lookings interesting.. in the original's AVISurface_SeekToFrame, it calls AVIStreamFindSample with flags of 14h. According to a comment I even went to the trouble of checking out, this reprsents FIND_KEY | FIND_PREV
[01:57] <dreammaster> I'm betting the 'FIND_PREV' tells it to get the prior frame
[01:59] <dreammaster> Hmm.. the help is a bit ambiguous, talking only about "searching backwards". But AVISurface_SeekToFrame does have a call to RenderFrame within it.
[01:59] <dreammaster> I'll bet it's doing a seek to frame - 1, then the renderFrame call effectively makes the current frame the desired one, all ready for rendering whenever.
[02:00] <dreammaster> And in this case, since I wasn't doing it, this rare kind of case where the starting frame had holes in it meant I was seeing all the garbage rather than what would be the bits from frame 441
[02:07] <snover> sorry, what werent you doing?
[02:07] <dreammaster> Looks good
[02:08] <dreammaster> Essentially, the AVISurface::seekToFrame was doing a forced seek to and decoding of the target frame - 1, just in the desired target frame had "holes" in it, as in this case
[02:09] --> GitHub144 joined #scummvm.
[02:09] <GitHub144> [scummvm] dreammaster pushed 1 new commit to master: https://git.io/vHjoA
[02:09] <GitHub144> scummvm/master eb68a94 Paul Gilbert: TITANIC: Fix empty holes appearing in room transition videos
[02:09] GitHub144 (GitHub144@192.30.252.40) left #scummvm.
[02:10] <snover> ah, i see. so you needed to render the combination of TF-1 + TF, but you were calling to render only on TF?
[02:10] <dreammaster> Exactly
[02:11] <dreammaster> And it only happened in the rares cases where TF did have holes in it's frame
[02:13] <dreammaster> Two graphic problems down, one to go. Now, and by "now" I mean "tomorrow", I need to look into the transparency alpha blending code.. the Doorbot was showing up with parts of his jacket all purple
[02:16] <dreammaster> http://imageshack.com/a/img924/635/SEd9Vu.png
[02:17] <-- Cheeseness left irc: Quit: Leaving.
[02:26] <dreammaster> Anyway, enough for me today. Goodnight
[02:27] <-- dreammaster left irc:
[02:31] --> Cheeseness joined #scummvm.
[02:43] --> GitHub105 joined #scummvm.
[02:43] <GitHub105> [scummvm] csnover pushed 6 new commits to master: https://git.io/vHjKx
[02:43] <GitHub105> scummvm/master dc9522e Colin Snover: SCI32: Fix Audio32 mix volumes...
[02:43] <GitHub105> scummvm/master 733eaeb Colin Snover: SCI32: Minor tweaks to improve code clarity & consistency
[02:43] <GitHub105> scummvm/master d556dcc Colin Snover: SCI: Switch SCI2 games to use Audio32...
[02:43] GitHub105 (GitHub105@192.30.252.42) left #scummvm.
[02:43] --> GitHub90 joined #scummvm.
[02:43] <GitHub90> [scummvm] criezy pushed 1 new commit to master: https://git.io/vHjKj
[02:43] <GitHub90> scummvm/master a08378a Thierry Crozat: I18N: Update translations templates
[02:43] GitHub90 (GitHub90@192.30.252.45) left #scummvm.
[02:51] <snover> euch. that thing where you get overly eager and accidentally write too many tickets were fixed in a commit message, when actually two of the tickets were just not valid to begin with
[02:51] <snover> oh well. the good news is that they can be closed at least&
[03:05] --> GitHub176 joined #scummvm.
[03:05] <GitHub176> [scummvm] criezy pushed 1 new commit to master: https://git.io/vHj60
[03:05] <GitHub176> scummvm/master 64c82e7 Thierry Crozat: I18N: Regenerate translations data file
[03:05] GitHub176 (GitHub176@192.30.252.34) left #scummvm.
[03:47] --> Tkachov joined #scummvm.
[03:47] #scummvm: mode change '+o Tkachov' by ChanServ!ChanServ@services.
[04:40] <-- Lightkey left irc: Ping timeout: 255 seconds
[04:53] --> Lightkey joined #scummvm.
[05:01] <snover> rrrr. what patches did GOG add to their release of PQ4&
[05:02] --> Strangerke joined #scummvm.
[05:11] <-- Strangerke left irc: Ping timeout: 240 seconds
[05:40] --> demonimin_ joined #scummvm.
[05:40] <-- demonimin left irc: Ping timeout: 240 seconds
[05:50] --> demonimin joined #scummvm.
[05:50] <-- demonimin_ left irc: Ping timeout: 246 seconds
[05:58] --> uruk-hai joined #scummvm.
[05:58] #scummvm: mode change '+o uruk-hai' by ChanServ!ChanServ@services.
[06:08] <-- LittleToonCat left irc: Remote host closed the connection
[06:21] --> t0by joined #scummvm.
[06:21] <-- t0by left irc: Changing host
[06:21] --> t0by joined #scummvm.
[06:21] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[06:35] <t0by> morning
[06:41] <-- t0by left irc: Quit: t0by
[06:42] --> t0by joined #scummvm.
[06:42] <-- t0by left irc: Changing host
[06:42] --> t0by joined #scummvm.
[06:42] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[06:47] --> _sev|work joined #scummvm.
[06:47] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[06:50] --> waltervn joined #scummvm.
[06:50] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services.
[07:00] --> girafe joined #scummvm.
[07:00] <-- _sev|work left irc: Quit: This computer has gone to sleep
[07:03] --> demonimin_ joined #scummvm.
[07:03] <-- demonimin left irc: Ping timeout: 268 seconds
[07:06] --> _sev|work joined #scummvm.
[07:06] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[07:07] <-- _sev|work left irc: Client Quit
[07:08] --> _sev|work joined #scummvm.
[07:08] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[07:08] <waltervn> morning
[07:09] --> Mia joined #scummvm.
[07:09] <-- Mia left irc: Changing host
[07:09] --> Mia joined #scummvm.
[07:11] <-- _sev|work left irc: Client Quit
[07:15] --> _sev|work joined #scummvm.
[07:15] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[07:18] --> Strangerke|work joined #scummvm.
[07:18] <Strangerke|work> hi guys
[07:30] <-- _sev|work left irc: Quit: This computer has gone to sleep
[07:31] <-- t0by left irc: Ping timeout: 258 seconds
[08:03] --> Joefish joined #scummvm.
[08:03] #scummvm: mode change '+v Joefish' by ChanServ!ChanServ@services.
[08:18] <-- girafe left irc: Read error: Connection reset by peer
[08:19] <-- antlarr left irc: Remote host closed the connection
[08:20] --> antlarr joined #scummvm.
[08:29] <-- Harekiet left irc: Ping timeout: 240 seconds
[08:42] --> Harekiet joined #scummvm.
[08:56] --> criezy|Work joined #scummvm.
[08:56] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services.
[08:57] --> _sev|work joined #scummvm.
[08:57] <-- _sev|work left irc: Changing host
[08:57] --> _sev|work joined #scummvm.
[08:57] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[08:58] --> t0by joined #scummvm.
[08:58] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[08:59] <t0by> _sev: morning, sorry: I am very lost as to how to retrieve and execute primary event handlers. They aren't by any chance kGlobalScripts, are they?
[09:00] <t0by> Short of some sorcery with the interpreter, that is.
[09:18] <-- t0by left irc: Ping timeout: 260 seconds
[09:20] --> t0by joined #scummvm.
[09:20] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[09:21] <t0by> _sev: btw I'm under the impression that primary event handlers exist only for mouseup/down, keyup/down and timeout, i.e. no movie events, so they shouldn't be needed in processGenericEvent?
[09:22] <t0by> (I get the impression from e.g. www.columbia.edu/itc/visualarts/r4110/s2001/handouts/03_03_Event_Hierarchy.pdf)
[09:29] <-- t0by left irc: Ping timeout: 260 seconds
[09:34] Nick change: demonimin_ -> demonimin
[11:17] --> t0by joined #scummvm.
[11:17] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[11:30] <-- user9 left irc: Quit: user9
[11:31] --> user9 joined #scummvm.
[12:45] <-- LePhilousophe left irc: Ping timeout: 240 seconds
[12:55] <-- waltervn left irc: Ping timeout: 245 seconds
[13:04] --> jamm joined #scummvm.
[13:30] #scummvm: mode change '+o wjp' by ChanServ!ChanServ@services.
[13:51] <t0by> Ah, wait, is that _handlers?
[13:57] <_sev|work> t0by: why do you want to do all and at once?
[13:57] <_sev|work> t0by: do whatever you understand at the moment, and add stubs for other handlers
[13:59] <Strangerke|work> damn.
[13:59] <wjp> Strangerke|work: I just started talking to him without checking as well :-)
[13:59] <Strangerke|work> Ha, it seems we read the same mail on -devel :)
[14:00] <t0by> _sev|work, sure. I take it handling of primary handlers is not even contemplated in the code at the moment, then.
[14:00] <t0by> I thought there was some magical data structure somewhere that had eluded my attention so far.
[14:01] <t0by> I reckon they're sort of... important, hence the attention on my part.
[14:02] --> waltervn joined #scummvm.
[14:02] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services.
[14:02] <t0by> I suppose at a later time that structure will have to be added (perhaps by special-casing "the"-statements on parse/load?)
[14:03] <t0by> _sev|work, thank you
[14:04] <wjp> waltervn: did you see the mail to -devel?
[14:04] <waltervn> I just did, sounds promising!
[14:11] <Strangerke|work> :)
[14:12] --> Begasus joined #scummvm.
[14:19] --> Begas_VBox joined #scummvm.
[14:29] <-- heroux left irc: Ping timeout: 240 seconds
[14:30] --> heroux joined #scummvm.
[14:30] --> LittleToonCat joined #scummvm.
[14:49] --> Littleboy joined #scummvm.
[14:49] #scummvm: mode change '+o Littleboy' by ChanServ!ChanServ@services.
[14:50] <-- _sev|work left irc: Quit: This computer has gone to sleep
[14:55] --> _sev|work joined #scummvm.
[14:55] <-- _sev|work left irc: Changing host
[14:55] --> _sev|work joined #scummvm.
[14:55] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services.
[15:04] --> _sev|work_ joined #scummvm.
[15:05] #scummvm: mode change '+o _sev|work_' by ChanServ!ChanServ@services.
[15:06] <-- _sev|work left irc: Read error: Connection reset by peer
[15:07] --> Stormkeeper joined #scummvm.
[15:08] <-- uruk-hai left irc: Quit: Leaving
[15:12] <-- Littleboy left irc: Read error: Connection reset by peer
[15:14] <-- Stormkeeper left irc: Read error: Connection reset by peer
[15:22] <-- Begas_VBox left irc: Read error: Connection reset by peer
[15:24] <-- Begasus left irc: Ping timeout: 240 seconds
[15:26] --> Henke37 joined #scummvm.
[15:26] --> Korak joined #scummvm.
[15:26] --> Begasus joined #scummvm.
[15:30] --> Begas_VBox joined #scummvm.
[15:38] <-- t0by left irc: Remote host closed the connection
[15:38] --> t0by joined #scummvm.
[15:38] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[15:51] --> Stormkeeper joined #scummvm.
[15:56] <-- _sev|work_ left irc: Quit: This computer has gone to sleep
[15:59] <-- Stormkeeper left irc: Read error: Connection reset by peer
[16:02] <-- t0by left irc: Ping timeout: 260 seconds
[16:08] --> ny00123 joined #scummvm.
[16:10] --> t0by joined #scummvm.
[16:10] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[16:12] --> WooShell joined #scummvm.
[16:16] <-- t0by left irc: Ping timeout: 240 seconds
[16:16] --> t0by joined #scummvm.
[16:16] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[16:17] --> Stormkeeper joined #scummvm.
[16:18] --> omer_mor_ joined #scummvm.
[16:18] <-- omer_mor left irc: Ping timeout: 255 seconds
[16:22] <-- Stormkeeper left irc: Read error: Connection reset by peer
[16:22] <snover> has anyone noted this gui bug with the down scrollbar arrow before? i dont see anything in the bug tracker. https://zetafleet.com/i/5947f9aeb1d92.png
[16:22] <WooShell> meow =^.^=
[16:22] --> Stormkeeper joined #scummvm.
[16:24] --> m_kiewitz joined #scummvm.
[16:24] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services.
[16:24] <-- Stormkeeper left irc: Client Quit
[16:27] --> Stormkeeper joined #scummvm.
[16:28] <-- Begas_VBox left irc: Read error: No route to host
[16:29] <-- Begasus left irc: Ping timeout: 255 seconds
[16:31] <-- Stormkeeper left irc: Read error: Connection reset by peer
[16:32] --> Stormkeeper joined #scummvm.
[16:34] <-- criezy left irc: Ping timeout: 255 seconds
[16:37] <-- Stormkeeper left irc: Read error: Connection reset by peer
[16:38] --> Stormkeeper joined #scummvm.
[16:39] <logix> snover: well, it worked back in 2008: http://perso.wanadoo.es/igp56/imagenes/snap2.png
[16:39] <logix> (0.12.0)
[16:40] <snover> i dont know how to reproduce it
[16:40] <snover> its fine at the moment
[16:40] <logix> oh, ok, I thought it was always wrong
[16:42] <snover> i thought maybe one of the recent GUI PRs had landed and i missed it, but it doesnt seem so
[16:45] <snover> while it was broken, it would show the correct arrow in the hover state but would go back to the wrong arrow when no longer hovered
[16:46] <-- Strangerke|work left irc: Quit: Bbl
[16:46] <-- Stormkeeper left irc: Read error: Connection reset by peer
[16:47] <logix> PSA: medal of honor pacific assault free in origin
[16:47] --> Stormkeeper joined #scummvm.
[16:47] <snover> does anyone own the PQ collection from GOG?
[16:48] <snover> i need to figure out what patches they added.
[16:48] --> Begasus joined #scummvm.
[16:51] <criezy|Work> snover: I probably do. But you will have to wait until I get back home (in about 1h) if you want me to have a look.
[16:51] --> Farmboy0 joined #scummvm.
[16:51] <-- Farmboy0 left irc: Changing host
[16:51] --> Farmboy0 joined #scummvm.
[16:52] <snover> criezy|Work: ok. i would appreciate it.
[16:55] --> Begas_VBox joined #scummvm.
[16:57] <-- criezy|Work left irc: Quit: Page closed
[17:01] <-- jamm left irc: Ping timeout: 255 seconds
[17:02] <snover> waltervn: do you know what track type 11 is in sierras sound resources?
[17:02] <m_kiewitz> snover: oh oh do you really want to know? :p
[17:02] <-- Begasus left irc: Ping timeout: 246 seconds
[17:03] <snover> m_kiewitz: only in the sense of that human compulsion to gawk at a traffic accident
[17:04] <m_kiewitz> lol
[17:06] <t0by> lol
[17:07] <waltervn> snover: 0x11?
[17:08] <-- Begas_VBox left irc: Quit: Vision[0.9.8]: i've been blurred!
[17:09] --> Begas_VBox joined #scummvm.
[17:10] <-- Tkachov left irc: Quit: Leaving
[17:11] --> omer_mor joined #scummvm.
[17:11] <-- omer_mor_ left irc: Ping timeout: 240 seconds
[17:15] --> Begasus joined #scummvm.
[17:29] --> criezy joined #scummvm.
[17:29] #scummvm: mode change '+o criezy' by ChanServ!ChanServ@services.
[17:37] <criezy> snover: that is the first time I see this down scrollbar arrow issue. How did youu get that?
[17:37] <criezy> Also what did you want me to look at in the PQ collection?
[17:38] <snover> criezy: i dont know how it happened. i am keeping an eye on things to try to figure out what happened.
[17:41] <snover> i will let you know when i reproduce it.
[17:48] <-- t0by left irc: Ping timeout: 268 seconds
[18:08] --> Strangerke joined #scummvm.
[18:09] --> girafe joined #scummvm.
[18:10] --> Deledrius_ joined #scummvm.
[18:17] --> csnover joined #scummvm.
[18:18] #scummvm: mode change '+o csnover' by ChanServ!ChanServ@services.
[18:18] --> Harekiet2 joined #scummvm.
[18:19] <logix> s
[18:19] <logix> whoops
[18:19] Harekiet (~harekiet@kittens.harekiet.com) got netsplit.
[18:19] Poly-C (~Poly-C@gentoo/developer/Polynomial-C) got netsplit.
[18:20] balrog (~balrog@unaffiliated/balrog) got netsplit.
[18:20] wanwan (~wanwan@ppp46-138-173-128.pppoe.spdop.ru) got netsplit.
[18:20] Deledrius (~Deledrius@68.118.139.214) got netsplit.
[18:20] _marc` (~marc@mos6581.de) got netsplit.
[18:20] snover (~snover@unaffiliated/snover) got netsplit.
[18:20] --> t0by joined #scummvm.
[18:20] #scummvm: mode change '+o t0by' by ChanServ!ChanServ@services.
[18:22] balrog (~balrog@unaffiliated/balrog) returned to #scummvm.
[18:23] wanwan (~wanwan@ppp46-138-173-128.pppoe.spdop.ru) returned to #scummvm.
[18:24] Poly-C (~Poly-C@gentoo/developer/Polynomial-C) returned to #scummvm.
[18:24] _marc` (~marc@mos6581.de) returned to #scummvm.
[18:30] Harekiet (~harekiet@kittens.harekiet.com) got lost in the net-split.
[18:30] Nick change: Harekiet2 -> Harekiet
[18:31] snover (~snover@unaffiliated/snover) got lost in the net-split.
[18:31] Deledrius (~Deledrius@68.118.139.214) got lost in the net-split.
[18:33] <-- Harekiet left irc: Remote host closed the connection
[18:39] --> Harekiet joined #scummvm.
[18:40] <-- m_kiewitz left irc: Quit: technology isn't intrinsically good or evil. It's how it's used. Like the Death Ray.
[18:44] --> Harekiet2 joined #scummvm.
[18:46] <-- Harekiet left irc: Ping timeout: 246 seconds
[18:47] <-- Harekiet2 left irc: Remote host closed the connection
[18:48] --> Harekiet joined #scummvm.
[18:50] <-- Begasus left irc: Ping timeout: 240 seconds
[19:02] --> Begasus joined #scummvm.
[19:20] --> Strangerke_ joined #scummvm.
[19:22] <-- Strangerke left irc: Ping timeout: 240 seconds
[19:22] Nick change: Strangerke_ -> Strangerke
[19:59] --> m_kiewitz joined #scummvm.
[19:59] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services.
[20:10] <-- Strangerke left irc: Ping timeout: 240 seconds
[20:23] --> frankyboy_ joined #scummvm.
[21:13] <-- Stormkeeper left irc: Ping timeout: 268 seconds
[21:13] <-- ST left irc: Disconnected by services
[21:13] --> ST1 joined #scummvm.
[21:21] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) got netsplit.
[21:21] Coldwine[m] (coldwinema@gateway/shell/matrix.org/x-nqpcqigfztwisfyj) got netsplit.
[21:21] Gentle (~tier@quassel/contributors/gentle) got netsplit.
[21:21] DDR (~david@ec2.happyspork.com) got netsplit.
[21:23] ScummBot (~ScummBot@vm2.scummvm.org) got netsplit.
[21:23] --> ScummBot_ joined #scummvm.
[21:23] --> Gentle` joined #scummvm.
[21:23] DDR (~david@ec2.happyspork.com) returned to #scummvm.
[21:23] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) returned to #scummvm.
[21:23] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services.
[21:23] <-- Henke37 left irc: Quit: ERR_SHUTDOWN
[21:23] <-- chadj left irc: Ping timeout: 240 seconds
[21:24] --> chadj joined #scummvm.
[21:25] Coldwine[m] --> (coldwinema@gateway/shell/matrix.org/x-iwoqvvtwiscpiplw) joined #scummvm.
[21:32] Gentle (~tier@quassel/contributors/gentle) got lost in the net-split.
[21:34] ScummBot (~ScummBot@vm2.scummvm.org) got lost in the net-split.
[21:34] --> dreammaster joined #scummvm.
[21:34] #scummvm: mode change '+o dreammaster' by ChanServ!ChanServ@services.
[21:35] <-- waltervn left irc: Quit: Leaving
[21:37] <-- Begas_VBox left irc: Quit: Vision[0.9.8]: i've been blurred!
[21:37] <-- Begasus left irc: Quit: Ex-Chat
[22:07] <-- frankyboy_ left irc: Read error: Connection reset by peer
[22:07] --> frankyboy_ joined #scummvm.
[22:08] --> evil-t0by joined #scummvm.
[22:08] #scummvm: mode change '+o evil-t0by' by ChanServ!ChanServ@services.
[22:09] <-- t0by left irc: Ping timeout: 240 seconds
[22:21] <-- ny00123 left irc: Quit: Leaving
[22:23] <-- Farmboy0 left irc: Remote host closed the connection
[22:32] <-- WooShell left irc: Quit: If you understand or if you don't, if you believe or if you doubt - There's a universal justice, and the eyes of truth are always watching you.
[23:00] --> GitHub164 joined #scummvm.
[23:00] <GitHub164> [scummvm] dreammaster pushed 1 new commit to master: https://git.io/vQffp
[23:00] <GitHub164> scummvm/master ec4550f Paul Gilbert: TITANIC: Fix NPC data copying/clearing in copyData
[23:00] GitHub164 (GitHub164@192.30.252.41) left #scummvm.
[23:19] --> Strangerke joined #scummvm.
[23:19] #scummvm: mode change '+o Strangerke' by ChanServ!ChanServ@services.
[23:28] <-- girafe left irc: Read error: Connection reset by peer
[00:00] --- Tue Jun 20 2017