[00:31] Deledrius (~Deledrius@68.118.139.214) left irc: Quit: App.Exit [00:37] Deledrius (~Deledrius@68.118.139.214) joined #scummvm. [02:38] DominusExult (~dominus@port-92-194-41-42.dynamic.qsc.de) joined #scummvm. [02:38] DominusExult (~dominus@port-92-194-41-42.dynamic.qsc.de) left irc: Changing host [02:38] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [02:38] dreammaster (~dreammast@c-73-241-66-252.hsd1.ca.comcast.net) joined #scummvm. [02:38] #scummvm: mode change '+o dreammaster' by ChanServ!ChanServ@services. [02:40] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 276 seconds [02:40] Nick change: DominusExult -> Dominus [02:51] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [04:25] [scummvm] BallM4788 opened pull request #1927: MOHAWK: RIVEN: For running full-speed on 3DS, add preprocessor macro defs and conditional inclusions (master...3ds_rivenpostmagfixes) https://git.io/JeV7I [05:01] Begasus (~begasus@ptr-4qba4e8n7atmb7t8otm.18120a2.ip6.access.telenet.be) joined #scummvm. [05:03] cd (~cd@unaffiliated/cd) left irc: Quit: cd [05:03] Begas_VBox (~Begasus@d54c05bea.access.telenet.be) joined #scummvm. [05:08] [scummvm] bluegr closed pull request #1926: SDL: Fix Windows screenshots with unicode paths (master...screenshotfix) https://git.io/JeVS9 [05:08] [scummvm] bluegr pushed 1 new commits to master: https://git.io/JeV7u [05:08] scummvm/master b593fe2 sluicebox: SDL: Fix Windows screenshots with unicode paths [05:08] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/JeV7z [05:08] scummvm/master 5c078d8 criezy: I18N: Update translations templates [05:36] Begas_VBox (~Begasus@d54c05bea.access.telenet.be) left irc: Quit: Vision[0.10.3]: i've been blurred! [05:47] Axy (~Mia@213.153.219.61) joined #scummvm. [05:47] Axy (~Mia@213.153.219.61) left irc: Changing host [05:47] Axy (~Mia@unaffiliated/mia) joined #scummvm. [05:49] Mia (~Mia@unaffiliated/mia) left irc: Ping timeout: 265 seconds [06:07] Mia (~Mia@176.88.103.238) joined #scummvm. [06:07] Mia (~Mia@176.88.103.238) left irc: Changing host [06:07] Mia (~Mia@unaffiliated/mia) joined #scummvm. [06:08] Begasus (~begasus@ptr-4qba4e8n7atmb7t8otm.18120a2.ip6.access.telenet.be) left irc: Quit: Ex-Chat [06:09] Axy (~Mia@unaffiliated/mia) left irc: Ping timeout: 268 seconds [06:15] dreammaster (~dreammast@c-73-241-66-252.hsd1.ca.comcast.net) left irc: [07:12] SylvainTV (~Sylvain@alille-658-1-80-254.w92-147.abo.wanadoo.fr) left irc: Ping timeout: 240 seconds [08:23] JohnnyonFlame (~quassel@177.55.195.58) left irc: Ping timeout: 240 seconds [09:46] hmm, I am having trouble with android's vsnprintf(). It needs that format string and the arguments in UTF-8 format, so it freaks out with translated strings when String::Format is used... Is there another port that has this issue -- and how was it resolved there? [09:49] ajax16384 (~User@109.60.130.33) joined #scummvm. [09:49] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [09:49] A kind of ugly hack to convert the format string to UTF-8 works, but I have little clue about how to go about converting a list of variable arguments to UTF-8 [09:50] that would be a PITA [09:51] as you would have to parse the format string yourself [09:51] h00ligan (~User@109.60.130.33) joined #scummvm. [09:51] #scummvm: mode change '+o h00ligan' by ChanServ!ChanServ@services. [09:54] ideally I only want to write a wrapper around that function that would work for Android only [09:54] ajax16384 (~User@109.60.130.33) left irc: Quit: Leaving [09:55] h00ligan (~User@109.60.130.33) left irc: Client Quit [09:55] ajax16384 (~User@109.60.130.33) joined #scummvm. [09:55] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [09:55] what you really want is a function that don't deals with encodings [09:55] I am not sure I understand [09:56] classic printf functions we expect are functions which takes ASCII extended and don't expect multibyte input [09:57] correct, that's the problem with Android changing this particular function (and maybe others like this, I am unsure as of yet) [09:58] I can't find on google any documentation about this except some SO posts [09:59] I see in cppreference "The format string consists of ordinary multibyte characters (except %), which are copied unchanged" [09:59] so that's legal for android to expect multibyte encoding but that's not what we are used to [09:59] (just to be exact, I don't think Android changed the function, it just uses an updated version of it) [10:00] they have teir own libc [10:00] +h [10:00] I think that's why [10:00] you'll probably need to use another printf. i think sdl has one if you're using that backend [10:02] We dropped the SDL backed. [10:03] I will have to check if our SDL port had this issue. [10:03] The plain Android port must have had this issue for a while though (it can cause crashes when using a language other than English on some screens) [10:04] Like the "About..." screen [10:04] well android has gone through a bunch of libc's so it might be a new thing now that you've updated the toolchain [10:05] I don't think so. I've made sure to keep the NDK to the r14b we were already using. [10:29] [scummvm] bgK pushed 1 new commits to master: https://git.io/JeVFK [10:29] scummvm/master c847476 bgK: CLOUD: Only download saves when necessary [10:31] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [10:37] well... libc is dynamically linked [10:37] so it will depend more on the android version than on the NDK one [10:38] ccawley2011 (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) joined #scummvm. [10:38] #scummvm: mode change '+o ccawley2011' by ChanServ!ChanServ@services. [10:42] ldevulder_ (~ldevulder@176.167.116.202) joined #scummvm. [10:45] ldevulder__ (~ldevulder@176.167.9.175) left irc: Ping timeout: 265 seconds [11:05] SylvainTV (~Sylvain@alille-658-1-80-254.w92-147.abo.wanadoo.fr) joined #scummvm. [11:05] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [11:38] JohnnyonFlame (~quassel@177.55.195.58) joined #scummvm. [11:56] brooksy (~borosky@095160157148.dynamic-ra-10.vectranet.pl) joined #scummvm. [11:57] borosky (~borosky@095160157148.dynamic-ra-10.vectranet.pl) left irc: Ping timeout: 250 seconds [12:05] ccawley2011_ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) joined #scummvm. [12:05] #scummvm: mode change '+o ccawley2011_' by ChanServ!ChanServ@services. [12:07] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 265 seconds [12:08] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [12:08] ccawley2011 (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) left irc: Ping timeout: 240 seconds [12:40] [scummvm] ccawley2011 pushed 1 new commits to master: https://git.io/JeVNk [12:40] scummvm/master 7732958 ccawley2011: IMAGE: Remove unnecessary check from Image::writePNG() [13:02] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [13:03] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [13:28] travis-ci (~travis-ci@ec2-34-224-90-84.compute-1.amazonaws.com) joined #scummvm. [13:28] janisozaur/scummvm#1 (master - 7732958 : Cameron Cawley): The build passed. [13:28] Change view : https://github.com/janisozaur/scummvm/compare/f6f8c3198407...773295842ac5 [13:28] Build details : https://travis-ci.com/janisozaur/scummvm/builds/135820239 [13:28] travis-ci (travis-ci@ec2-34-224-90-84.compute-1.amazonaws.com) left #scummvm. [15:01] [scummvm] ccawley2011 opened pull request #1928: GRAPHICS: Move Windows CE specific scalers into the backend (master...wince-scalers) https://git.io/JeVxO [15:05] [scummvm] antoniou79 pushed 1 new commits to master: https://git.io/JeVxc [15:05] scummvm/master e7a19d3 antoniou79: ANDROID: Disable support for split screen [15:10] [scummvm] raziel- opened pull request #1929: AMIGAOS4: Bits of cleanup (master...patch-3) https://git.io/JeVx4 [15:15] Begasus (~begasus@ptr-4qba4e8kuwwml32xthb.18120a2.ip6.access.telenet.be) joined #scummvm. [15:21] SylvainTV (~Sylvain@alille-658-1-80-254.w92-147.abo.wanadoo.fr) left irc: Ping timeout: 246 seconds [15:30] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) joined #scummvm. [15:38] [scummvm] antoniou79 pushed 1 new commits to master: https://git.io/JeVpl [15:38] scummvm/master ca8539d antoniou79: BLADERUNNER: Add a engine checkbox to target 120 fps [15:38] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/JeVp8 [15:38] scummvm/master 90c07bf criezy: I18N: Update translations templates [15:43] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) left irc: Read error: No route to host [15:44] Begasus (~begasus@ptr-4qba4e8kuwwml32xthb.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 252 seconds [15:52] Begasus (~begasus@ptr-4qba4e9q1jba1sn8ega.18120a2.ip6.access.telenet.be) joined #scummvm. [15:57] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) joined #scummvm. [15:59] ccawley2011 (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) joined #scummvm. [15:59] #scummvm: mode change '+o ccawley2011' by ChanServ!ChanServ@services. [16:00] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/JeVpy [16:00] scummvm/master 39b030d lotharsm: I18N: Update translation (German) [16:01] ccawley2011_ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) left irc: Ping timeout: 276 seconds [16:02] Lightkey (~Darklock@p200300F693C0484222CF30FFFE083718.dip0.t-ipconnect.de) left irc: Ping timeout: 245 seconds [16:09] timofonic (~timofonic@unaffiliated/timofonic) left irc: Ping timeout: 240 seconds [16:10] timofonic (~timofonic@unaffiliated/timofonic) joined #scummvm. [16:16] Lightkey (~Darklock@p200300F693C0487522CF30FFFE083718.dip0.t-ipconnect.de) joined #scummvm. [16:21] JohnnyonFlame (~quassel@177.55.195.58) left irc: Ping timeout: 268 seconds [16:44] moralrecordings (~scott@rambocky.moral.net.au) left irc: Ping timeout: 244 seconds [16:44] moralrecordings (~scott@rambocky.moral.net.au) joined #scummvm. [16:56] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [16:56] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [17:01] Hi, I'm Walmaker! [17:03] Stormkeeper (~kvirc@cpc96296-lewi18-2-0-cust121.2-4.cable.virginm.net) left irc: Ping timeout: 268 seconds [17:05] I'm working on a point-and-click adventure game called... [17:05] https://discord.gg/zbRFu65 [17:11] Stormkeeper (~kvirc@cpc96296-lewi18-2-0-cust121.2-4.cable.virginm.net) joined #scummvm. [17:26] SylvainTV (~Sylvain@alille-658-1-80-254.w92-147.abo.wanadoo.fr) joined #scummvm. [17:26] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [17:27] hi walmaker [17:27] Hey! [17:28] [scummvm] digitall closed pull request #1929: AMIGAOS4: Bits of cleanup (master...patch-3) https://git.io/JeVx4 [17:28] [scummvm] digitall pushed 8 new commits to master: https://git.io/JeVjk [17:28] scummvm/master e30112b raziel-: AMIGAOS4: Clean up fs [17:28] scummvm/master 072e805 raziel-: AMIGAOS4: Fix leftovers [17:28] scummvm/master db36784 raziel-: AmigaOS4: More fixes and cleaning [17:30] I bet you loved LucasArt games 🙂 [17:34] Yep! [17:35] Especially 'Day of the Tentacle'! [17:35] Excellent choice! 😛 [17:35] the verb list you're using tells a lot 😉 [17:35] (in the screenshot I saw, I mean)à [17:36] Have you seen the new room I made? [17:36] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [17:37] I only saw the screenshot in "Announcement" [17:37] The full background's in 'Finished-resources","Backgrounds" [17:38] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [17:38] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [17:40] Yep, nice [17:41] I also like the semi-done one in beta, it's cool to see WIP [17:42] Yeah, I'm still working on a few things! [17:42] ny00123 (~ny00123@141.226.11.230) joined #scummvm. [17:51] Begas_VBox (~Begasus@d54C05BEA.access.telenet.be) left irc: Quit: Vision[0.10.3]: i've been blurred! [17:52] Begasus (~begasus@ptr-4qba4e9q1jba1sn8ega.18120a2.ip6.access.telenet.be) left irc: Quit: Ex-Chat [17:54] ccawley2011_ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) joined #scummvm. [17:54] #scummvm: mode change '+o ccawley2011_' by ChanServ!ChanServ@services. [17:57] ccawley2011 (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) left irc: Ping timeout: 240 seconds [18:04] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [18:06] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [18:06] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [18:10] I'm still hiring so if anybody wants to join the team and help out with the game, just ping me! [18:11] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [18:13] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [18:13] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [18:14] cd (~cd@unaffiliated/cd) joined #scummvm. [18:21] JohnnyonFlame (~quassel@177.55.195.58) joined #scummvm. [18:37] Problem (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [18:37] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Read error: Connection reset by peer [18:37] Nick change: Problem -> Raziel^ [18:37] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [18:50] [scummvm] sev- pushed 3 new commits to master: https://git.io/JewvG [18:50] scummvm/master baa7e0f sev-: FULLPIPE: Do not void global engine pointer too early [18:50] scummvm/master 6cad53e sev-: FULLPIPE: Added more debug output [18:50] scummvm/master 416ab05 sev-: FULLPIPE: Use more portable double loading [18:58] Problem (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [18:58] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Read error: Connection reset by peer [18:58] Nick change: Problem -> Raziel^ [18:58] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [19:09] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [19:13] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [19:13] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [19:17] [scummvm] bgK pushed 1 new commits to master: https://git.io/Jewvb [19:17] scummvm/master bd3f157 bgK: GUI: Fix memory leak in the about dialog [19:17] [scummvm] ScummVM-Translations pushed 1 new commits to master: https://git.io/JewvN [19:17] scummvm/master 92587be criezy: I18N: Update translations templates [19:30] [scummvm] sev- pushed 1 new commits to master: https://git.io/Jewft [19:30] scummvm/master 2f34b87 sev-: FULLPIPE: More debug putput [19:35] [scummvm] sev- pushed 1 new commits to master: https://git.io/Jewfs [19:35] scummvm/master 0381833 sev-: FULLPIPE: Fix const'ness [19:43] _sev (~sev@scummvm/undead/sev) left irc: Remote host closed the connection [19:43] _sev (~sev@scummvm/undead/sev) joined #scummvm. [19:43] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [19:50] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) joined #scummvm. [20:05] [scummvm] bgK pushed 2 new commits to master: https://git.io/Jewf6 [20:05] scummvm/master 6a627e3 bgK: COMMON: Fix very noisy warning when building with GCC 9 in C++11 mode [20:05] scummvm/master 09ed67d bgK: MOHAWK: MYST: Use OSystem::fillScreen now it works with all pixel formats [20:09] ny00123 (~ny00123@141.226.11.230) left irc: Quit: Leaving [20:13] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [20:18] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [20:18] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [20:51] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [20:51] brooksy (~borosky@095160157148.dynamic-ra-10.vectranet.pl) left irc: Read error: Connection reset by peer [20:51] borosky (~borosky@095160157148.dynamic-ra-10.vectranet.pl) joined #scummvm. [20:52] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [20:52] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [20:59] ny00123 (~ny00123@141.226.11.230) joined #scummvm. [21:06] ccawley2011__ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) joined #scummvm. [21:06] #scummvm: mode change '+o ccawley2011__' by ChanServ!ChanServ@services. [21:09] ccawley2011_ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) left irc: Ping timeout: 246 seconds [21:14] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Quit: AmigaOS 4 (Unregistered copy). Evaluation period is over. Program will now quit. Thank you for using AmigaOS. [21:15] ajax16384 (~User@109.60.130.33) left irc: Quit: Leaving [21:15] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [21:15] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [21:25] Problem (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) joined #scummvm. [21:25] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Read error: Connection reset by peer [21:25] Nick change: Problem -> Raziel^ [21:25] #scummvm: mode change '+v Raziel^' by ChanServ!ChanServ@services. [21:55] Nick change: mataniko_ -> mataniko [22:05] dreammaster (~dreammast@c-73-241-66-252.hsd1.ca.comcast.net) joined #scummvm. [22:05] #scummvm: mode change '+o dreammaster' by ChanServ!ChanServ@services. [23:02] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) left irc: Ping timeout: 246 seconds [23:06] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) joined #scummvm. [23:11] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) left irc: Ping timeout: 240 seconds [23:13] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) joined #scummvm. [23:15] Drenn (~Drenn@toroon0717w-lp140-01-142-113-122-88.dsl.bell.ca) left irc: Remote host closed the connection [23:20] ny00123 (~ny00123@141.226.11.230) left irc: Quit: Leaving [23:21] Raziel^ (~Raziel@ipbcc07d1b.dynamic.kabel-deutschland.de) left irc: Read error: Connection reset by peer [23:23] ccawley2011__ (~ccawley20@host109-157-36-209.range109-157.btcentralplus.com) left irc: Quit: Leaving [00:00] --- Mon Nov 11 2019