Minor change in file.h

This commit is contained in:
David Capello 2015-02-02 09:09:36 -03:00
parent 480dd2f28c
commit beb02a3aa4
1 changed files with 5 additions and 5 deletions

View File

@ -85,11 +85,11 @@ namespace app {
double progress; // Progress (1.0 is ready).
IFileOpProgress* progressInterface;
std::string error; // Error string.
bool done : 1; // True if the operation finished.
bool stop : 1; // Force the break of the operation.
bool oneframe : 1; // Load just one frame (in formats
// that support animation like
// GIF/FLI/ASE).
bool done; // True if the operation finished.
bool stop; // Force the break of the operation.
bool oneframe; // Load just one frame (in formats
// that support animation like
// GIF/FLI/ASE).
// Data for sequences.
struct {