bet they switch outfits from time to time, without anybody noticing.![]()
One says "Father", the other says "Daddy"...
THX for the share...
Thanks now its working fineI got the same error. There seemed to be an issue with some width/height values not being applicable. I edited the rpg_core.js file in www/js and it seems to work now
EDIT: For some reason the .js file was marked as a virus, so I'll just paste the edits to make.
Change wherever it says:
var imageData = context.getImageData(0, 0, this.width, this.height);
to
var w = Math.max(1, Math.floor(this.width) || 1);
var h = Math.max(1, Math.floor(this.height) || 1);
var imageData = context.getImageData(0, 0, w, h);
and imageDataX = context.getImageData(0, 0, 1, 1);
to
var xSafe = Math.floor(x) || 0;
var ySafe = Math.floor(y ) || 0;
var data = this._context.getImageData(xSafe, ySafe, 1, 1).data;
Her,her,hisThis game description . Also, thanks for the translation
Faster than light?Language: English (FTL)
I think I have the same error but this fix does not work for me.I got the same error. There seemed to be an issue with some width/height values not being applicable. I edited the rpg_core.js file in www/js and it seems to work now
EDIT: For some reason the .js file was marked as a virus, so I'll just paste the edits to make.
Change wherever it says:
var imageData = context.getImageData(0, 0, this.width, this.height);
to
var w = Math.max(1, Math.floor(this.width) || 1);
var h = Math.max(1, Math.floor(this.height) || 1);
var imageData = context.getImageData(0, 0, w, h);
and imageDataX = context.getImageData(0, 0, 1, 1);
to
var xSafe = Math.floor(x) || 0;
var ySafe = Math.floor(y ) || 0;
var data = this._context.getImageData(xSafe, ySafe, 1, 1).data;
Step 1:I think I have the same error but this fix does not work for me.
So I am running this on PC.
And I get the black screen after finishing serving the first man the second time.
If I apply the changes that you propose above, then I get a black screen on start.
Here are some details on how I understood your edits.
1. Replacing "var imageData = context.getImageData(0, 0, this.width, this.height);" to 3 other lines. This one is straight forward, just copypasted it 2 times in the file where I found complete match the initial line.
2. Replacing "imageDataX = context.getImageData(0, 0, 1, 1);":
- there are 2 variables imageData1 and imageData2.
- I have pasted once the xSafe and ySafe at the start of the function.
- instead of
var data = this._context.getImageData(xSafe, ySafe, 1, 1).data;
I added:
imageData1 = this._context.getImageData(xSafe, ySafe, 1, 1).data;
imageData2 = this._context.getImageData(xSafe, ySafe, 1, 1).data;
rpg_core.js and exactly look for: var data = this._context.getImageData(x, y, 1, 1).data;
var xSafe = Math.floor(x) || 0;
var ySafe = Math.floor(y) || 0;
var data = this._context.getImageData(xSafe, ySafe, 1, 1).data;
var imageData = context.getImageData(0, 0, this.width, this.height);
var w = Math.max(1, Math.floor(this.width) || 1);
var h = Math.max(1, Math.floor(this.height) || 1);
var imageData = context.getImageData(0, 0, w, h);
Well, this one is an unedited machine translation, the other one is touched by human. There is no reason to use the one in the OP. The description has changed several times and is quite misleading, now they changed it to "Fan Translation". Maybe just die, idiots. Not to mention the files that are uploaded do not work without weird manual fixes to the code, but this one is on the dev. Fucked up menus are on translator being retarded.Which one is better?
Japanese has gender-neutral pronouns.
English does not.
MTL-kun is very confused
How the Hell is this still news srsly...
Clarification. Japanese has gender neutral pronouns but most of them are rude. Pronouns in Japanese outside of Proper Nouns like names are usually rude in general. That's why Japanese often omits pronouns entirely and that is what usually messes with translators and translation software, since they often have to guess the subject based on context. MTL can't be consistent with subjects because it doesn't have the ability to keep relevant information in it's memory. That's why AI TL is so popular now, AI TL can remember and infer context on it's own, and if the person putting it through the AI has any knowledge of Japanese the translation becomes better because the person can give context to the AI when it needs it. Like saying Alice is a boy instead of a girl, because the AI will assume Alice is female every time unless you specify it beforehand.Oh that explains a lot of things with mtl. I feel kinda stupid for not making the connection lol.