aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelupus <elupus@xbmc.org>2011-10-31 19:34:25 +0100
committerelupus <elupus@xbmc.org>2011-10-31 19:34:25 +0100
commit4ca3bd78d32dc853c7131e5f86f37af5509bdbbd (patch)
tree2ab82079dcf021393183c097badbac18113424db
parentfe5eff11e689ec935b2a8368a6ee9bb86da09118 (diff)
changed: drop old xbox remnant
-rw-r--r--xbmc/xbmc.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/xbmc/xbmc.cpp b/xbmc/xbmc.cpp
index df09677dbc..b6d3baccff 100644
--- a/xbmc/xbmc.cpp
+++ b/xbmc/xbmc.cpp
@@ -100,22 +100,3 @@ int main(int argc, char* argv[])
return status;
}
-
-extern "C"
-{
- void mp_msg( int x, int lev, const char *format, ... )
- {
- va_list va;
- static char tmp[2048];
- va_start(va, format);
-#ifndef _LINUX
- _vsnprintf(tmp, 2048, format, va);
-#else
- vsnprintf(tmp, 2048, format, va);
-#endif
- va_end(va);
- tmp[2048 - 1] = 0;
-
- OutputDebugString(tmp);
- }
-}