summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/unidasm.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-04-03 02:03:40 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2022-04-03 02:03:40 +1100
commit876d4f1a58c2b8c8a95fecbd4fdd4c2801e62465 (patch)
tree2676ed3d771ac207353208f399e1df1191d82aad /src/tools/unidasm.cpp
parent5172c6297e01a3e223ecef9d42e56c302e98cba8 (diff)
fixed a couple of reportedly uninitiated variables in the tools.
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r--src/tools/unidasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index 10dc53b06bf..e58e5ed22f2 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -679,7 +679,7 @@ class unidasm_data_buffer : public util::disasm_interface::data_buffer
{
public:
std::vector<u8> data;
- offs_t base_pc;
+ offs_t base_pc = 0;
u32 size;
unidasm_data_buffer(util::disasm_interface *disasm, const dasm_table_entry *entry);