Replace region with full system

This commit is contained in:
Ilari Liusvaara 2013-01-09 12:13:23 +02:00
parent ae0ecbada0
commit a7fa16556f

View file

@ -1,4 +1,5 @@
#include "core/moviedata.hpp"
#include "core/memorymanip.hpp"
#include "interface/cover.hpp"
#include "library/minmax.hpp"
#include "library/utf8.hpp"
@ -127,6 +128,6 @@ void cover_next_position(const std::string& str, unsigned& x, unsigned& y)
std::vector<std::string> cover_information()
{
std::vector<std::string> ret;
ret.push_back("Region: " + our_rom->region->get_hname());
ret.push_back("System: " + our_rom->rtype->get_hname() + " (" + our_rom->region->get_hname() + ")");
return ret;
}
}