Skip to content

Commit

Permalink
src/exdeath.cc: how did this ever compile
Browse files Browse the repository at this point in the history
  • Loading branch information
VulpineAmethyst committed Jul 1, 2023
1 parent 16ad9c2 commit df4cf21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/exdeath.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <QApplication>
#include <QTextStream>
#include <iostream>

#include "exdeath.hh"

Expand Down Expand Up @@ -282,7 +283,7 @@ void Exdeath::initConfig(void) {
}
// don't load config from old versions.
if (version.compare(cfgVersion) != 0) {
out << "doesn't match!\n";
std::cout << "doesn't match!\n";
return;
}
QString temp = _cfg->value("rom/filename", "").toString();
Expand Down

0 comments on commit df4cf21

Please sign in to comment.