comparison src/xs_length.c @ 951:ad97fd1524be

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 20 Nov 2012 21:21:15 +0200
parents f8e1de328ac1
children 3c2efa18c422
comparison
equal deleted inserted replaced
950:0c909510e33d 951:ad97fd1524be
344 /* Compute md5hash of given SID-file 344 /* Compute md5hash of given SID-file
345 */ 345 */
346 typedef struct 346 typedef struct
347 { 347 {
348 gchar magicID[4]; /* "PSID" / "RSID" magic identifier */ 348 gchar magicID[4]; /* "PSID" / "RSID" magic identifier */
349 guint16 version, /* Version number */ 349 guint16 version, /* Version number */
350 dataOffset, /* Start of actual c64 data in file */ 350 dataOffset, /* Start of actual c64 data in file */
351 loadAddress, /* Loading address */ 351 loadAddress, /* Loading address */
352 initAddress, /* Initialization address */ 352 initAddress, /* Initialization address */
353 playAddress, /* Play one frame */ 353 playAddress, /* Play one frame */
354 nSongs, /* Number of subsongs */ 354 nSongs, /* Number of subsongs */
355 startSong; /* Default starting song */ 355 startSong; /* Default starting song */
356 guint32 speed; /* Speed */ 356 guint32 speed; /* Speed */
357 gchar sidName[32]; /* Descriptive text-fields, ASCIIZ */ 357 gchar sidName[32]; /* Descriptive text-fields, ASCIIZ */
358 gchar sidAuthor[32]; 358 gchar sidAuthor[32];
359 gchar sidCopyright[32]; 359 gchar sidCopyright[32];
360 } psidv1_header_t; 360 } psidv1_header_t;
361 361
362 362