Go で書き直した Ikemen
Revisão | 8f46d1aaa721b545209f97517c6fb964877cf702 (tree) |
---|---|
Hora | 2017-05-17 07:27:06 |
Autor | SUEHIRO <supersuehiro@user...> |
Commiter | SUEHIRO |
bgctrl の type のところに大文字が含まれていると認識できないのを修正
@@ -350,7 +350,7 @@ func newBgCtrl() *bgCtrl { | ||
350 | 350 | func (bgc *bgCtrl) read(is IniSection, idx int) { |
351 | 351 | bgc.idx = idx |
352 | 352 | xy := false |
353 | - switch is["type"] { | |
353 | + switch strings.ToLower(is["type"]) { | |
354 | 354 | case "anim": |
355 | 355 | bgc._type = BT_Anim |
356 | 356 | case "visible": |