Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
JujuAdams committed Dec 9, 2020
2 parents f1d2877 + 80c7408 commit e6e0bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/snap_from_messagepack/snap_from_messagepack.gml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function snap_from_messagepack()
{
var _buffer = argument[0];
var _offset = ((argument_count > 1) && (argument[1] != undefined))? argument[1] : 0;
var _destroy_buffer = ((argument_count > 3) && (argument[3] != undefined))? argument[3] : false;
var _destroy_buffer = ((argument_count > 2) && (argument[2] != undefined))? argument[2] : false;

var _old_tell = buffer_tell(_buffer);
buffer_seek(_buffer, buffer_seek_start, _offset);
Expand Down

0 comments on commit e6e0bc7

Please sign in to comment.