fix: remove leftover stderr

I should sleep
This commit is contained in:
PancakeTAS 2025-12-25 05:17:22 +01:00
parent 991056abc1
commit 1975f2f64f
No known key found for this signature in database

View file

@ -6,7 +6,6 @@
#include <array>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <optional>
#include <string>
#include <unistd.h>
@ -103,8 +102,6 @@ std::optional<std::pair<IdentType, GameConf>> ls::findProfile(
const ConfigFile& config, const Identification& id) {
const auto& profiles = config.profiles();
std::cerr << "wine exec: " << (id.wine_executable.has_value() ? id.wine_executable.value() : "none") << "\n";
// check for the environment option first
if (std::getenv("LSFGVK_ENV") != nullptr)
return std::make_pair(IdentType::OVERRIDE, profiles.front());