mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 19:54:03 +00:00
WINTERMUTE: Make AdScaleLevel::getScale() const.
This commit is contained in:
parent
ae4380b88f
commit
7ff74312a0
@ -48,7 +48,7 @@ AdScaleLevel::~AdScaleLevel() {
|
||||
|
||||
}
|
||||
|
||||
float AdScaleLevel::getScale() {
|
||||
float AdScaleLevel::getScale() const {
|
||||
return _scale;
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@ public:
|
||||
virtual bool saveAsText(BaseDynamicBuffer *buffer, int indent);
|
||||
bool loadFile(const char *filename);
|
||||
bool loadBuffer(byte *buffer, bool complete = true);
|
||||
float getScale();
|
||||
float getScale() const;
|
||||
private:
|
||||
float _scale;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user