Skip to content

Commit 94a3647

Browse files
committed
clean up
1 parent 3618b5a commit 94a3647

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/computerAPI/directoryManager.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ std::filesystem::path DirectoryManager::configDirectory("");
99

1010
void DirectoryManager::findDirectories() {
1111
logInfo("Finding directories", "DirectoryManager");
12-
// only logic for finding resource directory right now, other will be set later somehow
13-
1412
// check for resources directory relative to executable
1513
std::filesystem::path relativeToExecutable = getExecutablePath().parent_path() / "resources";
1614
if (std::filesystem::exists(relativeToExecutable)) {

src/gpu/renderer/viewport/blockTextureManager.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ BlockTextureId BlockTextureManager::addTexture(const std::string& path) {
4343
rectId = layerRectPackers[layer].tryAddRect({textureWidth, textureHeight});
4444
if (rectId) {
4545
pos = layerRectPackers[layer].getRect(rectId).first;
46-
logInfo("Found locForTexture {}, layer: {}", "", pos, layer);
4746
break;
4847
}
4948
}
@@ -108,7 +107,6 @@ BlockTextureId BlockTextureManager::addTexture(const stbi_uc* pixels, int textur
108107
rectId = layerRectPackers[layer].tryAddRect({textureWidth, textureHeight});
109108
if (rectId) {
110109
pos = layerRectPackers[layer].getRect(rectId).first;
111-
logInfo("Found locForTexture {}, layer: {}", "", pos, layer);
112110
break;
113111
}
114112
}

src/gpu/renderer/viewport/logic/chunking/vulkanChunker.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,6 @@ void VulkanChunker::setEvaluator(Evaluator* evaluator, const Address& address) {
406406
this->address = address;
407407
this->evaluator = evaluator;
408408
if (evaluator) {
409-
logInfo("setEvaluator > connectListener");
410409
evaluator->connectListener(this, address, std::bind(&VulkanChunker::updateSimulatorIds, this, std::placeholders::_1));
411410
}
412411
for (auto& pair : chunks) {

0 commit comments

Comments
 (0)