diff --git a/desmume/ChangeLog b/desmume/ChangeLog index bcdc05cf3..ffe104018 100644 --- a/desmume/ChangeLog +++ b/desmume/ChangeLog @@ -8,6 +8,9 @@ Graphics: bug: fix thumb ROR [zeromus] bug: win32: fix spu wav file writer (regression from 0.8) [zeromus] enh: dont memcmp for texcache validity when the texture banks arent unmapping [zeromus] + +Mac OS X Port: + bug: left key setting no longer gets confused with the right key [jeff] 0.8 -> 0.9 There have been so many changes that this list can hardly be considered complete. diff --git a/desmume/src/cocoa/input.m b/desmume/src/cocoa/input.m index 03f343c7e..461032d4e 100644 --- a/desmume/src/cocoa/input.m +++ b/desmume/src/cocoa/input.m @@ -120,7 +120,7 @@ inline int testKey(NSString *chars_pressed, NSString *chars_for_key) [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyR:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_R, [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyUp:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_UP, [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyDown:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_DOWN, - [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyLeft:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_RIGHT, + [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyLeft:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_LEFT, [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyRight:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_RIGHT, [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeyStart:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_START, [NSArray arrayWithObjects:@"Dictionary", [NSData dataWithBytes:&@selector(bindingForKeySelect:) length:sizeof(SEL)], keyboardMap , nil] , PREF_KEY_SELECT,