summaryrefslogtreecommitdiff
path: root/src/deck_io.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2021-11-07 16:22:28 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2021-11-07 16:22:28 +1300
commit876d3c9c05563993438c6c58ddeff1ad97c3106b (patch)
tree2da595988014324d822ceef3d8ed92e2810aaceb /src/deck_io.adb
parentaf4ee4a230f1124a4c10761740aa41404d21d4a8 (diff)
Improved error message handling
Diffstat (limited to 'src/deck_io.adb')
-rw-r--r--src/deck_io.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deck_io.adb b/src/deck_io.adb
index 2e2d1b4..9884cdc 100644
--- a/src/deck_io.adb
+++ b/src/deck_io.adb
@@ -473,7 +473,7 @@ package body Deck_IO is
end if;
end if;
if FD.Exists (-Outdir) and not Overwrite then
- raise FD.Name_Error with "output directory " & (-Outdir) & " already exists";
+ raise FD.Name_Error with "media directory " & (-Outdir) & " already exists";
end if;
TIO.Create (File_Handle, TIO.Out_File, -Outname);
Entry_Size := Positive (Model_Maps.Element (C).Fields.Length);