Skip to content

Commit

Permalink
Fix type_and_cargo decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
schwehr committed Jul 17, 2011
1 parent 7948289 commit eb4644e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ais5.cpp
Expand Up @@ -30,7 +30,7 @@ Ais5::Ais5(const char *nmea_payload) {

name = ais_str(bs, 112, 120);

type_and_cargo = ubits(bs, 120, 8);
type_and_cargo = ubits(bs, 232, 8);
dim_a = ubits(bs, 240, 9);
dim_b = ubits(bs, 249, 9);
dim_c = ubits(bs, 258, 6);
Expand Down

0 comments on commit eb4644e

Please sign in to comment.