mirror of https://github.com/OpenTTD/OpenTTD
parent
0966f7b3d6
commit
46b8382c64
|
@ -356,6 +356,10 @@ void OneOfManySettingDesc::FormatValue(char *buf, const char *last, const void *
|
||||||
void ManyOfManySettingDesc::FormatValue(char *buf, const char *last, const void *object) const
|
void ManyOfManySettingDesc::FormatValue(char *buf, const char *last, const void *object) const
|
||||||
{
|
{
|
||||||
uint bitmask = (uint)this->Read(object);
|
uint bitmask = (uint)this->Read(object);
|
||||||
|
if (bitmask == 0) {
|
||||||
|
buf[0] = '\0';
|
||||||
|
return;
|
||||||
|
}
|
||||||
bool first = true;
|
bool first = true;
|
||||||
for (uint id : SetBitIterator(bitmask)) {
|
for (uint id : SetBitIterator(bitmask)) {
|
||||||
if (!first) buf = strecpy(buf, "|", last);
|
if (!first) buf = strecpy(buf, "|", last);
|
||||||
|
|
Loading…
Reference in New Issue