Skip to content

Commit

Permalink
Fix for system plugin update
Browse files Browse the repository at this point in the history
  • Loading branch information
clobber committed Dec 23, 2015
1 parent 4f1af5e commit b108adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BlissGameCore.mm
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ - (void)setIntellivisionKey:(int)key isDown:(BOOL)down isShifted:(BOOL)shifted
//DLog(@"_keyboardDownCount == %i", _keyboardDownCount);
}

- (void)keyDown:(unsigned short)keyCode
- (oneway void)keyDown:(unsigned short)keyCode
{
int key = [self intellivisionKeyForKeyCode:keyCode];

Expand All @@ -966,7 +966,7 @@ - (void)keyDown:(unsigned short)keyCode
}
}

- (void)keyUp:(unsigned short)keyCode
- (oneway void)keyUp:(unsigned short)keyCode
{
int key = [self intellivisionKeyForKeyCode:keyCode];

Expand Down

0 comments on commit b108adf

Please sign in to comment.