diff --git a/Standard Gaming Platform/video.cpp b/Standard Gaming Platform/video.cpp index f06c83be..e166e6ff 100644 --- a/Standard Gaming Platform/video.cpp +++ b/Standard Gaming Platform/video.cpp @@ -2963,7 +2963,12 @@ HRESULT ReturnCode; return(TRUE); } -// template void FatalError(char *, ...); + +//Kaiden - Added for VC6 Compatibility +#if _MSC_VER <= 1200 + template void FatalError(char *, ...); +#endif + template void FatalError(char const *, ...); template void FatalError( string1 pError, ...)