aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/res_struct.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-08-17 20:30:20 -0700
committerPaul Gilbert2018-08-17 20:30:20 -0700
commit11e33ba3fc1b65789358485fa50cdbc0cf26aac7 (patch)
treeebb245cf6617e1ac0b35bf3681307bcbc541b230 /engines/lure/res_struct.h
parentc8d3af3874d7c814a9f1f03ad740c3e9f8386eaa (diff)
downloadscummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.tar.gz
scummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.tar.bz2
scummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.zip
JANITORIAL: Removing trailing spaces after int casts
Diffstat (limited to 'engines/lure/res_struct.h')
-rw-r--r--engines/lure/res_struct.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/res_struct.h b/engines/lure/res_struct.h
index a8a5e5aca8..bf22a4a5ac 100644
--- a/engines/lure/res_struct.h
+++ b/engines/lure/res_struct.h
@@ -861,8 +861,8 @@ public:
const char *getString(int index) {
return _entries[index].c_str();
}
- const char *getString(Action action) { return getString((int) action - 1); }
- const char *getString(StringEnum sEnum) { return getString((int) sEnum); }
+ const char *getString(Action action) { return getString((int)action - 1); }
+ const char *getString(StringEnum sEnum) { return getString((int)sEnum); }
void setString(Action action, const Common::String &s) { _entries[(int)action - 1] = s; }
};