dolphin/Source/Core/Core/PowerPC/Profiler.cpp
degasus 7e79806efc remove unused globals
Also change globals into statics which are only used in one file
2014-07-11 16:10:20 +02:00

19 lines
370 B
C++

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