diff --git a/rpcs3/rpcs3/Emu/system_config.h b/rpcs3/rpcs3/Emu/system_config.h index 7035fff5d..bebbd1df1 100644 --- a/rpcs3/rpcs3/Emu/system_config.h +++ b/rpcs3/rpcs3/Emu/system_config.h @@ -193,7 +193,11 @@ struct cfg_root : cfg::node cfg::uint<0, 100> rcas_sharpening_intensity{ this, "FidelityFX CAS Sharpening Intensity", 50, true }; cfg::_enum asynchronous_scheduler{ this, "Asynchronous Queue Scheduler", vk_gpu_scheduler_mode::safe }; cfg::uint<256, 65536> vram_allocation_limit{ this, "VRAM allocation limit (MB)", 65536, false }; - +#ifdef ANDROID + cfg::string custom_driver_path{ this, "Custom Driver Path", "", false }; + cfg::string custom_driver_internal_data_dir{ this, "Custom Driver Internal Data Directory", "", false }; + cfg::string custom_driver_hook_dir{ this, "Custom Driver Hook Directory", "", false }; +#endif } vk{ this }; struct node_perf_overlay : cfg::node