Skip to content

Commit

Permalink
fix resource_manager_flag enum
Browse files Browse the repository at this point in the history
  • Loading branch information
wrapperup committed Dec 17, 2024
1 parent c64f13a commit 6753946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/miniaudio/resource_manager.odin
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ RESOURCE_MANAGER_MAX_JOB_THREAD_COUNT :: 64

resource_manager_flag :: enum c.int {
/* Indicates ma_resource_manager_next_job() should not block. Only valid when the job thread count is 0. */
NON_BLOCKING = 0x00000001,
NON_BLOCKING = 0,

/* Disables any kind of multithreading. Implicitly enables MA_RESOURCE_MANAGER_FLAG_NON_BLOCKING. */
NO_THREADING = 0x00000002,
NO_THREADING = 1,
}

resource_manager_flags :: bit_set[resource_manager_flag; u32]
Expand Down

0 comments on commit 6753946

Please sign in to comment.