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); }