Skip to content

Commit

Permalink
PostProcessing: Fix erroneous reload message
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jan 18, 2025
1 parent 1481c1d commit e41f179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/postprocessing.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class Chain
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(); }
Expand Down

0 comments on commit e41f179

Please # to comment.