summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/unidasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r--src/tools/unidasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index f69de2b0864..bf0d7c42959 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -494,7 +494,7 @@ usage:
int main(int argc, char *argv[])
{
- file_error filerr;
+ osd_file::error filerr;
int displayendian;
int displaychunk;
UINT32 curbyte;
@@ -513,7 +513,7 @@ int main(int argc, char *argv[])
// load the file
filerr = util::core_file::load(opts.filename, &data, length);
- if (filerr != FILERR_NONE)
+ if (filerr != osd_file::error::NONE)
{
fprintf(stderr, "Error opening file '%s'\n", opts.filename);
return 1;