From 258ec6b89a7e03f6ca8d4b6e2b1b87a4c67e2359 Mon Sep 17 00:00:00 2001 From: ehofman Date: Tue, 3 Jan 2006 17:34:00 +0000 Subject: [PATCH] Save some memory. --- simgear/bucket/newbucket.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: -- 2.39.5