summaryrefslogtreecommitdiff
path: root/macosx/PcsxrHexadecimalFormatter.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-08-17 20:12:12 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-08-17 20:12:12 +0000
commit5be0778eaa7d48dfb71f4619e2e6b73b9095ad62 (patch)
treec5f270d8777bd621c737ef3b0d195e1c89808677 /macosx/PcsxrHexadecimalFormatter.h
parent37ba81a540460a7d34a33c23d2353ac84f887576 (diff)
downloadpcsxr-5be0778eaa7d48dfb71f4619e2e6b73b9095ad62.tar.gz
Finish work on OS X's cheat management.
There is still a bug that changing the label/name of the cheat doesn't set the changed bit. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@86707 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrHexadecimalFormatter.h')
-rw-r--r--macosx/PcsxrHexadecimalFormatter.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/macosx/PcsxrHexadecimalFormatter.h b/macosx/PcsxrHexadecimalFormatter.h
new file mode 100644
index 00000000..ef9c1601
--- /dev/null
+++ b/macosx/PcsxrHexadecimalFormatter.h
@@ -0,0 +1,18 @@
+//
+// PcsxrHexadecimalFormatter.h
+// Pcsxr
+//
+// Created by C.W. Betts on 8/17/13.
+//
+//
+
+#import <Foundation/Foundation.h>
+
+@interface PcsxrHexadecimalFormatter : NSFormatter
+{
+ char hexPadding;
+ NSString *hexFormatString;
+}
+@property (nonatomic) char hexPadding;
+
+@end