diff options
| author | Jared Adams | 2012-05-07 19:30:33 -0600 |
|---|---|---|
| committer | Jared Adams | 2012-05-07 19:30:33 -0600 |
| commit | 5bd90e28b865de4ac4d766546e82b8f547b9ffeb (patch) | |
| tree | 7da97be704a6d13a8142acf3fb3806be9cfa8404 /plugins/tiletypes.cpp | |
| parent | 833bf518d973473d8abf8533e58b069610ddeb9c (diff) | |
| download | dfhack-5bd90e28b865de4ac4d766546e82b8f547b9ffeb.tar.gz dfhack-5bd90e28b865de4ac4d766546e82b8f547b9ffeb.tar.bz2 dfhack-5bd90e28b865de4ac4d766546e82b8f547b9ffeb.tar.xz | |
Add a missing return in tiletypes
Diffstat (limited to 'plugins/tiletypes.cpp')
| -rw-r--r-- | plugins/tiletypes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/tiletypes.cpp b/plugins/tiletypes.cpp index 59bdc7b3..2cd1770b 100644 --- a/plugins/tiletypes.cpp +++ b/plugins/tiletypes.cpp @@ -781,6 +781,7 @@ command_result executePaintJob(color_ostream &out) if (map.WriteAll()) { out.print("OK\n"); + return CR_OK; } else { |
