summaryrefslogtreecommitdiff
path: root/plugins/adplug/adplug/ksm.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/adplug/adplug/ksm.h')
-rw-r--r--plugins/adplug/adplug/ksm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/adplug/adplug/ksm.h b/plugins/adplug/adplug/ksm.h
index 98d643ea..85f19a31 100644
--- a/plugins/adplug/adplug/ksm.h
+++ b/plugins/adplug/adplug/ksm.h
@@ -32,17 +32,17 @@ public:
~CksmPlayer()
{ if(note) delete [] note; };
- bool load(const std::string &filename, const CFileProvider &fp);
+ bool load(const char *filename, const CFileProvider &fp);
bool update();
void rewind(int subsong);
float getrefresh()
{ return 240.0f; };
- std::string gettype()
- { return std::string("Ken Silverman's Music Format"); };
+ const char * gettype()
+ { return "Ken Silverman's Music Format"; };
unsigned int getinstruments()
{ return 16; };
- std::string getinstrument(unsigned int n);
+ const char * getinstrument(unsigned int n);
private:
static const unsigned int adlibfreq[63];