| 67 | } |
| 68 | |
| 69 | void ckpt_progress_label(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 70 | { |
| 71 | const ScriptArgs args(Parser, Param, NumArgs, "progress_label"); |
| 72 | const size_t layer = layerArg(args); |
| 73 | const char* label = args.strOr(1, ""); |
| 74 | ScriptConsole::get().setLayerLabel(layer, label); |
| 75 | } |
| 76 | |
| 77 | void ckpt_progress_end(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 78 | { |
nothing calls this directly
no test coverage detected