This commit is contained in:
lawrencelomax 2016-01-28 12:17:05 +00:00
Родитель 1b15eb9400
Коммит ff66faa889
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -125,7 +125,7 @@
- (NSUInteger)hash
{
return self.scaleString.hash ^ self.locale.hash | self.options;
return self.scaleString.hash ^ self.locale.hash ^ self.options;
}
#pragma mark FBDebugDescribeable

Просмотреть файл

@ -33,8 +33,8 @@
typedef NS_ENUM(NSInteger, FBSimulatorFramebufferState) {
FBSimulatorFramebufferStateNotStarted = 0, /** Before the framebuffer is 'listening'. */
FBSimulatorFramebufferStateStarting = 1, /** After the framebuffer has started, but before the first frame. */
FBSimulatorFramebufferStateRunning = 3, /** After the framebuffer has started, but before the first frame. */
FBSimulatorFramebufferStateTerminated = 4, /** After the framebuffer has terminated. */
FBSimulatorFramebufferStateRunning = 2, /** After the framebuffer has started, but before the first frame. */
FBSimulatorFramebufferStateTerminated = 3, /** After the framebuffer has terminated. */
};
static const NSInteger FBFramebufferLogFrameFrequency = 100;