summaryrefslogtreecommitdiff
path: root/deimos/core/format.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deimos/core/format.cpp')
-rw-r--r--deimos/core/format.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/deimos/core/format.cpp b/deimos/core/format.cpp
index af0a851..5f420e9 100644
--- a/deimos/core/format.cpp
+++ b/deimos/core/format.cpp
@@ -51,6 +51,9 @@ public:
case FormatArg::kUnsignedInteger:
PushUnsignedInteger(arg.integer);
break;
+ case FormatArg::kCustom:
+ arg.custom.callback(m_writer, arg.custom.payload);
+ break;
}
}
};