mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-27 08:10:13 -06:00

Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
20 lines
363 B
C++
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
|