mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-30 14:14:43 +00:00
Bugfix for getting correct quote information
svn-id: r48377
This commit is contained in:
parent
e0f92f61eb
commit
d34fd9cdd6
@ -253,7 +253,7 @@ public:
|
||||
|
||||
void loadQuotes();
|
||||
uint32 getQuotesSize() { return _madsQuotes.size(); }
|
||||
const char *getQuote(uint32 index) { return _madsQuotes[index]; }
|
||||
const char *getQuote(uint32 index) { return _madsQuotes[index - 1]; }
|
||||
// DEPRECATED: ScummVM re-implementation keeps all the quotes loaded, so the methods below are stubs
|
||||
void clearQuotes() {};
|
||||
void loadQuoteRange(int startNum, int endNum) {};
|
||||
|
Loading…
Reference in New Issue
Block a user