MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / PopUnsignedDWord

Method PopUnsignedDWord

src/newgrf_text.cpp:710–714  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

708 int16_t PopSignedWord() { return (int32_t)this->PopUnsignedWord(); }
709
710 uint32_t PopUnsignedDWord()
711 {
712 uint32_t val = this->PopUnsignedWord();
713 return val | (this->PopUnsignedWord() << 16);
714 }
715 int32_t PopSignedDWord() { return (int32_t)this->PopUnsignedDWord(); }
716
717 uint64_t PopUnsignedQWord()

Callers 3

PopSignedDWordMethod · 0.95
PopUnsignedQWordMethod · 0.95

Calls 1

PopUnsignedWordMethod · 0.95

Tested by

no test coverage detected