Change setup_result's visibility to protected

This commit is contained in:
angie 2024-06-03 16:03:04 -04:00
parent b76d2871a5
commit b5af730a05

View file

@ -51,7 +51,7 @@ namespace ultramodern {
virtual float get_resolution_scale() const = 0; virtual float get_resolution_scale() const = 0;
virtual void load_shader_cache(std::span<const char> cache_binary) = 0; virtual void load_shader_cache(std::span<const char> cache_binary) = 0;
private: protected:
SetupResult setup_result; SetupResult setup_result;
}; };