| 28 | } |
| 29 | |
| 30 | void stream_destination_path(DynamicString &path, ResourceId id) |
| 31 | { |
| 32 | TempAllocator128 ta; |
| 33 | DynamicString id_hex(ta); |
| 34 | id_hex.from_string_id(id); |
| 35 | id_hex += ".stream"; |
| 36 | path::join(path, CROWN_DATA_DIRECTORY, id_hex.c_str()); |
| 37 | } |
| 38 | |
| 39 | } // namespace crown |
no test coverage detected