Skip to content

Commit f8c979e

Browse files
committed
tateyoko: Fix decode of hatenas
1 parent 0e9092b commit f8c979e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/variety/tateyoko.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@
212212
var ca = bstr.charAt(i),
213213
cell = bd.cell[c];
214214

215-
if (ca === "x") {
215+
if (ca === ".") {
216+
cell.qnum = -2;
217+
} else if (ca === "x") {
216218
cell.ques = 1;
217219
} else if (this.include(ca, "o", "s")) {
218220
cell.ques = 1;

0 commit comments

Comments
 (0)