X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain.h;h=9484a5c6a90c9f4eb9f12dab53007840e732a057;hb=0a37fd0ca34e2ff68d0f8caa958a926e947fd6d3;hp=0ed5442c24d24f33728a0b7b4cb8b4e31f44ef37;hpb=942ec4881e3b21c130df9ae105d06c2c633fa192;p=rocksndiamonds.git diff --git a/src/main.h b/src/main.h index 0ed5442c..9484a5c6 100644 --- a/src/main.h +++ b/src/main.h @@ -1089,7 +1089,7 @@ #define PROGRAM_VERSION_MAJOR 3 #define PROGRAM_VERSION_MINOR 0 #define PROGRAM_VERSION_PATCH 8 -#define PROGRAM_VERSION_BUILD 0 +#define PROGRAM_VERSION_BUILD 3 #define PROGRAM_TITLE_STRING "Rocks'n'Diamonds" #define PROGRAM_AUTHOR_STRING "Holger Schemel" @@ -1217,6 +1217,7 @@ struct PlayerInfo int anim_delay_counter; int post_delay_counter; + int action_waiting, last_action_waiting; int special_action_bored; int special_action_sleeping; @@ -1545,7 +1546,12 @@ struct MusicPrefixInfo struct MusicFileInfo { - char *context; + char *basename; + + char *title_header; + char *artist_header; + char *album_header; + char *year_header; char *title; char *artist; @@ -1554,6 +1560,8 @@ struct MusicFileInfo int music; + boolean is_sound; + struct MusicFileInfo *next; };