Changeset 675

Show
Ignore:
Timestamp:
10/03/08 09:18:28 (3 months ago)
Author:
gbooker
Message:

Correct using pageUsageHash.

Now to figure out playback
Fixes #242

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/SapphireFrappliance/SapphireBrowser.m

    r671 r675  
    647647- (BOOL)brEventAction:(BREvent *)event 
    648648{ 
    649         BREventPageUsageHash hashVal = [event pageUsageHash]
     649        BREventPageUsageHash hashVal = (uint32_t)([event page] << 16 | [event usage])
    650650        if ([(BRControllerStack *)[self stack] peekController] != self) 
    651651                hashVal = 0; 
  • trunk/SapphireFrappliance/SapphireImporterDataMenu.m

    r525 r675  
    433433 
    434434- (BOOL)brEventAction:(BREvent *)event{ 
    435         BREventPageUsageHash hashVal = [event pageUsageHash]
     435        BREventPageUsageHash hashVal = (uint32_t)([event page] << 16 | [event usage])
    436436         
    437437        if([(BRControllerStack *)[self stack] peekController] != self || action == NULL)