Merge branch 'master' of github.com:FacialTurd/The-Powder-Toy

This commit is contained in:
Simon Robertshaw 2012-05-03 21:53:16 +01:00
commit 429f106ebf
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#define SAVE_VERSION 78
#define MINOR_VERSION 0
#define BETA
#define BUILD_NUM 161
#define BUILD_NUM 162
//VersionInfoEnd
#define IDENT_VERSION "G" //Change this if you're not Simon! It should be a single letter

View File

@ -606,6 +606,7 @@ void clipboard_push_text(char * text)
char * clipboard_pull_text()
{
#ifdef MACOSX
printf("Not implemented: get text from clipboard\n");
#elif defined WIN32
if (OpenClipboard(NULL))
{
@ -623,10 +624,11 @@ char * clipboard_pull_text()
}
}
#elif (defined(LIN32) || defined(LIN64)) && defined(SDL_VIDEO_DRIVER_X11)
printf("Not implemented: get text from clipboard\n");
#else
printf("Not implemented: get text from clipboard\n");
return "";
#endif
return "";
}
int register_extension()