device_memory_manager: fix ScratchBuffer indexing
This commit is contained in:
parent
8bd10473d6
commit
550cadbee4
|
@ -31,9 +31,8 @@ public:
|
|||
buffer.resize(0);
|
||||
size_t index = 0;
|
||||
const auto add_value = [&](u32 value) {
|
||||
buffer[index] = value;
|
||||
index++;
|
||||
buffer.resize(index);
|
||||
buffer.resize(index + 1);
|
||||
buffer[index++] = value;
|
||||
};
|
||||
|
||||
u32 iter_entry = start_entry;
|
||||
|
|
Reference in New Issue