aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-28 17:09:27 +0200
committerEugene Sandulenko2016-05-28 17:09:50 +0200
commit4bb793a72d3ae620ce9a620255cc61c6b07c3b92 (patch)
tree57fc5d2a6aea97649964491d1e8cd734647a73a4
parentc8019487f92b44b685ccc066c81fcaf0c30715d2 (diff)
downloadscummvm-rg350-4bb793a72d3ae620ce9a620255cc61c6b07c3b92.tar.gz
scummvm-rg350-4bb793a72d3ae620ce9a620255cc61c6b07c3b92.tar.bz2
scummvm-rg350-4bb793a72d3ae620ce9a620255cc61c6b07c3b92.zip
SCI: Fix warning
-rw-r--r--engines/sci/graphics/screen_item32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/screen_item32.h b/engines/sci/graphics/screen_item32.h
index cda98c8281..91f54b48e9 100644
--- a/engines/sci/graphics/screen_item32.h
+++ b/engines/sci/graphics/screen_item32.h
@@ -273,7 +273,7 @@ public:
typedef StablePointerArray<ScreenItem, 250> ScreenItemListBase;
class ScreenItemList : public ScreenItemListBase {
- static bool inline sortHelper(const ScreenItem *a, const ScreenItem *b) {
+ inline static bool sortHelper(const ScreenItem *a, const ScreenItem *b) {
return *a < *b;
}
public: