Fix warning in x64CPUDetect.cpp in generic build by not building it.

This commit is contained in:
comex
2014-09-22 21:02:21 -04:00
parent 9cdd842080
commit fb3d9c9d58
3 changed files with 19 additions and 10 deletions

View File

@ -0,0 +1,14 @@
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CPUDetect.h"
CPUInfo cpu_info;
CPUInfo::CPUInfo() {}
std::string CPUInfo::Summarize()
{
return "Generic";
}