Skip to content

Commit

Permalink
YAYA Tc571-3 の TOAUTOEX / CVAUTOEX 追加に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolat committed Jul 10, 2022
1 parent 8208d59 commit edce22a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions yaya_saori/builtins.aym
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,16 @@ cvauto
RES.RESULT = CVAUTO(REQ.ARGS[0])
}

cvautoex
{
if ARRAYSIZE(REQ.ARGS) < 1 {
LOGGING("cvautoex: 引数が不足しています")
-1
return
}
RES.RESULT = CVAUTOEX(REQ.ARGS[0])
}

execute
{
if ARRAYSIZE(REQ.ARGS) < 1 {
Expand Down Expand Up @@ -1437,6 +1447,16 @@ toauto
RES.RESULT = TOAUTO(REQ.ARGS[0])
}

toautoex
{
if ARRAYSIZE(REQ.ARGS) < 1 {
LOGGING("toautoex: 引数が不足しています")
-1
return
}
RES.RESULT = TOAUTOEX(REQ.ARGS[0])
}

zen2han
{
if ARRAYSIZE(REQ.ARGS) < 1 {
Expand Down

0 comments on commit edce22a

Please sign in to comment.