summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-06-22 00:45:39 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-06-22 00:45:39 -0400
commiteba52c5be3a90ded14136d573630d77961b179e1 (patch)
treec1527c0fd41f18da77a8e39ca797c267098fda9f
parentf6ce64cd627e2bdcd7b5efaf51f3a8fb3bc91abc (diff)
Fix clang build [-Werror,-Wunused-function] (nw)
-rw-r--r--src/mame/drivers/zaurus.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mame/drivers/zaurus.cpp b/src/mame/drivers/zaurus.cpp
index 2fd6931be8c..c2ee8419df9 100644
--- a/src/mame/drivers/zaurus.cpp
+++ b/src/mame/drivers/zaurus.cpp
@@ -1448,22 +1448,6 @@ protected:
virtual void video_start() override;
};
-#define VERBOSE_LEVEL ( 5 )
-
-static inline void ATTR_PRINTF(3,4) verboselog( device_t& device, int n_level, const char* s_fmt, ... )
-{
- if( VERBOSE_LEVEL >= n_level )
- {
- va_list v;
- char buf[32768];
- va_start( v, s_fmt );
- vsprintf( buf, s_fmt, v );
- va_end( v );
- device.logerror( "%s: %s", device.machine().describe_context(), buf );
- //printf( "%s: %s", device.machine().describe_context().c_str(), buf );
- }
-}
-
void zaurus_state::video_start()
{