瀏覽代碼

Fixed exit function declaration.

woollybah 8 年之前
父節點
當前提交
6b383adcde
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      audio.mod/audio.bmx

+ 2 - 2
audio.mod/audio.bmx

@@ -39,8 +39,8 @@ Function Driver:TAudioDriver()
 	Return _driver
 End Function
 
-Function Shutdown()
-	If Not _driver Return
+Function Shutdown:Int()
+	If Not _driver Return 0
 	_driver.Shutdown
 	_driver=Null
 End Function