[Scummvm-git-logs] scummvm master -> 402fb78aaf49177a9333b8ab9b7a826e56726dc0

dreammaster paulfgilbert at gmail.com
Tue Jan 1 09:16:35 CET 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
402fb78aaf GLK: Remove redundant const prefix from getOptions


Commit: 402fb78aaf49177a9333b8ab9b7a826e56726dc0
    https://github.com/scummvm/scummvm/commit/402fb78aaf49177a9333b8ab9b7a826e56726dc0
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-01-01T00:16:13-08:00

Commit Message:
GLK: Remove redundant const prefix from getOptions

Changed paths:
    engines/glk/glk.h


diff --git a/engines/glk/glk.h b/engines/glk/glk.h
index 91a6371..a2cc3e4 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





More information about the Scummvm-git-logs mailing list