Change data types to get a smaller memory footprint
git-svn-id: svn://svn.cc65.org/cc65/trunk@2595 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -48,8 +48,8 @@
|
|||||||
typedef struct FilePos FilePos;
|
typedef struct FilePos FilePos;
|
||||||
struct FilePos {
|
struct FilePos {
|
||||||
unsigned long Line; /* Line */
|
unsigned long Line; /* Line */
|
||||||
unsigned Col; /* Column */
|
unsigned short Col; /* Column */
|
||||||
unsigned Name; /* File */
|
unsigned short Name; /* File */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user