diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-29 17:03:06 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-29 17:03:06 +0000 |
commit | 7f36eacc6f98f07d9a5eacc1eb3fd2d78668534a (patch) | |
tree | 79cdc44a7343dbf48ffdb3716bf6cdda27e180a7 /src | |
parent | 0c747c320b563bd6c9489d1cfd1a9b24a0d94d78 (diff) | |
download | xine-lib-7f36eacc6f98f07d9a5eacc1eb3fd2d78668534a.tar.gz xine-lib-7f36eacc6f98f07d9a5eacc1eb3fd2d78668534a.tar.bz2 |
Reorder fields to remove a 4+4 bytes holes.
CVS patchset: 8761
CVS date: 2007/03/29 17:03:06
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_nsf.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c index f5c42238f..7408274d5 100644 --- a/src/demuxers/demux_nsf.c +++ b/src/demuxers/demux_nsf.c @@ -30,7 +30,7 @@ * For more information regarding the NSF format, visit: * http://www.tripoint.org/kevtris/nes/nsfspec.txt * - * $Id: demux_nsf.c,v 1.23 2007/01/19 00:26:40 dgp85 Exp $ + * $Id: demux_nsf.c,v 1.24 2007/03/29 17:03:06 dgp85 Exp $ */ #ifdef HAVE_CONFIG_H @@ -71,12 +71,14 @@ typedef struct { input_plugin_t *input; int status; - char *title; - char *artist; - char *copyright; int total_songs; int current_song; int new_song; /* indicates song change */ + + char *title; + char *artist; + char *copyright; + off_t filesize; int64_t current_pts; |