Skip to content

Commit

Permalink
Change the default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed May 31, 2024
1 parent 377eeb4 commit e52a517
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion starboard/android/shared/configuration_constants.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,5 @@ const uint32_t kSbMaxSystemPathCacheDirectorySize = 24 << 20; // 24MiB
SB_EXPORT extern const bool kSbCanMapExecutableMemory = true;

// Platform can support partial audio frames
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = false;
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = true;
#endif
2 changes: 1 addition & 1 deletion starboard/linux/shared/configuration_constants.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ const uint32_t kSbMaxSystemPathCacheDirectorySize = 24 << 20; // 24MiB
SB_EXPORT extern const bool kSbCanMapExecutableMemory = true;

// Platform can support partial audio frames
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = false;
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = true;
#endif
2 changes: 1 addition & 1 deletion starboard/raspi/shared/configuration_constants.cc
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,5 @@ const uint32_t kSbMaxSystemPathCacheDirectorySize = 24 << 20; // 24MiB
SB_EXPORT extern const bool kSbCanMapExecutableMemory = true;

// Platform can support partial audio frames
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = false;
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = true;
#endif
2 changes: 1 addition & 1 deletion starboard/win/shared/configuration_constants.cc
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@ const uint32_t kSbMaxSystemPathCacheDirectorySize = 24 << 20; // 24MiB
SB_EXPORT extern const bool kSbCanMapExecutableMemory = true;

// Platform can support partial audio frames
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = false;
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = true;
#endif
2 changes: 1 addition & 1 deletion starboard/xb1/shared/configuration_constants.cc
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ const uint32_t kSbMaxSystemPathCacheDirectorySize = 24 << 20; // 24MiB
SB_EXPORT extern const bool kSbCanMapExecutableMemory = true;

// Platform can support partial audio frames
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = false;
SB_EXPORT extern const bool kHasPartialAudioFramesSupport = true;
#endif

0 comments on commit e52a517

Please sign in to comment.