Browse Source
[veil] fix flush log option not being available (#341)
Signed-off-by: lizzie <lizzie@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/341
Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
pull/321/head
lizzie
4 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
2 additions and
2 deletions
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/BooleanSetting.kt
-
src/common/settings.h
|
|
|
@ -66,7 +66,7 @@ enum class BooleanSetting(override val key: String) : AbstractBooleanSetting { |
|
|
|
SHOW_POWER_INFO("show_power_info"), |
|
|
|
SHOW_SHADERS_BUILDING("show_shaders_building"), |
|
|
|
|
|
|
|
DEBUG_FLUSH_BY_LINE("flush_lines"), |
|
|
|
DEBUG_FLUSH_BY_LINE("flush_line"), |
|
|
|
USE_LRU_CACHE("use_lru_cache"); |
|
|
|
|
|
|
|
external fun isRaiiEnabled(): Boolean |
|
|
|
|
|
|
|
@ -756,7 +756,7 @@ struct Values { |
|
|
|
|
|
|
|
// Miscellaneous |
|
|
|
Setting<std::string> log_filter{linkage, "*:Info", "log_filter", Category::Miscellaneous}; |
|
|
|
Setting<bool> log_flush_lines{linkage, false, "flush_lines", Category::Miscellaneous, Specialization::Default, true, true}; |
|
|
|
Setting<bool> log_flush_lines{linkage, false, "flush_line", Category::Miscellaneous, Specialization::Default, true, true}; |
|
|
|
Setting<bool> censor_username{linkage, true, "censor_username", Category::Miscellaneous}; |
|
|
|
Setting<bool> use_dev_keys{linkage, false, "use_dev_keys", Category::Miscellaneous}; |
|
|
|
Setting<bool> first_launch{linkage, true, "first_launch", Category::Miscellaneous}; |
|
|
|
|