diff options
Diffstat (limited to 'src/components/gfx/buffer_map.rs')
-rw-r--r-- | src/components/gfx/buffer_map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/buffer_map.rs b/src/components/gfx/buffer_map.rs index 33ab8a4b5d2..9b3a6f60988 100644 --- a/src/components/gfx/buffer_map.rs +++ b/src/components/gfx/buffer_map.rs @@ -54,7 +54,7 @@ impl BufferKey { /// A helper struct to keep track of buffers in the HashMap struct BufferValue<T> { /// An array of buffers, all the same size - buffers: Vec<T>, + buffers: Vec<T>, /// The counter when this size was last requested last_action: uint, } |