Removed superfluous cast.

This commit is contained in:
Camilla Berglund 2014-03-24 13:31:01 +01:00
parent 0e20577af4
commit 5b5717e539

View File

@ -53,7 +53,7 @@ static void error_callback(int error, const char* description)
static int thread_main(void* data)
{
const Thread* thread = (const Thread*) data;
const Thread* thread = data;
glfwMakeContextCurrent(thread->window);
glfwSwapInterval(1);