diff options
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_ui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/client/cl_ui.c b/code/client/cl_ui.c index e460b60..e6aae53 100644 --- a/code/client/cl_ui.c +++ b/code/client/cl_ui.c @@ -618,10 +618,10 @@ static void CL_GetGlconfig( glconfig_t *config ) { /* ==================== -GetClipboardData +CL_GetClipboardData ==================== */ -static void GetClipboardData( char *buf, int buflen ) { +static void CL_GetClipboardData( char *buf, int buflen ) { char *cbd; cbd = Sys_GetClipboardData(); @@ -934,7 +934,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) { return 0; case UI_GETCLIPBOARDDATA: - GetClipboardData( VMA(1), args[2] ); + CL_GetClipboardData( VMA(1), args[2] ); return 0; case UI_GETCLIENTSTATE: |