Exemplo n.º 1
0
std::string LoadMCM(const char* path, bool load) {

	std::string mc2;
	mc2 = noExtension(std::string(path));
	mc2 += ".mc2";
	mcmdump(path, mc2);
	if(load)
		FCEUI_LoadMovie(mc2.c_str(), 1, 0, 0);

	return mc2;
}
Exemplo n.º 2
0
std::string LoadMCM(const char* path, bool load) {

	std::string mc2;
	mc2 = noExtension(std::string(path));
	mc2 += ".mc2";
	mcmdump(path, mc2);
	if(load)
	{
		LoadMovie(mc2.c_str(), 1, 0, 0);
		RecentMovies.UpdateRecentItems(mc2);
	}

	return mc2;
}