瀏覽代碼

Change 0 to NULL for ao_open_live() and device

It's NULL in other places.
Anton Yabchinskiy 10 年之前
父節點
當前提交
4c8bfecc43
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      drivers/ao/audio_driver_ao.cpp

+ 2 - 2
drivers/ao/audio_driver_ao.cpp

@@ -51,8 +51,8 @@ Error AudioDriverAO::init() {
 	format.byte_format = AO_FMT_LITTLE;
 	format.matrix = "L,R";
 
-	device = ao_open_live(ao_default_driver_id(), &format, 0);
-	ERR_FAIL_COND_V(device == 0, ERR_CANT_OPEN);
+	device = ao_open_live(ao_default_driver_id(), &format, NULL);
+	ERR_FAIL_COND_V(device == NULL, ERR_CANT_OPEN);
 
 	int latency = GLOBAL_DEF("audio/output_latency", 25);
 	buffer_size = nearest_power_of_2( latency * mix_rate / 1000 );