diff --git a/includes/defines.h b/includes/defines.h index da0887db7..55246b35b 100644 --- a/includes/defines.h +++ b/includes/defines.h @@ -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 diff --git a/src/misc.c b/src/misc.c index af52254d6..fbd5b3977 100644 --- a/src/misc.c +++ b/src/misc.c @@ -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()