Fix issue 462: Save/Load path problems: Main, Spare and Brush now have completely distinct fileselector settings.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@2003 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2012-09-22 16:47:39 +00:00
parent 5a2e556f18
commit 80fc7da7f6
9 changed files with 172 additions and 224 deletions

View File

@@ -540,4 +540,13 @@ typedef struct
byte Flipped; ///< 0:no, 1:horizontally, 2:vertically, 3:both
} T_Tile;
/// Settings for an entire file selector screen
typedef struct T_Selector_settings
{
byte Format_filter; ///< 0 for "*.*", or a value of enum ::FILE_FORMATS
short Position; ///< Index of the first file/entry to display in list
short Offset; ///< Position of the "highlight" bar in the file list
char Directory[256]; ///< Directory currently browsed
} T_Selector_settings;
#endif