CPU/CodeCache: Hopefully fix 32-bit compile errors
This commit is contained in:
parent
b6f871d2b9
commit
2885d2e547
|
@ -1,5 +1,6 @@
|
||||||
#include "cpu_code_cache.h"
|
#include "cpu_code_cache.h"
|
||||||
#include "bus.h"
|
#include "bus.h"
|
||||||
|
#include "common/assert.h"
|
||||||
#include "common/log.h"
|
#include "common/log.h"
|
||||||
#include "cpu_core.h"
|
#include "cpu_core.h"
|
||||||
#include "cpu_disasm.h"
|
#include "cpu_disasm.h"
|
||||||
|
@ -72,7 +73,9 @@ void Initialize(bool use_recompiler)
|
||||||
void Shutdown()
|
void Shutdown()
|
||||||
{
|
{
|
||||||
Flush();
|
Flush();
|
||||||
|
#ifdef WITH_RECOMPILER
|
||||||
s_code_buffer.Destroy();
|
s_code_buffer.Destroy();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void Execute()
|
void Execute()
|
||||||
|
|
Loading…
Reference in New Issue