summaryrefslogtreecommitdiff
path: root/example/aao_example.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2023-07-18 01:47:26 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2023-07-18 01:47:26 +1200
commitbaac81253b3cc2e3addbbe6e90ec2a7abb5d56fd (patch)
tree88cb63624bcae8f944d670640094873a55610823 /example/aao_example.adb
parentc36d37880986f734a69086b28ac6f0e9df7babab (diff)
Code cleanup, slight API improvement
Diffstat (limited to 'example/aao_example.adb')
-rw-r--r--example/aao_example.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/example/aao_example.adb b/example/aao_example.adb
index fd32e38..6851f54 100644
--- a/example/aao_example.adb
+++ b/example/aao_example.adb
@@ -46,7 +46,7 @@ begin
-- Open driver
begin
- My_Device := Libao.Open_Live
+ My_Device.Open_Live
(Driver_ID => Default_Driver,
Format => My_Format,
Options => Libao.Empty_Options);
@@ -80,7 +80,7 @@ begin
Buffer (4 * I + 4) := Character'Val ((Sample / 256) and 16#FF#);
end loop;
- Libao.Play (My_Device, Buffer);
+ My_Device.Play (Buffer);
end;
@@ -89,7 +89,7 @@ begin
-- Technically the binding will take care of closing open devices at the
-- end of runtime, but it is always good practice to close them anyway.
- Libao.Close (My_Device);
+ My_Device.Close;
end AAO_Example;