No credit

- put a stub for osd_get_clipboard_text into sdlos_os2.c 
- removed a misleading statement form sdlos_unix.c
This commit is contained in:
Couriersud 2010-02-13 19:35:37 +00:00
parent 5c2e28e845
commit a7eb1c4097
2 changed files with 13 additions and 1 deletions

View File

@ -227,3 +227,16 @@ int osd_setenv(const char *name, const char *value, int overwrite)
{
return setenv(name, value, overwrite);
}
//============================================================
// osd_get_clipboard_text
// - used in MESS
//============================================================
char *osd_get_clipboard_text(void)
{
char *result = NULL;
return result;
}

View File

@ -228,7 +228,6 @@ char *osd_get_clipboard_text(void)
//============================================================
// MESS specific code below
// Disabled for MAME until it compiles
//============================================================
#ifdef MESS