diff options
| author | Paul Gilbert | 2019-01-01 00:16:13 -0800 |
|---|---|---|
| committer | Paul Gilbert | 2019-01-01 00:16:13 -0800 |
| commit | 402fb78aaf49177a9333b8ab9b7a826e56726dc0 (patch) | |
| tree | 6f0ac54e93f87d1a6bb6ebc9c59ae532906bcbb6 | |
| parent | ea53893300a02a37a2775bb1ffd4c585b7c27157 (diff) | |
| download | scummvm-rg350-402fb78aaf49177a9333b8ab9b7a826e56726dc0.tar.gz scummvm-rg350-402fb78aaf49177a9333b8ab9b7a826e56726dc0.tar.bz2 scummvm-rg350-402fb78aaf49177a9333b8ab9b7a826e56726dc0.zip | |
GLK: Remove redundant const prefix from getOptions
| -rw-r--r-- | engines/glk/glk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glk.h b/engines/glk/glk.h index 91a6371e98..a2cc3e4981 100644 --- a/engines/glk/glk.h +++ b/engines/glk/glk.h @@ -167,7 +167,7 @@ public: /** * Returns any options returned with the game's detection entry */ - const uint getOptions() const { return _gameDescription._options; } + uint getOptions() const { return _gameDescription._options; } /** * Return the game engine's target name |
