This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (oneway void)didMovePSXJoystickDirection:(OEPSXButton)button withValue:(CGFloat)value forPlayer:(NSUInteger)player | |
{ | |
int analogNumber = PSXMap[button] - 17; | |
uint8_t *buf = (uint8_t *)inputBuffer[player-1]; | |
buf[3 + analogNumber] = 32767 * value; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15.08.13 00:29:00,939 GitHub[52482]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead. | |
15.08.13 00:29:00,941 GitHub[52482]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead. | |
15.08.13 00:29:03,783 GitHub[52482]: (v156) -[GHGitRepository GTRepository] [Line 505] Error Domain=GTGitErrorDomain Code=-3 "Failed to open repository." UserInfo=0x7fb684ca1740 {NSLocalizedDescription=Failed to open repository., NSLocalizedFailureReason=Failed to resolve path '/Users/danielnagel/Desktop/OpenEmu': No such file or directory}: file://localhost/Users/danielnagel/Desktop/OpenEmu | |
15.08.13 00:29:06,037 GitHub[52482]: Error updating date modified: (null) | |
15.08.13 00:31:59,934 GitHub[52482]: (v156) -[GHGitRepository GTRepository] [Line 505] Error Domain=GTGitErrorDomain Code=-3 "Failed to open rep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: OpenEmu [3995] | |
Path: /Users/USER/*/OpenEmu.app/Contents/MacOS/OpenEmu | |
Identifier: org.openemu.OpenEmu | |
Version: 1.0.0b9 | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [153] | |
User ID: 501 | |
Date/Time: 2013-01-12 20:27:30.959 +0100 | |
OS Version: Mac OS X 10.8.2 (12C60) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns noc.core | |
(:use quil.core)) | |
(defn setup [] | |
(background 255) | |
(no-loop)) | |
(defn draw [] | |
(load-pixels) | |
(doseq [x (range 0 (width)) |