Skip to content

Commit

Permalink
bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Aug 30, 2024
1 parent b128d94 commit 83985c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/yojimbo_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#define YOJIMBO_MAJOR_VERSION 1
#define YOJIMBO_MINOR_VERSION 0
#define YOJIMBO_PATCH_VERSION 0
#define YOJIMBO_PATCH_VERSION 1

#if !defined(YOJIMBO_DEBUG) && !defined(YOJIMBO_RELEASE)
#if defined(NDEBUG)
Expand Down
5 changes: 5 additions & 0 deletions test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,9 @@ void test_connection_reliable_ordered_messages_and_blocks_multiple_channels()
{
const int NumChannels = 2;

yojimbo_assert( NumChannels >= 0 );
yojimbo_assert( NumChannels <= MaxChannels );

double time = 100.0;

TestMessageFactory messageFactory( GetDefaultAllocator() );
Expand Down Expand Up @@ -1914,6 +1917,8 @@ void test_reliable_outbound_sequence_outdated()
config.numChannels = 2;
config.timeout = -1;

yojimbo_assert( config.numChannels <= MaxChannels );

const int BlockSize = config.channel[0].blockFragmentSize * 2;

Client client( GetDefaultAllocator(), clientAddress, config, adapter, time );
Expand Down

0 comments on commit 83985c5

Please sign in to comment.