[00:24] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [00:27] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 255 seconds [00:27] Nick change: Strangerke -> Strangerke_ [00:31] broosky (~broosky@095160154186.dynamic-ww-11.vectranet.pl) joined #scummvm. [00:38] borosky (~broosky@095160154186.dynamic-ww-11.vectranet.pl) left irc: Ping timeout: 260 seconds [00:48] anyway, i guess in the interest of not being totally stuck i am going to shove an extra lock flag into resources and see what happens. (what could possibly go wrong??) [00:58] dreammaster (~dreammast@c-73-149-116-247.hsd1.ma.comcast.net) joined #scummvm. [00:58] #scummvm: mode change '+o dreammaster' by ChanServ!ChanServ@services. [00:59] SylvainTV (~SylvainTV@LFbn-1-8392-241.w81-254.abo.wanadoo.fr) left irc: Read error: Connection reset by peer [01:20] GitHub156 (~GitHub156@192.30.252.42) joined #scummvm. [01:20] [scummvm] dreammaster pushed 1 new commit to master: https://git.io/vHuBq [01:20] scummvm/master 10ada8b Paul Gilbert: TITANIC: Fix some calculation errors when locking markers [01:20] GitHub156 (GitHub156@192.30.252.42) left #scummvm. [01:34] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [01:37] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 260 seconds [01:37] Nick change: DominusExult -> Dominus [01:56] Joefish_ (~ident@p200300764F2D11001A5E0FFFFE1124CA.dip0.t-ipconnect.de) joined #scummvm. [01:56] #scummvm: mode change '+v Joefish_' by ChanServ!ChanServ@services. [01:57] Joefish (~ident@p200300764F29CC001A5E0FFFFE1124CA.dip0.t-ipconnect.de) left irc: Ping timeout: 245 seconds [02:33] Littleboy (~littleboy@c-73-4-50-241.hsd1.ma.comcast.net) joined #scummvm. [02:33] #scummvm: mode change '+o Littleboy' by ChanServ!ChanServ@services. [02:48] Littleboy (~littleboy@c-73-4-50-241.hsd1.ma.comcast.net) left irc: Quit: Ętre dans le vent, une ambition de feuille morte. [02:51] dreammaster (~dreammast@c-73-149-116-247.hsd1.ma.comcast.net) left irc: Ping timeout: 240 seconds [02:54] is there a way to hack on the modern theme STX files without zipping it up each time? [02:57] it seems that all I need to do is run `./scummtheme.py make scummmodern` [03:17] GitHub127 (~GitHub127@192.30.252.34) joined #scummvm. [03:17] [scummvm] tsoliman opened pull request #957: GUI: Fix modern theme savegame thumbnail label layout (master...theme-saveload) https://git.io/vHugt [03:17] GitHub127 (GitHub127@192.30.252.34) left #scummvm. [03:19] snover (~snover@unaffiliated/snover) left irc: Ping timeout: 240 seconds [03:19] http://i1.kym-cdn.com/photos/images/facebook/000/234/765/b7e.jpg [03:24] snover (~snover@unaffiliated/snover) joined #scummvm. [03:24] #scummvm: mode change '+o snover' by ChanServ!ChanServ@services. [03:39] something is very weird in the layout code [03:39] oh? [03:40] so there's this concept of engines supporting saveDate and playTime independently [03:41] and the idea is that the thumbnail metadata area expands to accomodate those optional fields [03:41] (date/time and playtime) [03:42] I am talking about in SaveLoadChooserSimple::reflowLayout() [03:43] line 483 is where the container's height is adjusted based on those features (which imply the existence of the extra fields) [03:44] I don't fully understand why the if conditions that increment textLines are doing what they're doing [03:46] the getWidgetData call on 468 gives the size of the thumbnail section, which includes the dimensions of the save date + play time lines. if save date or play time are not supported the size of the thumbnail section is reduced to no longer include those fields [03:47] s/gives/gets [03:47] right it is reduced by 1 lineHeight for each of the features [03:47] except one of the features is 2 lines high :) (date + time) .. or am I missing something? [03:49] looking back through the history it used to be textLines += 2 there [03:50] appears to have been broken at 46168618be0152ebfcb68d2a0a46f98a676e204a [03:50] I don't fully grokk this but it smells like "2 wrongs make a right" [03:52] (I am hardcoding trues and falses in the assignments in SaveLoadChooserDialog::run to play with the different cases) [03:53] if I set both to false, the rect seems to have a little extra padding on the bottom .. so this is some kind of off-by-one thing [03:53] maybe broken is a strong word& it was changed there. do you have some game with an engine that does not store save date? [03:56] no but I am overriding the assignments (hoping that's "good enough") and here's how it looks like with both false http://i.imgur.com/qtIc03o.png [03:56] so it looks like it has an extra line of padding at the bottom. if you change to textLines += 2, are the padding symmetrical on top and bottom? [03:57] (also, for someone that speaks english as a first language, i sure am bad at it lately) [03:57] it's pretty late and it's a long day/week/month [03:57] I am not a native speaker so don't judge me :D [03:58] (but I welcome feedback because that's the only way to improve) [03:59] ok I am about to try that .. but first .. check this out (unmodified master) http://i.imgur.com/Sn2hVpp.png http://i.imgur.com/bMnthIW.png [04:00] (each of the images has is 1 true and 1 false) [04:04] here it is with +=2 for the "if(!_saveDateSupport)" http://i.imgur.com/MDh2Sts.png [04:04] not symmetrical [04:05] its pretty close. kLineHeight includes 2px of leading, so that might be why the bottom one is shorter when there is no text to display, though i am too lazy to open photoshop right now (really, really lazy) [04:06] its certainly closer than it was before when only one line was removed [04:06] how I measure is CTRL-SHIFT-COMMAND-4 [04:06] (which also copies pixels) [04:06] did i mention how lazy i am? [04:07] :D [04:07] incidentally you can just press esc when you are dong measuring before you mouseup so you dont stick stuff on your clipboard that you didnt want [04:07] nice [04:08] dong measuring im done here. [04:10] ah I see the problem [04:11] lol [04:11] Action: tsoliman is now denvercoder9 [04:48] GitHub144 (~GitHub144@192.30.252.40) joined #scummvm. [04:48] [scummvm] tsoliman closed pull request #957: GUI: Fix modern theme savegame thumbnail label layout (master...theme-saveload) https://git.io/vHugt [04:48] GitHub144 (GitHub144@192.30.252.40) left #scummvm. [05:13] Lightkey (~Darklock@p200300764C7B171822CF30FFFE083718.dip0.t-ipconnect.de) left irc: Ping timeout: 245 seconds [05:26] Lightkey (~Darklock@p200300764C7B171922CF30FFFE083718.dip0.t-ipconnect.de) joined #scummvm. [05:28] GitHub140 (~GitHub140@192.30.252.41) joined #scummvm. [05:28] [scummvm] tsoliman opened pull request #958: GUI: Fix savegame thumbnail label layout (master...theme-saveload-2) https://git.io/vHuoU [05:28] GitHub140 (GitHub140@192.30.252.41) left #scummvm. [05:31] ok so this is where I feel like two wrongs make a right: The theme file starts at height 200 (which is exactly enough for 2 text label and some padding) and then the code subtracts from that height for the missing labels (wrongly) [05:32] I think maybe the theme should assume none of the labels are there (height 150ish) and then the code should expand it based on how much text is going to be added [05:36] of course that means messing with modern and classic [06:12] ny00123 (~ny00123@46-116-13-123.bb.netvision.net.il) joined #scummvm. [07:01] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [07:03] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 240 seconds [07:03] Nick change: Strangerke -> Strangerke_ [07:18] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) joined #scummvm. [07:18] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [07:33] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) left irc: Ping timeout: 260 seconds [07:36] TMM (~hp@fsf/member/pdpc.professional.tmm) left irc: Quit: Ex-Chat [07:41] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) joined #scummvm. [07:41] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [07:43] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) left irc: Client Quit [07:47] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) joined #scummvm. [07:47] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [07:53] LittleToonCat (~littlecat@47.54.148.237) left irc: Remote host closed the connection [08:14] omer_mor_ (~Omer@46-117-132-33.bb.netvision.net.il) joined #scummvm. [08:16] omer_mor (~Omer@46-117-132-33.bb.netvision.net.il) left irc: Ping timeout: 255 seconds [08:19] chadj (~chadj@cpe-72-131-101-95.wi.res.rr.com) left irc: Ping timeout: 245 seconds [08:22] Mia (~Mia@85.110.59.159) joined #scummvm. [08:22] Mia (~Mia@85.110.59.159) left irc: Changing host [08:22] Mia (~Mia@unaffiliated/mia) joined #scummvm. [08:32] criezy|Work (a5e15040@gateway/web/freenode/ip.165.225.80.64) joined #scummvm. [08:32] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services. [08:33] ajax16384 (~User@109.60.138.138) joined #scummvm. [08:33] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [08:34] TMM (~hp@fsf/member/pdpc.professional.tmm) joined #scummvm. [08:34] #scummvm: mode change '+o TMM' by ChanServ!ChanServ@services. [08:43] DJW|Home (~djwillis@cpc2-trow6-2-0-cust204.aztw.cable.virginm.net) joined #scummvm. [08:43] #scummvm: mode change '+o DJW|Home' by ChanServ!ChanServ@services. [08:44] DJW|Badger (~djwillis@cpc2-trow6-2-0-cust204.aztw.cable.virginm.net) joined #scummvm. [08:46] DJWillis (~djwillis@cpc2-trow6-2-0-cust204.aztw.cable.virginm.net) left irc: Ping timeout: 240 seconds [08:49] DJW|Home (~djwillis@cpc2-trow6-2-0-cust204.aztw.cable.virginm.net) left irc: Ping timeout: 268 seconds [09:06] Axy (~Mia@88.227.166.63) joined #scummvm. [09:06] Axy (~Mia@88.227.166.63) left irc: Changing host [09:06] Axy (~Mia@unaffiliated/mia) joined #scummvm. [09:10] Mia (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [09:11] chadj (~chadj@cpe-72-131-101-95.wi.res.rr.com) joined #scummvm. [09:12] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [09:16] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 260 seconds [09:16] Nick change: DominusExult -> Dominus [09:36] omer_mor (~Omer@46-117-132-33.bb.netvision.net.il) joined #scummvm. [09:38] omer_mor_ (~Omer@46-117-132-33.bb.netvision.net.il) left irc: Ping timeout: 260 seconds [09:52] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [09:55] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 260 seconds [09:55] Nick change: DominusExult -> Dominus [10:45] hello there [10:45] I have some questions about Cryo engine [10:46] I began to reverse game Versailles [10:46] (an Omni3D game) [10:47] I would like to know what is best: write a new engine or modify the cryo one? [10:47] which seems to be currently coded only for lost eden in mind [10:51] hi LePhilousophe [10:51] hey Strangerke|work [10:51] I'd say the best is to talk to wanwan who is currently writing an engine [10:51] I bet I should have HLed you :) [10:51] for what? [10:51] Omni3D [10:52] where? [10:54] dunno, ask him :) [10:55] I hope he will see the chat here [11:12] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [11:14] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 240 seconds [11:14] Nick change: Strangerke -> Strangerke_ [11:36] _sev|work (~sev@a238130.upc-a.chello.nl) joined #scummvm. [11:36] _sev|work (~sev@a238130.upc-a.chello.nl) left irc: Changing host [11:36] _sev|work (~sev@scummvm/undead/sev) joined #scummvm. [11:36] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services. [12:37] criezy|Work (a5e15040@gateway/web/freenode/ip.165.225.80.64) left irc: Ping timeout: 260 seconds [12:48] Cheeseness (~cheesenes@ppp14-2-188-154.bras1.hba2.internode.on.net) left irc: Quit: Leaving. [12:49] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 240 seconds [12:51] Cheeseness (~cheesenes@ppp14-2-188-154.bras1.hba2.internode.on.net) joined #scummvm. [12:54] _sev|work (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [13:10] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 260 seconds [13:21] _sev|work (~sev@scummvm/undead/sev) joined #scummvm. [13:21] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services. [13:31] Harekiet (~harekiet@2001:470:7d3a:666::2) left irc: Read error: Connection reset by peer [13:35] Tomaz^W (~tompsson@84.216.7.40) joined #scummvm. [13:45] Harekiet (~harekiet@kittens.harekiet.com) joined #scummvm. [13:50] Korak (~quassel@75-110-34-6.gvllcmtk01.res.dyn.suddenlink.net) joined #scummvm. [13:55] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) joined #scummvm. [13:55] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services. [14:07] _sev|work (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [14:08] _sev|work (~sev@a238130.upc-a.chello.nl) joined #scummvm. [14:08] _sev|work (~sev@a238130.upc-a.chello.nl) left irc: Changing host [14:08] _sev|work (~sev@scummvm/undead/sev) joined #scummvm. [14:08] #scummvm: mode change '+o _sev|work' by ChanServ!ChanServ@services. [14:08] _sev|work (~sev@scummvm/undead/sev) left irc: Client Quit [14:52] LittleToonCat (~littlecat@47.54.148.237) joined #scummvm. [15:05] Henke37 (~Henrik@81-227-16-59-no133.bredband.skanova.com) joined #scummvm. [15:15] Hello, everyone :) [15:16] https://usercontent.irccloud-cdn.com/file/ZqR82Mv3/wierd_screenshot.png [15:17] _sev: I display the image in a rather dirty way and get this, so I guess there is a problem in image loading. I will re-check it. [15:18] <_sev_> image dimensions are incorrect [15:18] _sev_: By the way, why I don't have transparent background here ? [15:18] <_sev_> maybe there is rounding up the image width [15:19] <_sev_> Simei: it depends [15:19] what does rounding up the image width mean? Is there an example? [15:19] <_sev_> err [15:20] <_sev_> let' say, you round up to 50 [15:20] <_sev_> if you have image width 120 or 101, you make it 150 [15:21] Ah, I see. There is round up to the nearest power of two every where [15:21] <_sev_> as of the transparency: if you have alpha channel, then I'd recommend to use TransparentSurface, it will take care of it. [15:21] <_sev_> If it is a keycolor transparency, there were API for specifying that at the blitting stage [15:22] Yes, there is a alpha channel. What I did is [15:23] https://www.irccloud.com/pastebin/HMryvND4/ [15:24] Littleboy (~littleboy@c-73-4-50-241.hsd1.ma.comcast.net) joined #scummvm. [15:24] #scummvm: mode change '+o Littleboy' by ChanServ!ChanServ@services. [15:24] _sev_: Is this the rightway of using TransparentSurface? Or I should create a transparent surface in the first place? [15:32] Paaris (paaris@soju.fi) left irc: Ping timeout: 264 seconds [15:33] Paaris (paaris@soju.fi) joined #scummvm. [15:39] Simei: scale returns a new scaled surface [15:40] wjp: Ah, I see. [15:41] Thanks! [15:54] TMM (~hp@fsf/member/pdpc.professional.tmm) left irc: Quit: Ex-Chat [16:06] WooShell (~Markus@ipbcc06af5.dynamic.kabel-deutschland.de) joined #scummvm. [16:06] meow =^.^= [16:13] ajax16384 (~User@109.60.138.138) left irc: Read error: Connection reset by peer [16:18] Strangerke|work (5bb7582b@gateway/web/freenode/ip.91.183.88.43) left irc: Quit: Bbl [17:00] Vampire0 (~Vampire@jEdit/Vampire) left irc: Ping timeout: 260 seconds [17:01] Vampire0_ (~Vampire@jEdit/Vampire) joined #scummvm. [17:20] SylvainTV (~SylvainTV@LFbn-1-8392-241.w81-254.abo.wanadoo.fr) joined #scummvm. [17:20] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [17:30] ajax16384 (~User@109.60.130.33) joined #scummvm. [17:30] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [17:40] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) left irc: Read error: Connection reset by peer [17:50] Farmboy0 (~quassel@p4FD34546.dip0.t-ipconnect.de) joined #scummvm. [17:50] Farmboy0 (~quassel@p4FD34546.dip0.t-ipconnect.de) left irc: Changing host [17:50] Farmboy0 (~quassel@xoreos/farmboy0) joined #scummvm. [17:55] _sev: I re-check the images dimensions and there doesn't seem anything wrong, the POT is for the "textures" in the original code. And by outputting the memory positions, all bits for an image were read but to the wrong place. These are relative lines, do you have any idea? [17:56] in sludge: https://github.com/yinsimei/opensludge/blob/master/source/Engine/sprites.cpp#L322 [17:56] in my code: https://github.com/yinsimei/scummvm/blob/newWIP1-1/engines/sludge/sprites.cpp#L243 [17:59] antlarr (~quassel@85.137.124.240.dyn.user.ono.com) left irc: Ping timeout: 240 seconds [18:02] <_sev_> Simei: let me see [18:02] Axy (~Mia@88.227.166.63) joined #scummvm. [18:02] Axy (~Mia@88.227.166.63) left irc: Changing host [18:02] Axy (~Mia@unaffiliated/mia) joined #scummvm. [18:03] Thanks! [18:08] <_sev_> Simei: I don't see any oddities. I recommend to print out debug output from both engines [18:13] m_kiewitz (~m_kiewitz@scummvm/undead/m-kiewitz) joined #scummvm. [18:13] #scummvm: mode change '+o m_kiewitz' by ChanServ!ChanServ@services. [18:17] _sev: as for debug output, I get the file beginning and ending address printed for each sprite, and they are the same [18:18] Are there other outputs that can be helpful? [18:21] https://usercontent.irccloud-cdn.com/file/qszHsCG3/scummvm_spriteloading https://usercontent.irccloud-cdn.com/file/MAavbo7p/sludge_spriteloading [18:22] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [18:22] #scummvm: mode change '+o Strangerke' by ChanServ!ChanServ@services. [18:23] Simei: the skewedness seems to indicate that when finding a surface pointer as ptr = pitch*y+x your "pitch" is wrong, although I don't see in the code why that might be the case [18:26] antlarr (~quassel@85.137.124.240.dyn.user.ono.com) joined #scummvm. [18:29] logix Yes, it seems so :/ I'll try to print some debug logs about it. [18:32] Simei: try looking at the values of getBasePtr(0,0), getBasePtr(0,1) and getBasePtr(1,0) and in opensludge 4*y [18:33] <_sev_> Simei: you need to print x, y and width [18:34] Ok, I'll do it. [18:36] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [18:38] criezy|Test (1f33b779@gateway/web/freenode/ip.31.51.183.121) joined #scummvm. [18:38] #scummvm: mode change '+o criezy|Test' by ChanServ!ChanServ@services. [18:39] criezy|Test (1f33b779@gateway/web/freenode/ip.31.51.183.121) left irc: Client Quit [18:39] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 260 seconds [18:39] Nick change: Strangerke_ -> Strangerke [18:49] _sev, logix: That's true, their width and heights are not the same. I think I get a clue. I'll look into it. Sorry for having not noticed it. Thank you for your time! [18:51] <_sev_> Simei: great [18:52] Simei: no problem, glad you're getting somewhere [18:53] :) [18:53] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [19:07] ajax16384 (~User@109.60.130.33) left irc: Read error: Connection reset by peer [19:11] cpasjuste_ (~cpasjuste@193.12.207.77.rev.sfr.net) joined #scummvm. [19:11] cpasjuste_ (~cpasjuste@193.12.207.77.rev.sfr.net) left irc: Remote host closed the connection [19:14] It's good now! :D [19:19] girafe (~girafe@LFbn-1-11729-221.w2-7.abo.wanadoo.fr) joined #scummvm. [19:20] Axy (~Mia@88.227.166.63) joined #scummvm. [19:20] Axy (~Mia@88.227.166.63) left irc: Changing host [19:20] Axy (~Mia@unaffiliated/mia) joined #scummvm. [19:22] yay [19:23] Strangerke_ (~Strangerk@cable-85.28.84.13.coditel.net) joined #scummvm. [19:26] Strangerke (~Strangerk@cable-85.28.84.13.coditel.net) left irc: Ping timeout: 260 seconds [19:26] Nick change: Strangerke_ -> Strangerke [19:32] ajax16384 (~User@109.60.130.33) joined #scummvm. [19:32] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [19:43] TMM (~hp@fsf/member/pdpc.professional.tmm) joined #scummvm. [19:43] #scummvm: mode change '+o TMM' by ChanServ!ChanServ@services. [20:10] does anyone have a windows toolchain with SDL2? [20:11] (to test gh-937) [20:44] ajax16384 (~User@109.60.130.33) left irc: Read error: Connection reset by peer [21:48] ny00123 (~ny00123@46-116-13-123.bb.netvision.net.il) left irc: Quit: Leaving [22:07] Dominus (~dominus@unaffiliated/dominus) left irc: Read error: Connection reset by peer [22:09] Dominus (~dominus@unaffiliated/dominus) joined #scummvm. [22:16] WooShell (~Markus@ipbcc06af5.dynamic.kabel-deutschland.de) 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. [22:27] kurtwr (~kurtwr@c-50-173-166-91.hsd1.ca.comcast.net) joined #scummvm. [22:28] kurtwr2 (~kurtwr@c-50-173-166-91.hsd1.ca.comcast.net) left irc: Write error: Broken pipe [22:31] qvist_ (~qvist@delta.ipv7.se) joined #scummvm. [22:31] rrebello_ (~Rodrigo@96.126.111.239) joined #scummvm. [22:32] joostp_ (~joostp@scummvm/undead/joostp) joined #scummvm. [22:32] #scummvm: mode change '+o joostp_' by ChanServ!ChanServ@services. [22:40] qvist (~qvist@delta.ipv7.se) left irc: Write error: Broken pipe [22:40] antlarr (~quassel@85.137.124.240.dyn.user.ono.com) left irc: Excess Flood [22:40] LePhilousophe (valemboi20@amsn/developer/lephilousophe) left irc: Remote host closed the connection [22:40] joostp (~joostp@scummvm/undead/joostp) left irc: Remote host closed the connection [22:40] rrebello (~Rodrigo@96.126.111.239) left irc: Remote host closed the connection [22:42] LePhilousophe (valemboi20@amsn/developer/lephilousophe) joined #scummvm. [22:42] antlarr (~quassel@85.137.124.240.dyn.user.ono.com) joined #scummvm. [23:07] girafe (~girafe@LFbn-1-11729-221.w2-7.abo.wanadoo.fr) left irc: Read error: Connection reset by peer [23:27] GeekShadow (~antoine@reactos/tester/GeekShadow) joined #scummvm. [23:40] ha! progress! :D https://tmm.cx/nextcloud/s/msIr5Lh60VwZazf [23:41] goom (~goom@cpe-173-174-162-201.satx.res.rr.com) joined #scummvm. [23:49] waltervn (~waltervn@541B2DBA.cm-5-4a.dynamic.ziggo.nl) left irc: Quit: Leaving [23:53] TMM: looking good! [23:53] snover, ty! :D [23:53] TMM: i feel like you were on windows once, am i crazy to think this? [23:54] Not since around 1997 [23:55] There's only one decoding step I haven't implemented yet, there's some stuff about moving data from the previous frame to the next frame, I'll do that tomorrow [23:55] ah well. that is how my memory is. [23:56] This codec works by just copying 8x8 squares of uncompressed pixel data around [23:56] it's kind of strange [23:59] what year was it developed? [23:59] mid 90s [00:00] --- Sat Jun 3 2017