1
0
Fork 0

Codefix: Incorrect cast.

pull/13833/head
frosch 2025-03-16 14:23:31 +01:00
parent 7ab9e21143
commit 10bd91f354
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ struct TextRefStack {
uint16_t val = this->PopUnsignedByte();
return val | (this->PopUnsignedByte() << 8);
}
int16_t PopSignedWord() { return static_cast<int32_t>(this->PopUnsignedWord()); }
int16_t PopSignedWord() { return static_cast<int16_t>(this->PopUnsignedWord()); }
uint32_t PopUnsignedDWord()
{