summaryrefslogtreecommitdiff
path: root/elm3
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-09-12 11:35:00 +0200
committerYorhel <git@yorhel.nl>2019-09-12 11:35:00 +0200
commit5a62f120bad71b81068fd1d50035effc0fda688c (patch)
tree9b5b6c183b97fce68a52e1f7178f6140f9989f08 /elm3
parentf6851137f4a6f1f9feba51ec5473e743d64a58b2 (diff)
VNDB::Types: Convert animated & voiced
Diffstat (limited to 'elm3')
-rw-r--r--elm3/RelEdit/General.elm6
1 files changed, 3 insertions, 3 deletions
diff --git a/elm3/RelEdit/General.elm b/elm3/RelEdit/General.elm
index 17a510bb..698c9f99 100644
--- a/elm3/RelEdit/General.elm
+++ b/elm3/RelEdit/General.elm
@@ -223,13 +223,13 @@ format model = card "format" "Format" [] <|
, inputSelect [id "resolution", onInput Resolution] model.resolution resolutions
]
, [ label [for "voiced"] [text "Voiced"]
- , inputSelect [id "voiced", onInput Voiced] (String.fromInt model.voiced) <| List.indexedMap (\a b -> (String.fromInt a, b)) voiced
+ , inputSelect [id "voiced", onInput Voiced] (String.fromInt model.voiced) <| List.map (\(a,b) -> (String.fromInt a, b)) voiced
]
, [ label [for "ani_story"] [text "Story animation"]
- , inputSelect [id "ani_story", onInput AniStory] (String.fromInt model.aniStory) <| List.indexedMap (\a b -> (String.fromInt a, b)) animated
+ , inputSelect [id "ani_story", onInput AniStory] (String.fromInt model.aniStory) <| List.map (\(a,b) -> (String.fromInt a, b)) animated
]
, [ label [for "ani_ero"] [text "Ere scene animation"]
- , inputSelect [id "ani_ero", onInput AniEro] (String.fromInt model.aniEro) <| List.indexedMap (\a b -> (String.fromInt a, if a == 0 then "Unknown / no ero scenes" else b)) animated
+ , inputSelect [id "ani_ero", onInput AniEro] (String.fromInt model.aniEro) <| List.map (\(a,b) -> (String.fromInt a, if a == 0 then "Unknown / no ero scenes" else b)) animated
]
]
]) ++