Fixed argument for C# method Debug::Log

This commit is contained in:
Kernell 2015-12-27 19:43:44 +03:00
parent f395553923
commit 4e97948b8d

View File

@ -19,7 +19,7 @@ namespace MultiTheftAuto
[MethodImpl( MethodImplOptions.InternalCall )] [MethodImpl( MethodImplOptions.InternalCall )]
private static extern void Error( string message ); private static extern void Error( string message );
public static void Log( string message, params string[] args ) public static void Log( string message, params object[] args )
{ {
Log( String.Format( message, args ) ); Log( String.Format( message, args ) );
} }