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