Files
dolphin/Source/Core/Core/PowerPC/Profiler.cpp
Lioncash a82675b7d5 Kill off some usages of c_str.
Also changes some function params, but this is ok.
Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
2014-03-14 13:51:23 -04:00

20 lines
363 B
C++

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <string>
#include "Core/PowerPC/JitInterface.h"
namespace Profiler
{
bool g_ProfileBlocks;
bool g_ProfileInstructions;
void WriteProfileResults(const std::string& filename)
{
JitInterface::WriteProfileResults(filename);
}
} // namespace