1
0
Fork 0

SID is a predefined type under windows

This commit is contained in:
Frederic Bouvier 2012-05-07 10:19:55 +02:00
parent b092987656
commit 71622dc3ca

View file

@ -483,7 +483,7 @@ static void flightplanGhostSetMember(naContext c, void* g, naRef field, naRef va
} else if (!strcmp(fieldName, "sid")) { } else if (!strcmp(fieldName, "sid")) {
Procedure* proc = procedureGhost(value); Procedure* proc = procedureGhost(value);
if (proc && (proc->type() == PROCEDURE_SID)) { if (proc && (proc->type() == PROCEDURE_SID)) {
fp->setSID((SID*) proc); fp->setSID((flightgear::SID*) proc);
return; return;
} }
// allow a SID transition to be set, implicitly include the SID itself // allow a SID transition to be set, implicitly include the SID itself