summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFInput/macsrc/MappingCell.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-12 22:50:37 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-12 22:50:37 +0000
commitb83c8fe686c5374b38b31510f9803d3908d0c4f8 (patch)
treece9eb52a3e041128304bd79a2065c75029aca9a9 /macosx/plugins/DFInput/macsrc/MappingCell.m
parent98f9382fb8307e539091454392ca658648f722b8 (diff)
Changing Mac getters to be more Objective-C.
Getters in Objective-C are just named what they are getting, I.E. "getVariable" isn't valid, but "variable" is. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72232 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFInput/macsrc/MappingCell.m')
-rw-r--r--macosx/plugins/DFInput/macsrc/MappingCell.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/plugins/DFInput/macsrc/MappingCell.m b/macosx/plugins/DFInput/macsrc/MappingCell.m
index 48e5dfe5..50cbb56a 100644
--- a/macosx/plugins/DFInput/macsrc/MappingCell.m
+++ b/macosx/plugins/DFInput/macsrc/MappingCell.m
@@ -55,7 +55,7 @@
[NSApp runModalSession:session];
row = [tableView selectedRow];
if (row < DKEY_TOTAL) {
- changed = ReadDKeyEvent(whichPad, [ControllerList getButtonOfRow:row]);
+ changed = ReadDKeyEvent(whichPad, [ControllerList buttonOfRow:row]);
} else {
row -= DKEY_TOTAL;
changed = ReadAnalogEvent(whichPad, row / 4, row % 4);