CPU/CodeCache: Hopefully fix 32-bit compile errors

This commit is contained in:
Connor McLaughlin 2020-08-01 03:53:53 +10:00
parent b6f871d2b9
commit 2885d2e547
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include "cpu_code_cache.h"
#include "bus.h"
#include "common/assert.h"
#include "common/log.h"
#include "cpu_core.h"
#include "cpu_disasm.h"
@ -72,7 +73,9 @@ void Initialize(bool use_recompiler)
void Shutdown()
{
Flush();
#ifdef WITH_RECOMPILER
s_code_buffer.Destroy();
#endif
}
void Execute()