diff options
author | 2024-06-21 07:16:45 +1000 | |
---|---|---|
committer | 2024-06-21 07:16:45 +1000 | |
commit | 80d04627a63b4cc5b29ef6ba2388983b6b292a45 (patch) | |
tree | a9b3f0d3a433deb2745d04c2cc64a359378df260 /src/lib/util/corefile.cpp | |
parent | 10dcaa96748840049b5b5af925f6da18eb1fc364 (diff) |
-util/corefile.cpp: Fixed core_file failing to propagate write errors.
-util/ioprocs.cpp: Reverted gross hack.
-osd/windows: Ensure WM_MOUSE* to WM_POINTER* event translation is always disabled.
-tecmo/gaiden.cpp: Call base device_post_load(), use logmacro.h.
Diffstat (limited to 'src/lib/util/corefile.cpp')
-rw-r--r-- | src/lib/util/corefile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corefile.cpp b/src/lib/util/corefile.cpp index 0c6bfc3cee9..74a742b0306 100644 --- a/src/lib/util/corefile.cpp +++ b/src/lib/util/corefile.cpp @@ -793,7 +793,7 @@ std::error_condition core_osd_file::write_some_at(std::uint64_t offset, void con actual = bytes_written; set_size((std::max)(size(), offset)); } - return std::error_condition(); + return err; } |