浏览代码

Fix indentation

bkrypt 3 年之前
父节点
当前提交
be9b935953
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      vendor/miniaudio/device_io_types.odin

+ 6 - 6
vendor/miniaudio/device_io_types.odin

@@ -19,11 +19,11 @@ SUPPORT_CUSTOM     :: true
 SUPPORT_NULL       :: true // ODIN_OS != .Emscripten
 
 device_state :: enum c.int {
-  uninitialized = 0,
-  stopped       = 1,  /* The device's default state after initialization. */
-  started       = 2,  /* The device is started and is requesting and/or delivering audio data. */
-  starting      = 3,  /* Transitioning from a stopped state to started. */
-  stopping      = 4,  /* Transitioning from a started state to stopped. */
+	uninitialized = 0,
+	stopped       = 1,  /* The device's default state after initialization. */
+	started       = 2,  /* The device is started and is requesting and/or delivering audio data. */
+	starting      = 3,  /* Transitioning from a stopped state to started. */
+	stopping      = 4,  /* Transitioning from a started state to stopped. */
 }
 
 
@@ -985,7 +985,7 @@ device :: struct {
 	noPreSilencedOutputBuffer: b8,
 	noClip:                    b8,
 	noDisableDenormals:        b8,
-  noFixedSizedCallback:      b8,
+	noFixedSizedCallback:      b8,
 	masterVolumeFactor:        f32, /*atomic*/        /* Linear 0..1. Can be read and written simultaneously by different threads. Must be used atomically. */
 	duplexRB:                  duplex_rb,             /* Intermediary buffer for duplex device on asynchronous backends. */
 	resampling: struct {