Remove left over print

This commit is contained in:
2024-01-25 04:42:58 -05:00
parent 8b5b5cb082
commit b9f64bc49c

View File

@@ -105,8 +105,6 @@ namespace fgl::engine
assert( !is_frame_started && "Cannot begin frame while frame is already in progress" );
auto [ result, image_idx ] = m_swapchain->acquireNextImage();
current_image_idx = image_idx;
std::cout << "Acquired next image at index: " << current_image_idx << " for frame " << current_frame_idx
<< std::endl;
if ( result == vk::Result::eErrorOutOfDateKHR )
{