Commit 8c2f4b18 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Some more message cleanups.

parent ddf82566
...@@ -215,7 +215,7 @@ BOOL OSS_MidiInit(void) ...@@ -215,7 +215,7 @@ BOOL OSS_MidiInit(void)
midiOutDevices[i] = tmplpCaps; midiOutDevices[i] = tmplpCaps;
if (sinfo.capabilities & SYNTH_CAP_INPUT) { if (sinfo.capabilities & SYNTH_CAP_INPUT) {
FIXME("Synthetizer support MIDI in. Not supported yet (please report)\n"); FIXME("Synthesizer support MIDI in. Not supported yet (please report)\n");
} }
TRACE("name='%s', techn=%d voices=%d notes=%d support=%ld\n", TRACE("name='%s', techn=%d voices=%d notes=%d support=%ld\n",
......
...@@ -124,6 +124,7 @@ WINE REGISTRY Version 2 ...@@ -124,6 +124,7 @@ WINE REGISTRY Version 2
; Use a desktop window of 640x480 for Wine ; Use a desktop window of 640x480 for Wine
;"Desktop" = "640x480" ;"Desktop" = "640x480"
; Use XFree86 DGA extension if present ; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "Y" "UseDGA" = "Y"
; Use XShm extension if present ; Use XShm extension if present
"UseXShm" = "Y" "UseXShm" = "Y"
......
...@@ -370,7 +370,7 @@ BOOL WINAPI CreateDirectoryA( LPCSTR path, ...@@ -370,7 +370,7 @@ BOOL WINAPI CreateDirectoryA( LPCSTR path,
} }
if (!DOSFS_GetFullName( path, FALSE, &full_name )) return 0; if (!DOSFS_GetFullName( path, FALSE, &full_name )) return 0;
if (mkdir( full_name.long_name, 0777 ) == -1) { if (mkdir( full_name.long_name, 0777 ) == -1) {
WARN_(file)("Errno %i trying to create directory '%s'\n", errno, full_name.long_name); WARN_(file)("Error '%s' trying to create directory '%s'\n", strerror(errno), full_name.long_name);
/* the FILE_SetDosError() generated error codes don't match the /* the FILE_SetDosError() generated error codes don't match the
* CreateDirectory ones for some errnos */ * CreateDirectory ones for some errnos */
switch (errno) { switch (errno) {
......
...@@ -909,7 +909,7 @@ X11DRV_KEYBOARD_DetectLayout (void) ...@@ -909,7 +909,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
if (!ismatch) { if (!ismatch) {
FIXME( FIXME(
"Your keyboard layout was not found!\n" "Your keyboard layout was not found!\n"
"Instead of using closest match (%s) for scancode mapping.\n" "Using closest match instead (%s) for scancode mapping.\n"
"Please define your layout in windows/x11drv/keyboard.c and submit them\n" "Please define your layout in windows/x11drv/keyboard.c and submit them\n"
"to us for inclusion into future Wine releases.\n" "to us for inclusion into future Wine releases.\n"
"See documentation/keyboard for more information.\n", "See documentation/keyboard for more information.\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment