make DEBUG=1 PROFILER=0 actually work (nw)

also removed FASTDEBUG hack made obsolete by this fix
This commit is contained in:
Oliver Stöneberg 2015-04-05 21:38:28 +02:00
parent 4113826c74
commit 3a40df147d
2 changed files with 1 additions and 5 deletions

View File

@ -404,7 +404,7 @@ configuration { "Debug" }
defines {
"MAME_DEBUG",
}
if _OPTIONS["PROFILER"] then
if _OPTIONS["PROFILER"]=="1" then
defines{
"MAME_PROFILER", -- define MAME_PROFILER if we are a profiling build
}

View File

@ -91,11 +91,7 @@ public:
// getters
bool enabled() const
{
#ifndef MAME_DEBUG_FAST
return m_filoptr != NULL;
#else
return false;
#endif
}
const char *text(running_machine &machine);