Core: Fix potentially uninitialized variable warnings

This commit is contained in:
Lioncash
2014-10-28 08:50:25 -04:00
parent 42d41a456e
commit 30f97723db
4 changed files with 7 additions and 11 deletions

View File

@ -11,7 +11,7 @@
namespace JitInterface
{
enum
enum class ExceptionType
{
EXCEPTIONS_FIFO_WRITE
};
@ -39,7 +39,7 @@ namespace JitInterface
// If "forced" is true, a recompile is being requested on code that hasn't been modified.
void InvalidateICache(u32 address, u32 size, bool forced);
void CompileExceptionCheck(int type);
void CompileExceptionCheck(ExceptionType type);
void Shutdown();
}