mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 03:59:00 +00:00
Fix return type
This commit is contained in:
parent
786e101acf
commit
319bf9d8d2
2 changed files with 3 additions and 3 deletions
|
@ -409,13 +409,13 @@ cAudioManager::CheckForAnAudioFileOnCD() const
|
|||
return SampleManager.CheckForAnAudioFileOnCD();
|
||||
}
|
||||
|
||||
uint8
|
||||
char
|
||||
cAudioManager::GetCDAudioDriveLetter() const
|
||||
{
|
||||
if (m_bIsInitialised)
|
||||
return SampleManager.GetCDAudioDriveLetter();
|
||||
|
||||
return 0;
|
||||
return '\0';
|
||||
}
|
||||
|
||||
bool8
|
||||
|
|
|
@ -338,7 +338,7 @@ public:
|
|||
|
||||
void GenerateIntegerRandomNumberTable();
|
||||
char *Get3DProviderName(uint8 id) const;
|
||||
uint8 GetCDAudioDriveLetter() const;
|
||||
char GetCDAudioDriveLetter() const;
|
||||
int8 GetCurrent3DProviderIndex() const;
|
||||
float GetCollisionLoopingRatio(uint32 a, uint32 b, float c) const; // not used
|
||||
float GetCollisionOneShotRatio(int32 a, float b) const;
|
||||
|
|
Loading…
Reference in a new issue