From 0aec9400c705ffb71767699b56ae263769a491ff Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 11 Nov 2016 12:54:19 -0800 Subject: [PATCH] Fix buffer count in stats display --- interface/resources/qml/Stats.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/Stats.qml b/interface/resources/qml/Stats.qml index 9c55b1ce2d..ce3f2a56db 100644 --- a/interface/resources/qml/Stats.qml +++ b/interface/resources/qml/Stats.qml @@ -241,7 +241,7 @@ Item { text: "GPU Buffers: " } StatText { - text: " Count: " + root.gpuTextures; + text: " Count: " + root.gpuBuffers; } StatText { text: " Memory: " + root.gpuBufferMemory;