summaryrefslogtreecommitdiff
path: root/macosx/CheatController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/CheatController.m')
-rw-r--r--macosx/CheatController.m11
1 files changed, 6 insertions, 5 deletions
diff --git a/macosx/CheatController.m b/macosx/CheatController.m
index ebb0d4b9..70f8688b 100644
--- a/macosx/CheatController.m
+++ b/macosx/CheatController.m
@@ -13,8 +13,7 @@
- (id)init
{
- self = [self initWithWindowNibName:@"CheatWindow"];
- return self;
+ return self = [self initWithWindowNibName:@"CheatWindow"];
}
- (void)refresh
@@ -34,8 +33,7 @@
NSString *ident = [col identifier];
if ([ident isEqualToString:@"COL_NAME"]) {
return @(Cheats[idx].Descr);
- }
- if ([ident isEqualToString:@"COL_ENABLE"]) {
+ } else if ([ident isEqualToString:@"COL_ENABLE"]) {
return @(Cheats[idx].Enabled ? NSOnState : NSOffState);
}
NSLog(@"Unknown column identifier: %@", ident);
@@ -49,7 +47,10 @@
NSString *ident = [col identifier];
if ([ident isEqualToString:@"COL_ENABLE"]) {
Cheats[row].Enabled = [object integerValue] == NSOnState;
- }
+ } else if ([ident isEqualToString:@"COL_NAME"]) {
+ free(Cheats[row].Descr);
+ Cheats[row].Descr = strdup([object UTF8String]);
+ }
}
- (IBAction)LoadCheats:(id)sender