mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 01:08:25 +00:00
WINTERMUTE: Use only const BaseGame-ref in SaveThumbHelper.
This commit is contained in:
parent
411b7128ab
commit
7f4b95b3f8
@ -35,7 +35,7 @@
|
||||
namespace Wintermute {
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
SaveThumbHelper::SaveThumbHelper(BaseGame *inGame) {
|
||||
SaveThumbHelper::SaveThumbHelper(const BaseGame *inGame) {
|
||||
_thumbnail = nullptr;
|
||||
_scummVMThumb = nullptr;
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ class BaseGame;
|
||||
|
||||
class SaveThumbHelper {
|
||||
public:
|
||||
SaveThumbHelper(BaseGame *inGame);
|
||||
SaveThumbHelper(const BaseGame *inGame);
|
||||
virtual ~SaveThumbHelper(void);
|
||||
bool storeThumbnail(bool doFlip = false);
|
||||
bool storeScummVMThumbNail(bool doFlip = false);
|
||||
|
Loading…
Reference in New Issue
Block a user