[00:07] cd (~cd@unaffiliated/cd) left irc: Quit: cd [00:11] I know, there is a barely noticable lag. This is caused by stopping the speech. Even though the call to the SAPI has "ASYNC" flag, it still takes more time, than I would like. My thinking was, that it is just barely noticable for a person with good sight (I don't assume many of these people would use the TTS) and a person with worse sight, that would actualy use it shouldn't notice. But maybe your lag is worse than mine. [00:12] and I think outside of GUI where there are less stops, it should work quite fine [00:13] i only notice it for the gui, outside of it it's probably fine. maybe the whole thing could be shunted off to its own thread, but i know how much programmers love threads [00:15] that could probably help. [00:46] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) joined #scummvm. [00:53] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) left irc: Remote host closed the connection [01:00] @Henke37 this is what i get when hovering multiple ui elements [01:00] https://cdn.discordapp.com/attachments/581224061091446795/633107112217673747/2019-10-14_01-57-53.mp4 [01:00] seems to be from repeatedly interrupting and restarting the tts [01:01] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) left irc: Ping timeout: 268 seconds [01:01] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) joined #scummvm. [01:01] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [01:02] i can't even turn on that option. [01:02] https://cdn.discordapp.com/attachments/581224061091446795/633107726091681813/Anteckning_2019-10-14_030349.png [01:03] @SupSuper that is certainly a lot worse, than what I get [01:03] @Henke37 it probably cannot find any voice [01:03] @Henke37 you need to have tts installed on windows [01:04] the thing is, the testbed tts worked fine [01:04] maybe try switching language to english [01:04] weird. also @Vyzigold i still get the "no voices" warning even though... it works 😛 [01:04] might also be a language thing [01:05] @SupSuper is it right when you turn on the ScummVM? [01:05] when compiled with msvc [01:05] that did the trick [01:06] yeah [01:07] I saw that. I also saw it wrote that warning under mingw when going from game to the launcher. I hoped I solved both of the issues. [01:12] fun. i found an assert failure. [01:13] #line 2161 "gui/options.cpp" guiLang.setChar('\0', 2); [01:13] that's the offending line [01:14] I am just looking at the same line 😄 [01:14] @Vyzigold gonna try a release build to see if it performs better, see you tomorrow 😛 [01:14] it doesn't like switching back to default apparently. [01:15] I don't know why I needed it there though 🤔 [01:15] @SupSuper see you [01:16] (i'm still here, just release builds take foreeeeeeeeeeeeever) [01:16] 😄 [01:16] and i definitely wouldn't recommend splitting strings with \0, since scummvm strings aren't even c-strings [01:24] nope performance is the same [01:26] i've figured out why i get a single WARNING: No voice is available! though [01:27] mataniko_ (~mataniko@unaffiliated/mataniko) joined #scummvm. [01:27] #scummvm: mode change '+o mataniko_' by ChanServ!ChanServ@services. [01:28] mataniko (~mataniko@unaffiliated/mataniko) left irc: Ping timeout: 240 seconds [01:28] when tts is initialized, conf hasn't been loaded yet, so my language is pt_PT (system language, no voices) then gui is initialized, which resets tts language which is now en (scummvm language, has voices) [01:32] dreammaster (~dreammast@c-73-241-66-252.hsd1.ca.comcast.net) joined #scummvm. [01:32] #scummvm: mode change '+o dreammaster' by ChanServ!ChanServ@services. [01:36] @SupSuper this is how it looks on my computer (it works better when not recording :D) until I start to move the mouse really fast, there are only like 2 noticable lags [01:36] https://cdn.discordapp.com/attachments/581224061091446795/633116107363975188/2019-10-14_03-26-24.mkv [01:37] DominusExult (~dominus@port-92-194-117-166.dynamic.qsc.de) joined #scummvm. [01:37] DominusExult (~dominus@port-92-194-117-166.dynamic.qsc.de) left irc: Changing host [01:37] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [01:37] weird. i'll run a performance analysis [01:37] as for these char shenanigans, i recommend replacing all your setChar('\0', 2); with erase(2) with a bounds-check, or a more proper split on _. maybe throw it on TransMan as getTtsLanguage so you don't have to repeat it everywhere [01:39] 🤦 now I know, why I did that 😄 the language has a "_xx" at the end. [01:40] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 250 seconds [01:40] Nick change: DominusExult -> Dominus [01:40] I thought the TransMan or ConfMan would return just "en" or "pt", ... so I was really confused now about what I was doing 😄 [01:41] timofonic: I double-checked, and you're right that the GLK layer doesn't yet support reverse video. So, yes, that is something that I'll look into eventually [01:45] @Vyzigold yeah you're playing with fire there as not every system follows the xx_yy.zz format 🙂 (if scummvm doesn't normalize them) and you do wanna differentiate between stuff like pt_BR and pt_PT [02:01] girafe (~girafe@lfbn-lyo-1-470-122.w2-7.abo.wanadoo.fr) left irc: Ping timeout: 268 seconds [02:17] well, I will split it properly on the _. I don't think it is really necessary to differentiate between the languages (I don't know portugeese, but I assume the difference is mostly in the accent like in english). Not differentiating basicaly just alows more voices to be chosen for the TTS and the user can always chose the voice he likes the most for the GUI TTS, so this might be a good thing. The Linux uses ISO 639-1 (and I want to use [02:17] this for the whole TTS), so pt is going to be just pt. As for the warning, I am not sure what to do. I think it is right to initialize the TTS (and thus initialize all the voices) and I think some warning should be given, when the TTS cannot speak. Maybe it might be clearer to specify for which language there isn't a voice: No voice available for language: pt. [02:19] but that will have to wait, the sun is almost out and I haven't slept yet 😄 [02:19] the warning is fine, i was just pointing out there might be a redundant initialization [02:31] [scummvm] digitall pushed 1 new commits to master: https://git.io/Je8Oy [02:31] scummvm/master edf310c digitall: GRAPHICS: MACGUI: Fix GCC Signed vs. Unsigned Warnings [02:39] doing some testing, i think the hitches might just be a case of "death by a thousand cuts". individually everything performs fine, but there's lots of locks and waits around everything so they add up everytime speech needs to be interrupted [02:46] for example windows isn't as thread-happy as unix is. everytime speech is played it uses a new thread, and the constant blocking, tearing down and creating new threads is expensive. it would be better to just have a single persistent thread since, as far as i can tell, there's no speech parallelism anyways (every new request requires stopping the old) [02:56] [scummvm] digitall pushed 1 new commits to master: https://git.io/Je83L [02:56] scummvm/master 95c0afa digitall: AGI: Fix Missing Default Switch Cases [03:03] [scummvm] digitall pushed 1 new commits to master: https://git.io/Je83O [03:03] scummvm/master f1e564c digitall: GUI: Add Missing Switch Default Cases in About Dialog Easter Egg [03:03] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/Je833 [03:03] scummvm/master 9ec7df1 criezy: I18N: Regenerate translations data file [03:38] yuv422 (~yuv422@119-18-0-202.771200.syd.nbn.aussiebb.net) left irc: Ping timeout: 240 seconds [03:43] yuv422 (~yuv422@119-18-0-202.771200.syd.nbn.aussiebb.net) joined #scummvm. [03:43] #scummvm: mode change '+o yuv422' by ChanServ!ChanServ@services. [04:08] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [04:08] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [04:08] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) left irc: Read error: Connection reset by peer [04:08] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) joined #scummvm. [04:08] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [04:35] dreammaster (~dreammast@c-73-241-66-252.hsd1.ca.comcast.net) left irc: [05:01] BeefEats (~BeefEats@unaffiliated/beefeats) left irc: Read error: Connection reset by peer [05:16] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) left irc: Ping timeout: 276 seconds [05:50] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 265 seconds [05:51] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [05:53] eriktorbjorn (~d91tan@213-65-60-100-no2480.tbcn.telia.com) left irc: Quit: Leaving. [05:57] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) joined #scummvm. [05:57] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [06:02] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) left irc: Ping timeout: 268 seconds [06:30] <_Tkachov> rsn8887: well, 5 times a year isn't really all the time + we can even make ScummVM update these itself (so we attach cacert.pem at some point and then it just redownloads the newest version from curl's site, the link is always the same) [06:31] ny00123 (~ny00123@31.210.181.248) joined #scummvm. [06:32] <_Tkachov> and I really like the "native certs check" option, meaning we don't pass certificates, yet still get encryption working [06:45] @DreamMaster Nice! Thanks! Did you read about this? http://curiousdannii.github.io/if/gargoyle.html [06:47] embedding certs is not really a good option :/ [06:48] that implies burden on packaging to have up to date certificates [07:10] ldevulder_ (~ldevulder@176.167.37.88) joined #scummvm. [07:14] ldevulder__ (~ldevulder@176.167.93.182) left irc: Ping timeout: 268 seconds [07:16] Nick change: ldevulder_ -> ldevulder [07:22] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) joined #scummvm. [07:22] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [07:31] SylvainTV (~Sylvain@alille-658-1-25-224.w92-155.abo.wanadoo.fr) left irc: Read error: Connection reset by peer [08:17] delacroix (~delacroix@2a02:810c:640:e00:381a:b1ff:fe38:b6b8) left irc: Quit: ZNC - http://znc.in [08:21] delacroix (~delacroix@2a02:810c:640:e00:381a:b1ff:fe38:b6b8) joined #scummvm. [08:36] Axy (~Mia@176.43.34.69) joined #scummvm. [08:36] Axy (~Mia@176.43.34.69) left irc: Changing host [08:36] Axy (~Mia@unaffiliated/mia) joined #scummvm. [08:37] vliaskov (~vliaskov@x4e365028.dyn.telefonica.de) joined #scummvm. [08:38] Mia (~Mia@unaffiliated/mia) left irc: Ping timeout: 252 seconds [08:44] Mia (~Mia@176.88.101.252) joined #scummvm. [08:44] Mia (~Mia@176.88.101.252) left irc: Changing host [08:44] Mia (~Mia@unaffiliated/mia) joined #scummvm. [08:46] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [08:48] Axy (~Mia@176.234.100.25) joined #scummvm. [08:48] Axy (~Mia@176.234.100.25) left irc: Changing host [08:48] Axy (~Mia@unaffiliated/mia) joined #scummvm. [08:51] Mia (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [09:41] our 'iphone' backend is no longer maintained, is that correct? [09:54] Mia (~Mia@176.88.103.19) joined #scummvm. [09:54] Mia (~Mia@176.88.103.19) left irc: Changing host [09:54] Mia (~Mia@unaffiliated/mia) joined #scummvm. [09:55] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 265 seconds [10:19] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [10:19] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [10:28] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [10:29] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [10:37] Correct. It is superseded by the 'ios7' backend for any device that runs iOS 7 or above. [10:44] timofonic (~timofonic@unaffiliated/timofonic) left irc: Remote host closed the connection [11:10] I see. I was playing around with an old iPad 2 on iOS 6 and was having an issue [11:11] Who's doing the iOS 7 backend? [11:13] The ios6 version on buildbot did run but for some reason it can't write the config file or save games for some reason. Maybe I'm doing something wrong but the 1.7.0 .deb does work [11:14] We don't really have a maintainer for the ios backend either, but I did some work on that one this year to try to keep it up to date. [11:15] Maybe I'll have a look at iOS 6 then [11:57] yuv422 (~yuv422@119-18-0-202.771200.syd.nbn.aussiebb.net) left irc: Remote host closed the connection [11:57] yuv422 (~yuv422@119-18-0-202.771200.syd.nbn.aussiebb.net) joined #scummvm. [11:57] #scummvm: mode change '+o yuv422' by ChanServ!ChanServ@services. [12:03] ldevulder_ (~ldevulder@176.167.148.33) joined #scummvm. [12:06] ldevulder (~ldevulder@176.167.37.88) left irc: Ping timeout: 240 seconds [12:08] Axy (~Mia@176.43.41.220) joined #scummvm. [12:08] Axy (~Mia@176.43.41.220) left irc: Changing host [12:08] Axy (~Mia@unaffiliated/mia) joined #scummvm. [12:11] Mia (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [12:14] Mia (~Mia@176.88.100.71) joined #scummvm. [12:14] Mia (~Mia@176.88.100.71) left irc: Changing host [12:14] Mia (~Mia@unaffiliated/mia) joined #scummvm. [12:17] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 276 seconds [12:17] dos1 (~dos1@neo900/coreteam/dos) left irc: Ping timeout: 240 seconds [12:18] dos1 (~dos1@neo900/coreteam/dos) joined #scummvm. [12:30] do we really need to support iOS 6? [12:30] or even 7 [12:30] 5% of devices are earlier than iOS 11 [12:51] It looks like both @waltervn and myself are in these 5% 😛 (I still have an old iPod Touch 4G with iOS 6 - I don't use it much though) [12:54] [scummvm] ScummVM-Translations pushed 2 new commits to master: https://git.io/Je88U [12:54] scummvm/master 3a881f0 sev-: PRINCE: I18N: Update translation (English) [12:54] scummvm/master 5472ec2 sev-: PRINCE: I18N: Update translation (Russian) [13:01] Nick change: ldevulder_ -> ldevulder [13:22] P2E_ (~tgz@209.251.45.7) joined #scummvm. [13:25] P2E (~tgz@209.251.45.7) left irc: Ping timeout: 240 seconds [13:28] [scummvm] digitall pushed 1 new commits to master: https://git.io/Je88K [13:28] scummvm/master 9406bae digitall: AGOS: Fix Missing Default Switch Cases [13:42] @criezy really appreciate your efforts cleaning up the ios7 backend... the ipad is one of my favorite devices to play adventure games on [14:00] Thank you. [14:00] I enjoy playing adventure games on my iPad as well, which gives me some motivation to work on this. [14:09] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [14:11] Is it intentional that the MT-32 emulation (MUNT) is not active in the ios build? [14:12] Was curious, when I was manually building scummvm, it seemed to operate ok [14:24] No, I just followed the instructions we had on the wiki. [14:24] It used to be disabled as it was too slow, but with recent devices I guess it might works properly, and I updated the wiki yesterday. [14:59] cd (~cd@unaffiliated/cd) joined #scummvm. [15:00] I'll take a look and see if I can compile the master branch. I was getting errors in xcode when trying to compile the 2-5-0 branch. [15:01] girafe (~girafe@lfbn-1-7953-111.w90-112.abo.wanadoo.fr) joined #scummvm. [15:07] vliaskov (~vliaskov@x4e365028.dyn.telefonica.de) left irc: Remote host closed the connection [15:09] I guess you mean the 2-1-0 branch? [15:09] I didn't have any issue compiling this with Xcode when I did it on Saturday. [15:23] Sorry, yes, meant 2-1-0... typo. Hm, I did but will try it again. What version of Xcode? [15:23] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 265 seconds [15:24] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [15:26] This was on 11.1 with Catalina. I upgraded from Mojave, so it wasn't a new environment. [15:26] I did it both on macOS 10.12 and 10.15. I think the Xcode versions are 9.2 and 11.5 respectively. [15:27] Catalina was also upgraded from Mojave for me, which itself had been upgraded multiple times. So definitely not a clean environment. [15:28] Ok, pretty similar to me then. Thanks [15:33] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [15:33] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [15:37] TAS_2012v (~2012@188.151.19.218) left irc: [15:38] MT32 works fine on Switch so should be fast enough on iPhone for sure [15:39] and the switch port doesn't use the dedicated dsp core that it is sure to have [15:39] i don't think any port uses hardware acceleration for audio [15:44] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 276 seconds [15:44] ccawley2011 (~ccawley20@host109-149-11-176.range109-149.btcentralplus.com) joined #scummvm. [15:44] #scummvm: mode change '+o ccawley2011' by ChanServ!ChanServ@services. [15:44] eriktorbjorn (~d91tan@213-65-60-100-no2480.tbcn.telia.com) joined #scummvm. [15:44] #scummvm: mode change '+o eriktorbjorn' by ChanServ!ChanServ@services. [15:49] i don't think any system uses hardware audio anymore 😛 [15:56] TAS_2012v (~2012@c188-151-19-218.bredband.comhem.se) joined #scummvm. [15:56] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [16:30] Begasus (~begasus@ptr-4qba4eah8bxhf2c4bwg.18120a2.ip6.access.telenet.be) joined #scummvm. [16:37] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) joined #scummvm. [16:42] BeefEats (~BeefEats@unaffiliated/beefeats) joined #scummvm. [16:46] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [16:46] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [16:50] ldevulder_ (~ldevulder@176.167.108.42) joined #scummvm. [16:51] Lightkey (~Darklock@p200300F693D1234322CF30FFFE083718.dip0.t-ipconnect.de) left irc: Ping timeout: 264 seconds [16:53] ldevulder (~ldevulder@176.167.148.33) left irc: Ping timeout: 265 seconds [16:57] ldevulder__ (~ldevulder@176.167.139.218) joined #scummvm. [16:57] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) left irc: Ping timeout: 240 seconds [17:00] ldevulder_ (~ldevulder@176.167.108.42) left irc: Ping timeout: 268 seconds [17:03] Lightkey (~Darklock@p200300F693D1238822CF30FFFE083718.dip0.t-ipconnect.de) joined #scummvm. [17:18] Hi guys I'm going to test branch-2-1 for the RetroPie (raspberry pi) binary [17:22] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 246 seconds [17:22] In the meantime I'm looking for a way to save some space for Versailles 1685, does anyone have any experience compressing it? [17:26] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [17:28] _sev (~sev@scummvm/undead/sev) joined #scummvm. [17:28] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [17:35] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [17:41] _sev (~sev@d158167.upc-d.chello.nl) joined #scummvm. [17:41] _sev (~sev@d158167.upc-d.chello.nl) left irc: Changing host [17:41] _sev (~sev@scummvm/undead/sev) joined #scummvm. [17:41] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [17:53] Hello! [17:55] Changing the GUI language from ScummVM Launcher (Options... -> Misc->Gui Language) to Greek or Hebrew (could be other languages too) results in an assertion fault and crash [17:55] I've only tried on the Windows version 2.2.x so far [17:56] failed assertion is for common/str.cpp, line 464, p < _size [17:56] iirc that's a tts bug that @Vyzigold is looking into [17:57] hmm ok [17:57] did someone really start a hebrew translation? that's gonna be fun to render [17:58] well, if some of the games are in hebrew, why not the ui? [17:58] I was just messing around. Greek has a translation but does not work either [17:58] due to missing fonts. I intend to get around to that at some point, since I already did some testing and work for it (the greek fonts) [18:00] the games were already written so we don't have to figure out how to render it 😛 [18:00] now we just need a translation to emoji. [18:00] aaaand that escalated quickly. [18:00] 😄 [18:02] [scummvm] ccawley2011 opened pull request #1891: ANDROID: Hide the system mouse cursor on Android N (master...android-hide-mouse) https://git.io/Je8u7 [18:05] Stormkeeper|PC (~kvirc@cpc96296-lewi18-2-0-cust121.2-4.cable.virginm.net) left irc: Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/ [18:11] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) joined #scummvm. [18:17] ajax16384 (~User@109.60.130.33) joined #scummvm. [18:17] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [18:25] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) left irc: Quit: Vision[0.10.3]: i've been blurred! [18:25] Begasus (~begasus@ptr-4qba4eah8bxhf2c4bwg.18120a2.ip6.access.telenet.be) left irc: Quit: Ex-Chat [18:36] [scummvm] lotharsm pushed 2 new commits to branch-2-1: https://git.io/Je8z8 [18:36] scummvm/branch-2-1 e86f556 vyzigold: TTS: Fix "No voice available" warning [18:36] scummvm/branch-2-1 4f116fc vyzigold: CREATE_PROJECT: Enable TTS on msvc by default [18:56] [scummvm] sev- pushed 1 new commits to master: https://git.io/Je8zr [18:56] scummvm/master 0e9d3d0 sev-: GUI: Fix warnings [19:05] Stormkeeper (~kvirc@cpc96296-lewi18-2-0-cust121.2-4.cable.virginm.net) joined #scummvm. [19:09] @antoniou79 that's nasty bug with Greek language. Fix is about to be pushed [19:11] [scummvm] sev- pushed 2 new commits to master: https://git.io/Je8gU [19:11] scummvm/master be95a7a sev-: JANITORIAL: Whitespace fixes [19:11] scummvm/master e5caf79 sev-: GUI: Fix crash with attempt to switch to Greek or Hebrew [19:12] [scummvm] sev- pushed 1 new commits to branch-2-1: https://git.io/Je8gL [19:12] scummvm/branch-2-1 b030f7f sev-: GUI: Fix crash with attempt to switch to Greek or Hebrew [19:12] dine [19:12] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/Je8gt [19:12] scummvm/master 904a00f criezy: I18N: Update translations templates [19:13] @Vyzigold take a look at that commit, and I added explanation to the commit log message [19:13] I can confirm it's fixed (the switching to Greek bug) [19:15] apparently vyzigold never tested with those languages. Most of our language codes are extended [19:27] [scummvm] bgK pushed 2 new commits to master: https://git.io/Je8gg [19:27] scummvm/master f22e078 bgK: 3DS: Embed ScummVM's support files in the package [19:27] scummvm/master dfc0a51 bgK: 3DS: Fix OSystem::grabOverlay [19:27] [scummvm] bgK closed pull request #1889: 3DS: Embed ScummVM's support files in the package (master...3ds-packaging) https://git.io/Je8Ly [19:28] and we are back to the usual two warnings. [19:30] [scummvm] sev- pushed 1 new commits to master: https://git.io/Je8gr [19:30] scummvm/master 5acaaed sev-: GRAPHICS: MACGUI: Crash-proof window management. [19:32] [scummvm] bgK pushed 1 new commits to master: https://git.io/Je8g6 [19:32] scummvm/master 0f9cdfc bgK: 3DS: Fix creating the scummvm directory on the SD card [19:47] In non-related news, Saints Row 2 is getting a patch for the PC to fix bugs and performance [19:52] @antoniou79 lol what [19:55] They just announced it on Volition's live stream on twitch [20:02] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [20:27] ajax16384 (~User@109.60.130.33) left irc: Quit: Leaving [20:43] SylvainTV (~Sylvain@lfbn-lil-1-240-153.w90-45.abo.wanadoo.fr) joined #scummvm. [20:43] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [21:01] ny00123 (~ny00123@31.210.181.248) left irc: Quit: Leaving [21:42] [scummvm] peterkohaut opened pull request #1892: ANDROID: Fix scaling on devices with high resolution (master...androidscalingfix) https://git.io/Je8Vu [21:58] P2E (~tgz@209.251.45.7) joined #scummvm. [22:02] P2E_ (~tgz@209.251.45.7) left irc: Ping timeout: 268 seconds [22:18] Eh, the internet archive added 2500 more titles to their list of DOS games playable in the browser, lotsa classics, from Maniac Mansion to Phantasmagoria. [22:21] [scummvm] ccawley2011 opened pull request #1893: GUI: Fix crash when clicking and dragging a tab widget (master...gui-drag-tab) https://git.io/Je8ws [22:27] I saw an article about that on Ars Technica. Colossal Cave got a brief mention: https://arstechnica.com/gaming/2019/10/thousands-of-dos-games-have-been-added-to-the-internet-archive/ [22:44] ccawley2011 (~ccawley20@host109-149-11-176.range109-149.btcentralplus.com) left irc: Quit: Leaving [22:46] looks like they collab'ed with some of the big collector groups like exodos which is cool [23:04] heroux (sandroco@gateway/shell/insomnia247/x-ijslxaywhrdcvync) left irc: Read error: Connection reset by peer [23:04] heroux (sandroco@gateway/shell/insomnia247/x-npcepdwkfdthaoql) joined #scummvm. [23:49] phyber (phyber@unaffiliated/phyber) left irc: Quit: . [23:50] phyber (phyber@unaffiliated/phyber) joined #scummvm. [00:00] --- Tue Oct 15 2019