Cocoa Port: If OpenGL is the Video Output Engine, then drop the revision number from the engine name in the troubleshooting forms.
- The only OpenGL version with a revision number is v1.2.1, but the Cocoa port will always use v2.0 or higher. So let's remove the revision number to make things look cleaner. - Also change the tags "DESMUME RUNTIME INFORMATION" to "DESMUME TROUBLESHOOTING INFORMATION", which is more explanatory when the information is copy/pasted into whatever text field it appears in.
This commit is contained in:
parent
1490a19ad1
commit
e8de3db99c
|
@ -156,7 +156,7 @@ MacOGLClientFetchObject::MacOGLClientFetchObject()
|
|||
|
||||
CGLSetCurrentContext(prevContext);
|
||||
|
||||
snprintf(_name, sizeof(_name) - 1, "macOS OpenGL v%i.%i.%i", _contextInfo->GetVersionMajor(), _contextInfo->GetVersionMinor(), _contextInfo->GetVersionRevision());
|
||||
snprintf(_name, sizeof(_name) - 1, "macOS OpenGL v%i.%i", _contextInfo->GetVersionMajor(), _contextInfo->GetVersionMinor());
|
||||
strlcpy(_description, _contextInfo->GetRendererString(), sizeof(_description) - 1);
|
||||
|
||||
_clientData = [[MacClientSharedObject alloc] init];
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
romSerialStr = unspecifiedStr;
|
||||
}
|
||||
|
||||
NSString *finalFormTextStr = @"[ BEGIN DESMUME RUNTIME INFORMATION ]\n";
|
||||
NSString *finalFormTextStr = @"[ BEGIN DESMUME TROUBLESHOOTING INFORMATION ]\n";
|
||||
finalFormTextStr = [[finalFormTextStr stringByAppendingString:@"\nApp Version: "] stringByAppendingString:appVersionStr];
|
||||
finalFormTextStr = [[finalFormTextStr stringByAppendingString:@"\nOperating System: "] stringByAppendingString:[CocoaDSUtil operatingSystemString]];
|
||||
finalFormTextStr = [[finalFormTextStr stringByAppendingString:@"\nModel Identifier: "] stringByAppendingString:[CocoaDSUtil modelIdentifierString]];
|
||||
|
@ -188,7 +188,7 @@
|
|||
[bindings setValue:NSSTRING_TITLE_GO_BUG_REPORT_WEBPAGE_TITLE forKey:@"goWebpageButtonTitle"];
|
||||
}
|
||||
|
||||
finalFormTextStr = [finalFormTextStr stringByAppendingString:@"\n\n[ END DESMUME RUNTIME INFORMATION ]"];
|
||||
finalFormTextStr = [finalFormTextStr stringByAppendingString:@"\n\n[ END DESMUME TROUBLESHOOTING INFORMATION ]"];
|
||||
|
||||
[bindings setValue:finalFormTextStr forKey:@"finalFormText"];
|
||||
|
||||
|
|
Loading…
Reference in New Issue