Trailing comma nit;

This commit is contained in:
bjorn 2023-04-28 20:36:43 -07:00
parent 6c45c4df3c
commit dbc59b6749
1 changed files with 1 additions and 1 deletions

View File

@ -6215,7 +6215,7 @@ static MappedBuffer mapBuffer(BufferPool* pool, uint32_t size, size_t align) {
.buffer = buffer->gpu,
.offset = cursor,
.extent = size,
.pointer = (char*) buffer->pointer + cursor,
.pointer = (char*) buffer->pointer + cursor
};
}