Skip to content

Commit

Permalink
Very minor pokes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddTheSane committed Jan 13, 2024
1 parent 925e552 commit 14885d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Boxer/Application Delegate/BXBaseAppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ - (void) closeAllDocumentsWithDelegate: (id)delegate

[super closeAllDocumentsWithDelegate: self
didCloseAllSelector: @selector(documentController:didCloseAll:contextInfo:)
contextInfo: CFBridgingRetain(closeHandler)];
contextInfo: (void *)CFBridgingRetain(closeHandler)];
}

- (void) documentController: (NSDocumentController *)docController
Expand Down
2 changes: 1 addition & 1 deletion Boxer/BXEmulatedJoystick.mm
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ - (void) buttonPressed: (BXEmulatedJoystickButton)button forDuration: (NSTimeInt
{
[self buttonDown: button];
[self performSelector: @selector(releaseButton:)
withObject: [NSNumber numberWithUnsignedInteger: button]
withObject: @(button)
afterDelay: duration];
}

Expand Down

0 comments on commit 14885d7

Please sign in to comment.