From 99a562812dea54ea54d16e1b044ea68dcedd05e3 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Thu, 30 Jul 2020 18:41:38 +0200 Subject: [PATCH] Fixed issue where initial exception in the C Interface kept being blank. --- CInterface/Core.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/CInterface/Core.cpp b/CInterface/Core.cpp index b1a8224..75f7a32 100644 --- a/CInterface/Core.cpp +++ b/CInterface/Core.cpp @@ -1,4 +1,3 @@ #include "Core.hpp" -std::string ExceptionHandler::_creatureLibLastException = ""; export const char* CreatureLib_C_GetLastException() { return ExceptionHandler::GetLastException(); }