Fixed some more missing \n in traces.
This commit is contained in:
parent
bbee7ec711
commit
6a5ba8fba2
|
@ -517,7 +517,7 @@ static void execute(LPDIRECT3DEXECUTEBUFFER lpBuff,
|
|||
/* This is where doing Direct3D on top on OpenGL is quite difficult.
|
||||
This method transforms a set of vertices using the CURRENT state
|
||||
(lighting, projection, ...) but does not rasterize them.
|
||||
They will oinly be put on screen later (with the POINT / LINE and
|
||||
They will only be put on screen later (with the POINT / LINE and
|
||||
TRIANGLE op-codes). The problem is that you can have a triangle
|
||||
with each point having been transformed using another state...
|
||||
|
||||
|
|
|
@ -615,7 +615,7 @@ DIB_DirectDrawSurface_BltFast(LPDIRECTDRAWSURFACE7 iface, DWORD dstx,
|
|||
FIXME("(%p)->(%ld,%ld,%p,%p,%08lx)\n",
|
||||
This,dstx,dsty,src,rsrc,trans
|
||||
);
|
||||
FIXME(" trans:");
|
||||
FIXME("\ttrans:");
|
||||
if (FIXME_ON(ddraw))
|
||||
DDRAW_dump_DDBLTFAST(trans);
|
||||
if (rsrc)
|
||||
|
|
|
@ -4464,7 +4464,7 @@ HRESULT WINAPI VariantTimeToSystemTime( double vtime, LPSYSTEMTIME lpSystemTime
|
|||
|
||||
struct tm r;
|
||||
|
||||
TRACE(" Variant = %f SYSTEMTIME ptr %p", vtime, lpSystemTime);
|
||||
TRACE(" Variant = %f SYSTEMTIME ptr %p\n", vtime, lpSystemTime);
|
||||
|
||||
if (vtime >= 0)
|
||||
{
|
||||
|
|
|
@ -771,7 +771,7 @@ DWORD WINAPI SHRegSetPathA(HKEY hKey, LPCSTR lpszSubKey, LPCSTR lpszValue,
|
|||
{
|
||||
char szBuff[MAX_PATH];
|
||||
|
||||
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub",hKey, debugstr_a(lpszSubKey),
|
||||
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub\n",hKey, debugstr_a(lpszSubKey),
|
||||
debugstr_a(lpszValue), lpszPath, dwFlags);
|
||||
|
||||
lstrcpyA(szBuff, lpszPath);
|
||||
|
@ -792,7 +792,7 @@ DWORD WINAPI SHRegSetPathW(HKEY hKey, LPCWSTR lpszSubKey, LPCWSTR lpszValue,
|
|||
{
|
||||
WCHAR szBuff[MAX_PATH];
|
||||
|
||||
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub",hKey, debugstr_w(lpszSubKey),
|
||||
FIXME("(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub\n",hKey, debugstr_w(lpszSubKey),
|
||||
debugstr_w(lpszValue), lpszPath, dwFlags);
|
||||
|
||||
lstrcpyW(szBuff, lpszPath);
|
||||
|
@ -999,7 +999,7 @@ LONG WINAPI SHQueryInfoKeyW(HKEY hKey, LPDWORD pwSubKeys, LPDWORD pwSubKeyMax,
|
|||
|
||||
if (!pcbData && pData != pvData)
|
||||
{
|
||||
WARN("Invalid pcbData would crash under Win32!");
|
||||
WARN("Invalid pcbData would crash under Win32!\n");
|
||||
return ERROR_OUTOFMEMORY;
|
||||
}
|
||||
|
||||
|
@ -1370,7 +1370,7 @@ DWORD WINAPI SHDeleteOrphanKeyA(HKEY hKey, LPCSTR lpszSubKey)
|
|||
HKEY hSubKey;
|
||||
DWORD dwKeyCount = 0, dwValueCount = 0, dwRet;
|
||||
|
||||
TRACE("(hkey=0x%08x,%s)", hKey, debugstr_a(lpszSubKey));
|
||||
TRACE("(hkey=0x%08x,%s)\n", hKey, debugstr_a(lpszSubKey));
|
||||
|
||||
dwRet = RegOpenKeyExA(hKey, lpszSubKey, 0, KEY_READ, &hSubKey);
|
||||
|
||||
|
@ -1399,7 +1399,7 @@ DWORD WINAPI SHDeleteOrphanKeyW(HKEY hKey, LPCWSTR lpszSubKey)
|
|||
HKEY hSubKey;
|
||||
DWORD dwKeyCount = 0, dwValueCount = 0, dwRet;
|
||||
|
||||
TRACE("(hkey=0x%08x,%s)", hKey, debugstr_w(lpszSubKey));
|
||||
TRACE("(hkey=0x%08x,%s)\n", hKey, debugstr_w(lpszSubKey));
|
||||
|
||||
dwRet = RegOpenKeyExW(hKey, lpszSubKey, 0, KEY_READ, &hSubKey);
|
||||
|
||||
|
|
|
@ -644,7 +644,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
|
|||
j = strlen(lfd->pixel_size);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "pixel_size\n");
|
||||
WARN(ridiculous, fullname, "pixel_size");
|
||||
return FALSE;
|
||||
}
|
||||
if( !(fi->lfd_height = atoi(lfd->pixel_size)) )
|
||||
|
@ -653,7 +653,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
|
|||
j = strlen(lfd->point_size);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "point_size\n");
|
||||
WARN(ridiculous, fullname, "point_size");
|
||||
return FALSE;
|
||||
}
|
||||
if( !(atoi(lfd->point_size)) )
|
||||
|
@ -662,7 +662,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
|
|||
j = strlen(lfd->resolution_x);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "resolution_x\n");
|
||||
WARN(ridiculous, fullname, "resolution_x");
|
||||
return FALSE;
|
||||
}
|
||||
if( !(fi->lfd_resolution = atoi(lfd->resolution_x)) )
|
||||
|
@ -671,7 +671,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
|
|||
j = strlen(lfd->resolution_y);
|
||||
if( j == 0 || j > 3 )
|
||||
{
|
||||
WARN(ridiculous, fullname, "resolution_y\n");
|
||||
WARN(ridiculous, fullname, "resolution_y");
|
||||
return FALSE;
|
||||
}
|
||||
if( !(atoi(lfd->resolution_y)) )
|
||||
|
|
|
@ -307,7 +307,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName);
|
|||
.c:
|
||||
BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
|
||||
{
|
||||
TRACE("stub");
|
||||
TRACE("stub\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -379,7 +379,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
|
|||
{
|
||||
BOOL (__stdcall *pFunc)(LPCSTR) = (void*)GetProcAddress(hDLL,"_OpenZipFile");
|
||||
BOOL retVal;
|
||||
TRACE("((LPCSTR)%s) stub", pszFileName);
|
||||
TRACE("((LPCSTR)%s) stub\n", pszFileName);
|
||||
retVal = pFunc(pszFileName);
|
||||
TRACE("returned (%ld)\n",(LONG)retVal));
|
||||
return retVal;
|
||||
|
|
Loading…
Reference in New Issue