PostProcessing: Fix erroneous reload message

This commit is contained in:
Stenzek 2025-01-18 17:28:53 +10:00
parent 1481c1d231
commit e41f179108
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public:
Chain(const char* section);
~Chain();
ALWAYS_INLINE bool HasStages() const { return m_stages.empty(); }
ALWAYS_INLINE bool HasStages() const { return !m_stages.empty(); }
ALWAYS_INLINE bool NeedsDepthBuffer() const { return m_needs_depth_buffer; }
ALWAYS_INLINE GPUTexture* GetInputTexture() const { return m_input_texture.get(); }
ALWAYS_INLINE GPUTexture* GetOutputTexture() const { return m_output_texture.get(); }