From: ehofman Date: Tue, 3 Jan 2006 17:34:00 +0000 (+0000) Subject: Save some memory. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=258ec6b89a7e03f6ca8d4b6e2b1b87a4c67e2359;p=simgear.git Save some memory. --- diff --git a/simgear/bucket/newbucket.hxx b/simgear/bucket/newbucket.hxx index 134d0b93..b7ad1deb 100644 --- a/simgear/bucket/newbucket.hxx +++ b/simgear/bucket/newbucket.hxx @@ -115,10 +115,10 @@ class SGBucket { private: double cx, cy; // centerpoint (lon, lat) in degrees of bucket - int lon; // longitude index (-180 to 179) - int lat; // latitude index (-90 to 89) - int x; // x subdivision (0 to 7) - int y; // y subdivision (0 to 7) + short lon; // longitude index (-180 to 179) + short lat; // latitude index (-90 to 89) + char x; // x subdivision (0 to 7) + char y; // y subdivision (0 to 7) public: