From 653db9e2662796f6116c409edc88156bf2e87369 Mon Sep 17 00:00:00 2001 From: Koncord Date: Fri, 30 Jun 2017 17:59:50 +0800 Subject: [PATCH] [Server] Simplify native CallPublic & CreateTimerEx --- apps/openmw-mp/Script/ScriptFunction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw-mp/Script/ScriptFunction.cpp b/apps/openmw-mp/Script/ScriptFunction.cpp index b0925ce22..4847ec840 100644 --- a/apps/openmw-mp/Script/ScriptFunction.cpp +++ b/apps/openmw-mp/Script/ScriptFunction.cpp @@ -6,7 +6,7 @@ #include #include "ScriptFunction.hpp" -#ifndef _WIN32 // temporally disabled +#ifndef _WIN32 // temporarily disabled #include #endif @@ -155,7 +155,7 @@ boost::any ScriptFunction::Call(const vector &args) throw runtime_error("C++ call: Unknown argument identifier " + *it); } } -#ifndef _WIN32 // temporally disabled +#ifndef _WIN32 // temporarily disabled Func f = reinterpret_cast(fCpp); result = ::Call(f, callArgs); #else