From 23701248f358d94336a7bc14bed040d48c54e226 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 22 Jul 2017 16:28:29 +0300 Subject: [PATCH] Set LLVM recompiler as default --- rpcs3/Emu/System.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.h b/rpcs3/Emu/System.h index d951b534b5..1e5c692034 100644 --- a/rpcs3/Emu/System.h +++ b/rpcs3/Emu/System.h @@ -261,7 +261,7 @@ struct cfg_root : cfg::node { node_core(cfg::node* _this) : cfg::node(_this, "Core") {} - cfg::_enum ppu_decoder{this, "PPU Decoder", ppu_decoder_type::fast}; + cfg::_enum ppu_decoder{this, "PPU Decoder", ppu_decoder_type::llvm}; cfg::_int<1, 16> ppu_threads{this, "PPU Threads", 2}; // Amount of PPU threads running simultaneously (must be 2) cfg::_bool ppu_debug{this, "PPU Debug"}; cfg::_bool llvm_logs{this, "Save LLVM logs"};