Skip to content

Commit

Permalink
Add brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
healeycodes authored Mar 9, 2024
1 parent 46c44af commit a0785bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posts/compressing-cs2-demos.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Here are some optimizations we can make here.
- Rather than listing the players every frame, just track when they spawn and die
- Only report equipment when it changes. Also store the equipment names in an object at the top level and use another new short id as a key

This an example of [delta encoding](https://en.wikipedia.org/wiki/Delta_encoding) or [data differencing](https://en.wikipedia.org/wiki/Data_differencing).
This an example of [delta encoding](https://en.wikipedia.org/wiki/Delta_encoding) (or [data differencing](https://en.wikipedia.org/wiki/Data_differencing)).

The new data types look like this:

Expand Down

0 comments on commit a0785bb

Please sign in to comment.