mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Core: Fix potentially uninitialized variable warnings
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user