Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 491 → Rev 492

/trunk/telegraphics_common/tt/dbg_win.c
22,7 → 22,7
 
void dbg(TCHAR *s){
#ifdef DEBUG
MessageBox(NULL,s,TEXT("plugin debug"),0);
MessageBox(NULL,s,TEXT("plugin debug"),0); // TODO (Not so important): TRANSLATE
#else
UNREFERENCED_PARAMETER(s);
#endif
/trunk/telegraphics_common/tt/ui_compat_win.c
86,7 → 86,7
 
return true;
}else
dbg((TCHAR*)TEXT("CreateDIBSection FAILED"));
dbg((TCHAR*)TEXT("CreateDIBSection FAILED")); // TODO (Not so important): TRANSLATE
}
return false;
}