fix prototype of getgfxoffset

This commit is contained in:
rofl0r 2014-03-23 03:16:58 +01:00
parent 9d9df72c2a
commit 91d3bff670
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ extern int isvsync_chipset (void);
extern int isvsync_rtg (void);
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp)
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp)
{
*dxp = 0;
*dyp = 0;

View File

@ -10,7 +10,7 @@
* Copyright 2010-2013 Mustafa TUFAN
*/
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp);
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp);
int isfullscreen (void);
void fetch_configurationpath (TCHAR *out, int size);
TCHAR* buf_out (TCHAR *buffer, int *bufsize, const TCHAR *format, ...);