this shouldn't have even compiled ...

This commit is contained in:
Glenn Maynard
2002-12-22 03:19:46 +00:00
parent 999d6c354b
commit 34ae33b9f9
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -32,7 +32,7 @@ const char* RageException::what() const throw ()
return m_sError;
}
RageException::Throw(const char *fmt, ...)
void RageException::Throw(const char *fmt, ...)
{
va_list va;
va_start(va, fmt);
@@ -50,10 +50,10 @@ RageException::Throw(const char *fmt, ...)
DebugBreak();
#endif
throw RageException("%s", error);
throw RageException("%s", error.GetString());
}
RageException::ThrowNonfatal(const char *fmt, ...)
void RageException::ThrowNonfatal(const char *fmt, ...)
{
va_list va;
va_start(va, fmt);