Add missing constructor

This commit is contained in:
Exzap 2023-03-13 04:55:27 +01:00
parent eaf006d606
commit 9049ad91f9

View File

@ -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;