From 9049ad91f9d393e687007d43286ffedf9af40504 Mon Sep 17 00:00:00 2001 From: Exzap <13877693+Exzap@users.noreply.github.com> Date: Mon, 13 Mar 2023 04:55:27 +0100 Subject: [PATCH] Add missing constructor --- .../HW/Latte/LegacyShaderDecompiler/LatteDecompilerEmitGLSL.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Cafe/HW/Latte/LegacyShaderDecompiler/LatteDecompilerEmitGLSL.cpp b/src/Cafe/HW/Latte/LegacyShaderDecompiler/LatteDecompilerEmitGLSL.cpp index 67743528..5ce0b76f 100644 --- a/src/Cafe/HW/Latte/LegacyShaderDecompiler/LatteDecompilerEmitGLSL.cpp +++ b/src/Cafe/HW/Latte/LegacyShaderDecompiler/LatteDecompilerEmitGLSL.cpp @@ -281,6 +281,8 @@ struct ALUClauseTemporariesState struct GPRTemporary { + GPRTemporary(uint8 gprIndex, uint8 channel, uint8 backupVarIndex) : gprIndex(gprIndex), channel(channel), backupVarIndex(backupVarIndex) {} + uint8 gprIndex; uint8 channel; uint8 backupVarIndex;