mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-11 13:11:47 +00:00
Removed some more undefined types in Linux
This commit is contained in:
parent
38da0fb308
commit
40d0623479
2 changed files with 4 additions and 4 deletions
|
@ -239,7 +239,7 @@ extern void D_RunFrame( bool );
|
||||||
extern void I_ShutdownSound();
|
extern void I_ShutdownSound();
|
||||||
extern void I_ShutdownMusic();
|
extern void I_ShutdownMusic();
|
||||||
extern void I_ShutdownGraphics();
|
extern void I_ShutdownGraphics();
|
||||||
extern void I_ProcessSoundEvents( void );
|
//extern void I_ProcessSoundEvents( void );
|
||||||
|
|
||||||
|
|
||||||
void DoomLib::InitGlobals( void *ptr /* = NULL */ )
|
void DoomLib::InitGlobals( void *ptr /* = NULL */ )
|
||||||
|
@ -551,6 +551,6 @@ void DoomLib::SendNetwork() {
|
||||||
|
|
||||||
void DoomLib::RunSound() {
|
void DoomLib::RunSound() {
|
||||||
|
|
||||||
I_ProcessSoundEvents();
|
//I_ProcessSoundEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -105,7 +105,7 @@ M_DrawText
|
||||||
//
|
//
|
||||||
// M_WriteFile
|
// M_WriteFile
|
||||||
//
|
//
|
||||||
boolean M_WriteFile ( char const* name, void* source, int length ) {
|
bool M_WriteFile ( char const* name, void* source, int length ) {
|
||||||
|
|
||||||
idFile * handle = NULL;
|
idFile * handle = NULL;
|
||||||
int count;
|
int count;
|
||||||
|
@ -157,7 +157,7 @@ int M_ReadFile ( char const* name, byte** buffer ) {
|
||||||
//
|
//
|
||||||
// Write a save game to the specified device using the specified game name.
|
// Write a save game to the specified device using the specified game name.
|
||||||
//
|
//
|
||||||
static qboolean SaveGame( void* source, DWORD length )
|
static qboolean SaveGame( void* source, int length )
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue