Skip to content

Commit

Permalink
Fix logged message
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Jan 10, 2024
1 parent cbe5fe8 commit d024ba9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class RenderPipeline implements AutoCloseable {
true
)
.toggleWith(inputEventStream, GLFW_KEY_U) { renderPass ->
logger.debug("Scanlines ${renderPass.enabled ? 'enabled' : 'disabled'}")
logger.debug("Sharp upscaling ${renderPass.enabled ? 'enabled' : 'disabled'}")
}

// Scanline post-processing pass
Expand All @@ -154,7 +154,7 @@ class RenderPipeline implements AutoCloseable {
config.scanlines
)
.toggleWith(inputEventStream, GLFW_KEY_S) { renderPass ->
logger.debug("Sharp upscaling ${renderPass.enabled ? 'enabled' : 'disabled'}")
logger.debug("Scanlines ${renderPass.enabled ? 'enabled' : 'disabled'}")
}

// Final pass to emit the result to the screen
Expand Down

0 comments on commit d024ba9

Please sign in to comment.