diff --git a/src/xenia/gpu/gl4/command_processor.cc b/src/xenia/gpu/gl4/command_processor.cc index 9894afb03..b66fcf846 100644 --- a/src/xenia/gpu/gl4/command_processor.cc +++ b/src/xenia/gpu/gl4/command_processor.cc @@ -2632,6 +2632,10 @@ bool CommandProcessor::IssueCopy() { read_format = GL_RG16; read_type = GL_HALF_FLOAT; break; + case ColorFormat::k_16_16_16_16: + read_format = GL_RGBA; + read_type = GL_UNSIGNED_SHORT; + break; case ColorFormat::k_16_16_16_16_FLOAT: read_format = GL_RGBA; read_type = GL_HALF_FLOAT;