mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
DLF import: Add bailout flag to GF-changed event
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f0e68137d7
commit
87153cefaa
1 changed files with 1 additions and 1 deletions
|
@ -2804,7 +2804,7 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size)
|
|||
strcpy(cur_event.name, "User mark");
|
||||
break;
|
||||
case 27:
|
||||
snprintf(cur_event.name, MAX_EVENT_NAME, "GF Switch (%d/%d)", ptr[7], ptr[8]);
|
||||
snprintf(cur_event.name, MAX_EVENT_NAME, "%sGF Switch (%d/%d)", ptr[6] ? "Bailout, ": "", ptr[7], ptr[8]);
|
||||
break;
|
||||
case 28:
|
||||
strcpy(cur_event.name, "Peer Up");
|
||||
|
|
Loading…
Reference in a new issue