some fixes for Pandora

This commit is contained in:
ptitSeb 2014-05-27 22:00:17 +02:00
parent 607b9c41a0
commit 99389db89c
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ void rend_start_render()
void rend_end_render()
{
#if 1 //also disabled the printf, it takes quite some time ...
#if HOST_OS!=OS_WINDOWS && !defined(_ANDROID)
#if HOST_OS!=OS_WINDOWS && !(defined(_ANDROID) || defined(TARGET_PANDORA))
if (!re.state) printf("Render > Extended time slice ...\n");
#endif
#endif

View File

@ -131,7 +131,7 @@ void plugins_Reset(bool Manual)
void* webui_th(void* p)
{
#if HOST_OS == OS_WINDOWS || HOST_OS == OS_LINUX
#if (HOST_OS == OS_WINDOWS || HOST_OS == OS_LINUX) && !defined(TARGET_PANDORA)
webui_start();
#endif