Fix a small oversight
This commit is contained in:
@@ -420,13 +420,13 @@ BOOL InitInput()
|
|||||||
{
|
{
|
||||||
#ifdef __LINUX__ // AH
|
#ifdef __LINUX__ // AH
|
||||||
InitJoystickInput();
|
InitJoystickInput();
|
||||||
InputAcquire();
|
//InputAcquire();
|
||||||
#endif // __LINUX__
|
#endif // __LINUX__
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int SurfaceLocking;
|
int SurfaceLocking = 0;
|
||||||
|
|
||||||
void TestJoy()
|
void TestJoy()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -230,7 +230,7 @@ DWORD ZFileTell()
|
|||||||
{
|
{
|
||||||
int res = 0;
|
int res = 0;
|
||||||
if (TextFile) {
|
if (TextFile) {
|
||||||
res = gztell(FILEHANDLE[ZFileTellHandle]);
|
res = ftell(FILEHANDLE[ZFileTellHandle]);
|
||||||
if (res == -1) fprintf(stderr, "Oups!! gzTell\n");
|
if (res == -1) fprintf(stderr, "Oups!! gzTell\n");
|
||||||
return(res);
|
return(res);
|
||||||
} else return gztell(FILEHANDLE[ZFileTellHandle]);
|
} else return gztell(FILEHANDLE[ZFileTellHandle]);
|
||||||
|
|||||||
Reference in New Issue
Block a user