mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-03-04 23:30:56 +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;
|
char *cbd;
|
||||||
|
|
||||||
cbd = Sys_GetClipboardData();
|
cbd = Sys_GetClipboardData();
|
||||||
|
@ -934,7 +934,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) {
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case UI_GETCLIPBOARDDATA:
|
case UI_GETCLIPBOARDDATA:
|
||||||
GetClipboardData( VMA(1), args[2] );
|
CL_GetClipboardData( VMA(1), args[2] );
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case UI_GETCLIENTSTATE:
|
case UI_GETCLIENTSTATE:
|
||||||
|
|
Loading…
Reference in a new issue