]> git.sur5r.net Git - cc65/commitdiff
Change data types to get a smaller memory footprint
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 31 Oct 2003 21:59:21 +0000 (21:59 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 31 Oct 2003 21:59:21 +0000 (21:59 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2595 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/filepos.h

index 7ccde3751c726073fc4afbb4bedf58fc925dbc21..dd41472f88b36a76c347192b42593658634ad09a 100644 (file)
 
 /* Type of a file position */
 typedef struct FilePos FilePos;
-struct FilePos {     
+struct FilePos {
     unsigned long   Line;              /* Line */
-    unsigned       Col;                /* Column */
-    unsigned       Name;               /* File */
+    unsigned short  Col;               /* Column */
+    unsigned short  Name;              /* File */
 };