diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-30 13:30:48 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-30 13:30:48 +0000 |
commit | eb4b851381453c1f60ccb56e966ca4e7b8e80b97 (patch) | |
tree | 776159306d55037eb49f3c8adf65dc7e0a584f70 /game/geoData.h | |
parent | Update rails render for being atop a surface (diff) | |
download | ilt-eb4b851381453c1f60ccb56e966ca4e7b8e80b97.tar.bz2 ilt-eb4b851381453c1f60ccb56e966ca4e7b8e80b97.tar.xz ilt-eb4b851381453c1f60ccb56e966ca4e7b8e80b97.zip |
Fix naming style of getSurface
Diffstat (limited to 'game/geoData.h')
-rw-r--r-- | game/geoData.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/geoData.h b/game/geoData.h index 92b9b75..b3ef22a 100644 --- a/game/geoData.h +++ b/game/geoData.h @@ -94,9 +94,9 @@ public: template<typename HandleT> [[nodiscard]] auto - get_surface(const HandleT h) + getSurface(const HandleT handle) const { - return property(surface, h); + return property(surface, handle); } void sanityCheck() const; |