From 7eec63afd018e08c6f2fbe14f2db853f0c1f6c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 3 Aug 2013 14:56:24 +0200 Subject: [PATCH] Build fix. I have NO IDEA how this did compile and work. --- src/Test/BufferGLTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/BufferGLTest.cpp b/src/Test/BufferGLTest.cpp index fc21ff125..ebd9b1bf5 100644 --- a/src/Test/BufferGLTest.cpp +++ b/src/Test/BufferGLTest.cpp @@ -256,7 +256,7 @@ void BufferGLTest::copy() { Buffer buffer2; buffer2.setData(5, nullptr, Buffer::Usage::StaticDraw); - Buffer::copy(&buffer1, &buffer2, 1, 2, 3); + Buffer::copy(buffer1, buffer2, 1, 2, 3); MAGNUM_VERIFY_NO_ERROR(); /** @todo How to verify the contents in ES? */