Some more message cleanups.
This commit is contained in:
parent
ddf825660e
commit
8c2f4b18fa
|
@ -215,7 +215,7 @@ BOOL OSS_MidiInit(void)
|
|||
midiOutDevices[i] = tmplpCaps;
|
||||
|
||||
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",
|
||||
|
|
|
@ -124,6 +124,7 @@ WINE REGISTRY Version 2
|
|||
; Use a desktop window of 640x480 for Wine
|
||||
;"Desktop" = "640x480"
|
||||
; Use XFree86 DGA extension if present
|
||||
; (make sure /dev/mem is accessible by you !)
|
||||
"UseDGA" = "Y"
|
||||
; Use XShm extension if present
|
||||
"UseXShm" = "Y"
|
||||
|
|
|
@ -370,7 +370,7 @@ BOOL WINAPI CreateDirectoryA( LPCSTR path,
|
|||
}
|
||||
if (!DOSFS_GetFullName( path, FALSE, &full_name )) return 0;
|
||||
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
|
||||
* CreateDirectory ones for some errnos */
|
||||
switch (errno) {
|
||||
|
|
|
@ -909,7 +909,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
|
|||
if (!ismatch) {
|
||||
FIXME(
|
||||
"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"
|
||||
"to us for inclusion into future Wine releases.\n"
|
||||
"See documentation/keyboard for more information.\n",
|
||||
|
|
Loading…
Reference in New Issue