Skip to content

Commit

Permalink
feat: increment cache version
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverlan committed Dec 12, 2024
1 parent dc446d8 commit e89a0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared/src/console/sh_convars.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ REGISTER_ENGINE_CONCOMMAND(
},
ConVarFlags::None, "Deletes all cache files.");
REGISTER_ENGINE_CONVAR(cache_version, udm::Type::String, "", ConVarFlags::Archive, "The engine version that the cache files are associated with. If this version doesn't match the current engine version, the cache will be cleared.");
REGISTER_ENGINE_CONVAR(cache_version_target, udm::Type::UInt32, "16", ConVarFlags::None, "If cache_version does not match this value, the cache files will be cleared and it will be set to it.");
REGISTER_ENGINE_CONVAR(cache_version_target, udm::Type::UInt32, "17", ConVarFlags::None, "If cache_version does not match this value, the cache files will be cleared and it will be set to it.");
REGISTER_ENGINE_CONVAR(debug_profiling_enabled, udm::Type::Boolean, "0", ConVarFlags::None, "Enables profiling timers.");
REGISTER_ENGINE_CONVAR(debug_disable_animation_updates, udm::Type::Boolean, "0", ConVarFlags::None, "Disables animation updates.");
REGISTER_ENGINE_CONVAR(sh_mount_external_game_resources, udm::Type::Boolean, "1", ConVarFlags::Archive, "If set to 1, the game will attempt to load missing resources from external games.");
Expand Down

0 comments on commit e89a0e9

Please sign in to comment.