just some fixes
parent
ecab9761d4
commit
0e4b070b5f
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <cstdarg>
|
||||
#include <cstdio>
|
||||
|
||||
#include <common/singleton.h>
|
||||
|
||||
|
|
|
@ -27,13 +27,13 @@
|
|||
PLUGIN_INTERFACE(ALSound, CSoundInterface)
|
||||
|
||||
|
||||
char* ALSound::pluginName()
|
||||
char* ALSound::PluginName()
|
||||
{
|
||||
return const_cast<char *>("Sound plugin using OpenAL library to play sounds.");
|
||||
}
|
||||
|
||||
|
||||
int ALSound::pluginVersion()
|
||||
int ALSound::PluginVersion()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
|
|
@ -74,9 +74,8 @@ class ALSound : public CSoundInterface
|
|||
bool IsPlayingMusic();
|
||||
|
||||
// plugin interface
|
||||
char* pluginName();
|
||||
int pluginVersion();
|
||||
void pluginInit();
|
||||
char* PluginName();
|
||||
int PluginVersion();
|
||||
|
||||
private:
|
||||
void CleanUp();
|
||||
|
|
Loading…
Reference in New Issue