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

Method PutSint16LE

src/core/string_builder.cpp:49–52  ·  view source on GitHub ↗

* Append binary int16 using little endian. */

Source from the content-addressed store, hash-verified

47 * Append binary int16 using little endian.
48 */
49void BaseStringBuilder::PutSint16LE(int16_t value)
50{
51 this->PutUint16LE(static_cast<uint16_t>(value));
52}
53
54/**
55 * Append binary uint32 using little endian.

Callers 1

string_builder.cppFile · 0.80

Calls 1

PutUint16LEMethod · 0.95

Tested by

no test coverage detected