From 68e12a4664a5d1b050905f28d2f1fbab32694711 Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 22 Jun 2015 09:07:55 -0700 Subject: [PATCH] typo fix --- src/xenia/gpu/gl4/command_processor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/gpu/gl4/command_processor.cc b/src/xenia/gpu/gl4/command_processor.cc index 2c33fb818..16d1cd68f 100644 --- a/src/xenia/gpu/gl4/command_processor.cc +++ b/src/xenia/gpu/gl4/command_processor.cc @@ -2878,9 +2878,9 @@ bool CommandProcessor::IssueCopy() { glDepthMask(GL_TRUE); glStencilMask(0xFF); glClearNamedFramebufferfv(source_framebuffer->framebuffer, GL_DEPTH, - 0, @depth); + 0, &depth); glClearNamedFramebufferiv(source_framebuffer->framebuffer, GL_STENCIL, - 0, #stencil); + 0, &stencil); glDepthMask(old_depth_mask); glStencilMask(old_stencil_mask); }