summaryrefslogtreecommitdiffstats
path: root/src/object/robotmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/robotmain.cpp')
-rw-r--r--src/object/robotmain.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/object/robotmain.cpp b/src/object/robotmain.cpp
index b58e5f8..ddee0ff 100644
--- a/src/object/robotmain.cpp
+++ b/src/object/robotmain.cpp
@@ -7520,3 +7520,12 @@ void CRobotMain::RestoreNumericLocale()
setlocale(LC_NUMERIC, m_oldLocale.c_str());
}
+void CRobotMain::DisplayError(Error err, CObject* pObj, float time)
+{
+ m_displayText->DisplayError(err, pObj, time);
+}
+
+void CRobotMain::DisplayError(Error err, Math::Vector goal, float height, float dist, float time)
+{
+ m_displayText->DisplayError(err, goal, height, dist, time);
+}