| 160 | } |
| 161 | |
| 162 | void ckpt_title_id(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 163 | { |
| 164 | HostTitle title = titleArg(ScriptArgs(Parser, Param, NumArgs, "title_id"), 0); |
| 165 | ReturnValue->Val->Pointer = strToRet(idToHex(title.id)); |
| 166 | } |
| 167 | |
| 168 | void ckpt_title_name(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 169 | { |
nothing calls this directly
no test coverage detected