mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 04:12:39 +00:00
* renamed static function GetClipboardData to CL_GetClipboardData since it was causing compile errors in newer mingw
This commit is contained in:
parent
9f42be5d6c
commit
bc4591b03e
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue