diff --git a/projects/voxelization/src/main.cpp b/projects/voxelization/src/main.cpp
index 0270dd917ecc98a6a777d6f636a4a64e4885a978..edc50c554b6c73bd2f06914eba6dd7adf9e43483 100644
--- a/projects/voxelization/src/main.cpp
+++ b/projects/voxelization/src/main.cpp
@@ -550,14 +550,6 @@ int main(int argc, const char** argv) {
 		if (!core.beginFrame(swapchainWidth, swapchainHeight)) {
 			continue;
 		}
-		
-		if ((swapchainWidth < 2) || (swapchainHeight < 2)) {
-			std::cerr << "A" << std::endl;
-		}
-		
-		if ((windowWidth < 2) || (windowHeight < 2)) {
-			std::cerr << "B" << std::endl;
-		}
 
 		if ((swapchainWidth != windowWidth) || ((swapchainHeight != windowHeight))) {
 			depthBuffer         = core.createImage(depthBufferFormat, swapchainWidth, swapchainHeight, 1, false, false, false, msaa).getHandle();
@@ -575,14 +567,6 @@ int main(int argc, const char** argv) {
 
 			bloomFlares.updateImageDimensions(windowWidth, windowHeight);
 		}
-		
-		if ((swapchainWidth < 2) || (swapchainHeight < 2)) {
-			std::cerr << "C" << std::endl;
-		}
-		
-		if ((windowWidth < 2) || (windowHeight < 2)) {
-			std::cerr << "D" << std::endl;
-		}
 
 		auto end = std::chrono::system_clock::now();
 		auto deltatime = std::chrono::duration_cast<std::chrono::microseconds>(end - start);