diff --git a/desmume/src/cocoa/OGLDisplayOutput.cpp b/desmume/src/cocoa/OGLDisplayOutput.cpp
index afefb63cb..1bb91aeff 100644
--- a/desmume/src/cocoa/OGLDisplayOutput.cpp
+++ b/desmume/src/cocoa/OGLDisplayOutput.cpp
@@ -3712,7 +3712,7 @@ static void InitHQnxLUTs()
_LQ2xLUT = (LUTValues *)malloc(256*(2*2)*16 * sizeof(LUTValues));
_HQ2xLUT = (LUTValues *)malloc(256*(2*2)*16 * sizeof(LUTValues));
- _HQ4xLUT = (LUTValues *)malloc(256*(4*4)*16 * sizeof(LUTValues));
+ _HQ4xLUT = (LUTValues *)malloc(256*(4*4)*16 * sizeof(LUTValues) + 4); // The bytes fix a mysterious crash that intermittently occurs. Don't know why this works... it just does.
#define MUR (compare & 0x01) // top-right
#define MDR (compare & 0x02) // bottom-right
@@ -4621,6 +4621,770 @@ GLuint OGLFilterDeposterize::RunFilterOGL(GLuint srcTexID, GLsizei viewportWidth
#pragma mark -
+OGLImage::OGLImage(OGLInfo *oglInfo, GLsizei imageWidth, GLsizei imageHeight, GLsizei viewportWidth, GLsizei viewportHeight)
+{
+ _needUploadVertices = true;
+ _useDeposterize = false;
+
+ _vtxElementPointer = 0;
+
+ _normalWidth = imageWidth;
+ _normalHeight = imageHeight;
+ _viewportWidth = viewportWidth;
+ _viewportHeight = viewportHeight;
+
+ _vf = new VideoFilter(_normalWidth, _normalHeight, VideoFilterTypeID_None, 0);
+
+ _vfMasterDstBuffer = (uint32_t *)calloc(_vf->GetDstWidth() * _vf->GetDstHeight(), sizeof(uint32_t));
+ _vf->SetDstBufferPtr(_vfMasterDstBuffer);
+
+ _displayTexFilter = GL_NEAREST;
+ glViewport(0, 0, _viewportWidth, _viewportHeight);
+
+ UpdateVertices();
+ UpdateTexCoords(_vf->GetDstWidth(), _vf->GetDstHeight());
+
+ // Set up textures
+ glGenTextures(1, &_texCPUFilterDstID);
+ glGenTextures(1, &_texVideoInputDataID);
+ _texVideoSourceID = _texVideoInputDataID;
+ _texVideoPixelScalerID = _texVideoInputDataID;
+ _texVideoOutputID = _texVideoInputDataID;
+
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, _texCPUFilterDstID);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_STORAGE_HINT_APPLE, GL_STORAGE_CACHED_APPLE);
+ glTextureRangeAPPLE(GL_TEXTURE_RECTANGLE_ARB, _vf->GetDstWidth() * _vf->GetDstHeight() * sizeof(uint32_t), _vfMasterDstBuffer);
+
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, _texVideoInputDataID);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
+ glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA, _vf->GetSrcWidth(), _vf->GetSrcHeight(), 0, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, _vf->GetSrcBufferPtr());
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
+
+ // Set up VBOs
+ glGenBuffersARB(1, &_vboVertexID);
+ glGenBuffersARB(1, &_vboTexCoordID);
+ glGenBuffersARB(1, &_vboElementID);
+
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboVertexID);
+ glBufferDataARB(GL_ARRAY_BUFFER_ARB, sizeof(_vtxBuffer), _vtxBuffer, GL_STATIC_DRAW_ARB);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboTexCoordID);
+ glBufferDataARB(GL_ARRAY_BUFFER_ARB, sizeof(_texCoordBuffer), _texCoordBuffer, GL_STATIC_DRAW_ARB);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0);
+
+ glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, _vboElementID);
+ glBufferDataARB(GL_ELEMENT_ARRAY_BUFFER_ARB, sizeof(GLubyte) * 6, outputElementBuffer, GL_STATIC_DRAW_ARB);
+ glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, 0);
+
+ // Set up VAO
+ glGenVertexArraysDESMUME(1, &_vaoMainStatesID);
+ glBindVertexArrayDESMUME(_vaoMainStatesID);
+
+ if (oglInfo->IsShaderSupported())
+ {
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboVertexID);
+ glVertexAttribPointer(OGLVertexAttributeID_Position, 2, GL_INT, GL_FALSE, 0, 0);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboTexCoordID);
+ glVertexAttribPointer(OGLVertexAttributeID_TexCoord0, 2, GL_FLOAT, GL_FALSE, 0, 0);
+ glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, _vboElementID);
+
+ glEnableVertexAttribArray(OGLVertexAttributeID_Position);
+ glEnableVertexAttribArray(OGLVertexAttributeID_TexCoord0);
+ }
+ else
+ {
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboVertexID);
+ glVertexPointer(2, GL_INT, 0, 0);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, _vboTexCoordID);
+ glTexCoordPointer(2, GL_FLOAT, 0, 0);
+ glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, _vboElementID);
+
+ glEnableClientState(GL_VERTEX_ARRAY);
+ glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+ }
+
+ glBindVertexArrayDESMUME(0);
+ _isVAOPresent = true;
+
+ _pixelScaler = VideoFilterTypeID_None;
+ _useShader150 = oglInfo->IsUsingShader150();
+ _shaderSupport = oglInfo->GetShaderSupport();
+ _canUseShaderOutput = oglInfo->IsShaderSupported();
+ if (_canUseShaderOutput)
+ {
+ _finalOutputProgram = new OGLShaderProgram;
+ _finalOutputProgram->SetShaderSupport(_shaderSupport);
+ _finalOutputProgram->SetVertexAndFragmentShaderOGL(Sample1x1OutputVertShader_100, PassthroughOutputFragShader_110, _useShader150);
+
+ const GLuint finalOutputProgramID = _finalOutputProgram->GetProgramID();
+ glUseProgram(finalOutputProgramID);
+ _uniformFinalOutputAngleDegrees = glGetUniformLocation(finalOutputProgramID, "angleDegrees");
+ _uniformFinalOutputScalar = glGetUniformLocation(finalOutputProgramID, "scalar");
+ _uniformFinalOutputViewSize = glGetUniformLocation(finalOutputProgramID, "viewSize");
+ glUseProgram(0);
+ }
+ else
+ {
+ _finalOutputProgram = NULL;
+ }
+
+ _canUseShaderBasedFilters = (_canUseShaderOutput && oglInfo->IsFBOSupported());
+ if (_canUseShaderBasedFilters)
+ {
+ _filterDeposterize = new OGLFilterDeposterize(_vf->GetSrcWidth(), _vf->GetSrcHeight(), _shaderSupport, _useShader150);
+
+ _shaderFilter = new OGLFilter(_vf->GetSrcWidth(), _vf->GetSrcHeight(), 1);
+ OGLShaderProgram *shaderFilterProgram = _shaderFilter->GetProgram();
+ shaderFilterProgram->SetShaderSupport(_shaderSupport);
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample1x1_VertShader_110, PassthroughFragShader_110, _useShader150);
+
+ UploadHQnxLUTs();
+ }
+ else
+ {
+ _filterDeposterize = NULL;
+ _shaderFilter = NULL;
+ }
+
+ _useShaderBasedPixelScaler = false;
+ _filtersPreferGPU = true;
+ _outputFilter = OutputFilterTypeID_Bilinear;
+}
+
+OGLImage::~OGLImage()
+{
+ if (_isVAOPresent)
+ {
+ glDeleteVertexArraysDESMUME(1, &this->_vaoMainStatesID);
+ _isVAOPresent = false;
+ }
+
+ glDeleteBuffersARB(1, &this->_vboVertexID);
+ glDeleteBuffersARB(1, &this->_vboTexCoordID);
+ glDeleteBuffersARB(1, &this->_vboElementID);
+ glDeleteTextures(1, &this->_texCPUFilterDstID);
+ glDeleteTextures(1, &this->_texVideoInputDataID);
+
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, 0);
+ glDeleteTextures(1, &this->_texLQ2xLUT);
+ glDeleteTextures(1, &this->_texHQ2xLUT);
+ glDeleteTextures(1, &this->_texHQ4xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ if (_canUseShaderOutput)
+ {
+ glUseProgram(0);
+ delete this->_finalOutputProgram;
+ }
+
+ if (_canUseShaderBasedFilters)
+ {
+ delete this->_filterDeposterize;
+ delete this->_shaderFilter;
+ }
+
+ delete this->_vf;
+ free(_vfMasterDstBuffer);
+}
+
+void OGLImage::UploadHQnxLUTs()
+{
+ InitHQnxLUTs();
+
+ glGenTextures(1, &_texLQ2xLUT);
+ glGenTextures(1, &_texHQ2xLUT);
+ glGenTextures(1, &_texHQ4xLUT);
+ glActiveTexture(GL_TEXTURE0 + 1);
+
+ glBindTexture(GL_TEXTURE_3D, _texLQ2xLUT);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
+ glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 256*2, 4, 16, 0, GL_BGR, GL_UNSIGNED_BYTE, _LQ2xLUT);
+
+ glBindTexture(GL_TEXTURE_3D, _texHQ2xLUT);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
+ glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 256*2, 4, 16, 0, GL_BGR, GL_UNSIGNED_BYTE, _HQ2xLUT);
+
+ glBindTexture(GL_TEXTURE_3D, _texHQ4xLUT);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+ glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
+ glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB, 256*2, 16, 16, 0, GL_BGR, GL_UNSIGNED_BYTE, _HQ4xLUT);
+
+ glBindTexture(GL_TEXTURE_3D, 0);
+ glActiveTexture(GL_TEXTURE0);
+}
+
+bool OGLImage::GetFiltersPreferGPU()
+{
+ return this->_filtersPreferGPU;
+}
+
+void OGLImage::SetFiltersPreferGPUOGL(bool preferGPU)
+{
+ this->_filtersPreferGPU = preferGPU;
+ this->_useShaderBasedPixelScaler = (preferGPU) ? this->SetGPUPixelScalerOGL(this->_pixelScaler) : false;
+}
+
+bool OGLImage::GetSourceDeposterize()
+{
+ return this->_useDeposterize;
+}
+
+void OGLImage::SetSourceDeposterize(bool useDeposterize)
+{
+ this->_useDeposterize = (this->_canUseShaderBasedFilters) ? useDeposterize : false;
+}
+
+void OGLImage::UpdateVertices()
+{
+ const GLint w = this->_normalWidth;
+ const GLint h = this->_normalHeight;
+
+ _vtxBuffer[0] = -w/2; _vtxBuffer[1] = h/2;
+ _vtxBuffer[2] = w/2; _vtxBuffer[3] = h/2;
+ _vtxBuffer[4] = w/2; _vtxBuffer[5] = -h/2;
+ _vtxBuffer[6] = -w/2; _vtxBuffer[7] = -h/2;
+
+ this->_needUploadVertices = true;
+}
+
+void OGLImage::UpdateTexCoords(GLfloat s, GLfloat t)
+{
+ _texCoordBuffer[0] = 0.0f; _texCoordBuffer[1] = 0.0f;
+ _texCoordBuffer[2] = s; _texCoordBuffer[3] = 0.0f;
+ _texCoordBuffer[4] = s; _texCoordBuffer[5] = t;
+ _texCoordBuffer[6] = 0.0f; _texCoordBuffer[7] = t;
+}
+
+bool OGLImage::CanUseShaderBasedFilters()
+{
+ return this->_canUseShaderBasedFilters;
+}
+
+void OGLImage::GetNormalSize(double *w, double *h)
+{
+ if (w == NULL || h == NULL)
+ {
+ return;
+ }
+
+ *w = this->_normalWidth;
+ *h = this->_normalHeight;
+}
+
+void OGLImage::UploadVerticesOGL()
+{
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, this->_vboVertexID);
+ glBufferSubDataARB(GL_ARRAY_BUFFER_ARB, 0, sizeof(this->_vtxBuffer), this->_vtxBuffer);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0);
+ this->_needUploadVertices = false;
+}
+
+void OGLImage::UploadTexCoordsOGL()
+{
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, this->_vboTexCoordID);
+ glBufferSubDataARB(GL_ARRAY_BUFFER_ARB, 0, sizeof(this->_texCoordBuffer), this->_texCoordBuffer);
+ glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0);
+}
+
+void OGLImage::UploadTransformationOGL()
+{
+ const double w = this->_viewportWidth;
+ const double h = this->_viewportHeight;
+ const GLdouble s = GetMaxScalarInBounds(this->_normalWidth, this->_normalHeight, w, h);
+
+ if (this->_canUseShaderOutput)
+ {
+ glUniform2f(this->_uniformFinalOutputViewSize, w, h);
+ glUniform1f(this->_uniformFinalOutputAngleDegrees, 0.0f);
+ glUniform1f(this->_uniformFinalOutputScalar, s);
+ }
+ else
+ {
+ glMatrixMode(GL_PROJECTION);
+ glLoadIdentity();
+ glOrtho(-w/2.0, -w/2.0 + w, -h/2.0, -h/2.0 + h, -1.0, 1.0);
+
+ glMatrixMode(GL_MODELVIEW);
+ glLoadIdentity();
+ glRotatef(0.0f, 0.0f, 0.0f, 1.0f);
+ glScalef(s, s, 1.0f);
+ }
+}
+
+int OGLImage::GetOutputFilter()
+{
+ return this->_outputFilter;
+}
+
+void OGLImage::SetOutputFilterOGL(const int filterID)
+{
+ this->_displayTexFilter = GL_NEAREST;
+
+ if (this->_canUseShaderBasedFilters)
+ {
+ this->_outputFilter = filterID;
+
+ switch (filterID)
+ {
+ case OutputFilterTypeID_NearestNeighbor:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(Sample1x1OutputVertShader_100, PassthroughOutputFragShader_110, _useShader150);
+ break;
+
+ case OutputFilterTypeID_Bilinear:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(Sample1x1OutputVertShader_100, PassthroughOutputFragShader_110, _useShader150);
+ this->_displayTexFilter = GL_LINEAR;
+ break;
+
+ case OutputFilterTypeID_BicubicBSpline:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample4x4Output_VertShader_110, FilterBicubicBSplineFragShader_110, _useShader150);
+ break;
+
+ case OutputFilterTypeID_BicubicMitchell:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample4x4Output_VertShader_110, FilterBicubicMitchellNetravaliFragShader_110, _useShader150);
+ break;
+
+ case OutputFilterTypeID_Lanczos2:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample4x4Output_VertShader_110, FilterLanczos2FragShader_110, _useShader150);
+ break;
+
+ case OutputFilterTypeID_Lanczos3:
+ {
+ if (this->_shaderSupport >= ShaderSupport_HighTier)
+ {
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample6x6Output_VertShader_110, FilterLanczos3FragShader_110, _useShader150);
+ }
+ else if (this->_shaderSupport >= ShaderSupport_MidTier)
+ {
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample5x5Output_VertShader_110, FilterLanczos3FragShader_110, _useShader150);
+ }
+ else
+ {
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(BicubicSample4x4Output_VertShader_110, FilterLanczos3FragShader_110, _useShader150);
+ }
+ break;
+ }
+
+ default:
+ this->_finalOutputProgram->SetVertexAndFragmentShaderOGL(Sample1x1OutputVertShader_100, PassthroughOutputFragShader_110, _useShader150);
+ this->_outputFilter = OutputFilterTypeID_NearestNeighbor;
+ break;
+ }
+ }
+ else
+ {
+ if (filterID == OutputFilterTypeID_Bilinear)
+ {
+ this->_displayTexFilter = GL_LINEAR;
+ this->_outputFilter = filterID;
+ }
+ else
+ {
+ this->_outputFilter = OutputFilterTypeID_NearestNeighbor;
+ }
+ }
+}
+
+int OGLImage::GetPixelScaler()
+{
+ return (int)this->_pixelScaler;
+}
+
+void OGLImage::SetPixelScalerOGL(const int filterID)
+{
+ std::string cpuTypeIDString = std::string( VideoFilter::GetTypeStringByID((VideoFilterTypeID)filterID) );
+ const VideoFilterTypeID newFilterID = (cpuTypeIDString != std::string(VIDEOFILTERTYPE_UNKNOWN_STRING)) ? (VideoFilterTypeID)filterID : VideoFilterTypeID_None;
+
+ this->SetCPUPixelScalerOGL(newFilterID);
+ this->_useShaderBasedPixelScaler = (this->GetFiltersPreferGPU()) ? this->SetGPUPixelScalerOGL(newFilterID) : false;
+ this->_pixelScaler = newFilterID;
+}
+
+bool OGLImage::SetGPUPixelScalerOGL(const VideoFilterTypeID filterID)
+{
+ bool willUseShaderBasedPixelScaler = true;
+
+ if (!this->_canUseShaderBasedFilters || filterID == VideoFilterTypeID_None)
+ {
+ willUseShaderBasedPixelScaler = false;
+ return willUseShaderBasedPixelScaler;
+ }
+
+ OGLShaderProgram *shaderFilterProgram = _shaderFilter->GetProgram();
+ VideoFilterAttributes vfAttr = VideoFilter::GetAttributesByID((VideoFilterTypeID)filterID);
+ GLfloat vfScale = (GLfloat)vfAttr.scaleMultiply / (GLfloat)vfAttr.scaleDivide;
+
+ switch (filterID)
+ {
+ case VideoFilterTypeID_Nearest1_5X:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample1x1_VertShader_110, PassthroughFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_Nearest2X:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample1x1_VertShader_110, PassthroughFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_Scanline:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample1x1_VertShader_110, Scalar2xScanlineFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_EPX:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, Scalar2xEPXFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_EPXPlus:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, Scalar2xEPXPlusFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_2xSaI:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, Scalar2xSaIFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_Super2xSaI:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, ScalarSuper2xSaIFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_SuperEagle:
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, ScalarSuperEagle2xFragShader_110, _useShader150);
+ break;
+
+ case VideoFilterTypeID_LQ2X:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texLQ2xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerLQ2xFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_LQ2XS:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texLQ2xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerLQ2xSFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_HQ2X:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texHQ2xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerHQ2xFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_HQ2XS:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texHQ2xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerHQ2xSFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_HQ4X:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texHQ4xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerHQ4xFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_HQ4XS:
+ {
+ glActiveTexture(GL_TEXTURE0 + 1);
+ glBindTexture(GL_TEXTURE_3D, this->_texHQ4xLUT);
+ glActiveTexture(GL_TEXTURE0);
+
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample3x3_VertShader_110, ScalerHQ4xSFragShader_110, _useShader150);
+
+ glUseProgram(shaderFilterProgram->GetProgramID());
+ GLint uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "tex");
+ glUniform1i(uniformTexSampler, 0);
+
+ uniformTexSampler = glGetUniformLocation(shaderFilterProgram->GetProgramID(), "lut");
+ glUniform1i(uniformTexSampler, 1);
+ glUseProgram(0);
+ break;
+ }
+
+ case VideoFilterTypeID_2xBRZ:
+ {
+ if (this->_shaderSupport >= ShaderSupport_MidTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample5x5_VertShader_110, Scaler2xBRZFragShader_110, _useShader150);
+ }
+ else if (this->_shaderSupport >= ShaderSupport_LowTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, Scaler2xBRZFragShader_110, _useShader150);
+ }
+ else
+ {
+ willUseShaderBasedPixelScaler = false;
+ }
+ break;
+ }
+
+ case VideoFilterTypeID_3xBRZ:
+ {
+ if (this->_shaderSupport >= ShaderSupport_MidTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample5x5_VertShader_110, Scaler3xBRZFragShader_110, _useShader150);
+ }
+ else if (this->_shaderSupport >= ShaderSupport_LowTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, Scaler3xBRZFragShader_110, _useShader150);
+ }
+ else
+ {
+ willUseShaderBasedPixelScaler = false;
+ }
+ break;
+ }
+
+ case VideoFilterTypeID_4xBRZ:
+ {
+ if (this->_shaderSupport >= ShaderSupport_MidTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample5x5_VertShader_110, Scaler4xBRZFragShader_110, _useShader150);
+ }
+ else if (this->_shaderSupport >= ShaderSupport_LowTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample4x4_VertShader_110, Scaler4xBRZFragShader_110, _useShader150);
+ }
+ else
+ {
+ willUseShaderBasedPixelScaler = false;
+ }
+ break;
+ }
+
+
+ case VideoFilterTypeID_5xBRZ:
+ {
+ if (this->_shaderSupport >= ShaderSupport_MidTier)
+ {
+ shaderFilterProgram->SetVertexAndFragmentShaderOGL(Sample5x5_VertShader_110, Scaler5xBRZFragShader_110, _useShader150);
+ }
+ else
+ {
+ willUseShaderBasedPixelScaler = false;
+ }
+ break;
+ }
+
+ default:
+ willUseShaderBasedPixelScaler = false;
+ break;
+ }
+
+ if (willUseShaderBasedPixelScaler)
+ {
+ _shaderFilter->SetScaleOGL(vfScale);
+ }
+
+ return willUseShaderBasedPixelScaler;
+}
+
+void OGLImage::SetCPUPixelScalerOGL(const VideoFilterTypeID filterID)
+{
+ bool needResizeTexture = false;
+ const VideoFilterAttributes newFilterAttr = VideoFilter::GetAttributesByID(filterID);
+ const GLsizei oldDstBufferWidth = this->_vf->GetDstWidth();
+ const GLsizei oldDstBufferHeight = this->_vf->GetDstHeight();
+ const GLsizei newDstBufferWidth = this->_vf->GetSrcWidth() * newFilterAttr.scaleMultiply / newFilterAttr.scaleDivide;
+ const GLsizei newDstBufferHeight = this->_vf->GetSrcHeight() * newFilterAttr.scaleMultiply / newFilterAttr.scaleDivide;
+
+ if (oldDstBufferWidth != newDstBufferWidth || oldDstBufferHeight != newDstBufferHeight)
+ {
+ needResizeTexture = true;
+ }
+
+ if (needResizeTexture)
+ {
+ uint32_t *oldMasterBuffer = _vfMasterDstBuffer;
+ uint32_t *newMasterBuffer = (uint32_t *)calloc(newDstBufferWidth * newDstBufferHeight, sizeof(uint32_t));
+ this->_vf->SetDstBufferPtr(newMasterBuffer);
+
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, this->_texCPUFilterDstID);
+ glTextureRangeAPPLE(GL_TEXTURE_RECTANGLE_ARB, newDstBufferWidth * newDstBufferHeight * sizeof(uint32_t), newMasterBuffer);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_STORAGE_HINT_APPLE, GL_STORAGE_CACHED_APPLE);
+
+ glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE);
+ glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA, newDstBufferWidth, newDstBufferHeight, 0, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, newMasterBuffer);
+ glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, GL_FALSE);
+
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
+
+ _vfMasterDstBuffer = newMasterBuffer;
+ free(oldMasterBuffer);
+ }
+
+ this->_vf->ChangeFilterByID(filterID);
+}
+
+void OGLImage::LoadFrameOGL(const uint32_t *frameData, GLsizei w, GLsizei h)
+{
+ const bool isUsingCPUPixelScaler = this->_pixelScaler != VideoFilterTypeID_None && !this->_useShaderBasedPixelScaler;
+
+ if (!isUsingCPUPixelScaler || this->_useDeposterize)
+ {
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, this->_texVideoInputDataID);
+ glTexSubImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, 0, 0, w, h, GL_RGBA, GL_UNSIGNED_INT_8_8_8_8_REV, frameData);
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
+ }
+ else
+ {
+ memcpy(this->_vf->GetSrcBufferPtr(), frameData, w * h * sizeof(uint32_t));
+ }
+}
+
+void OGLImage::ProcessOGL()
+{
+ VideoFilter *currentFilter = this->_vf;
+ const bool isUsingCPUPixelScaler = this->_pixelScaler != VideoFilterTypeID_None && !this->_useShaderBasedPixelScaler;
+
+ // Source
+ if (this->_useDeposterize)
+ {
+ this->_texVideoSourceID = this->_filterDeposterize->RunFilterOGL(this->_texVideoInputDataID, this->_viewportWidth, this->_viewportHeight);
+
+ if (isUsingCPUPixelScaler) // Hybrid CPU/GPU-based path (may cause a performance hit on pixel download)
+ {
+ this->_filterDeposterize->DownloadDstBufferOGL(currentFilter->GetSrcBufferPtr(), 0, this->_normalHeight);
+ }
+ }
+ else
+ {
+ this->_texVideoSourceID = this->_texVideoInputDataID;
+ }
+
+ // Pixel scaler
+ if (!isUsingCPUPixelScaler)
+ {
+ if (this->_useShaderBasedPixelScaler)
+ {
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, this->_texVideoSourceID);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
+
+ this->_texVideoPixelScalerID = this->_shaderFilter->RunFilterOGL(this->_texVideoSourceID, this->_viewportWidth, this->_viewportHeight);
+
+ this->UpdateTexCoords(this->_shaderFilter->GetDstWidth(), this->_shaderFilter->GetDstHeight());
+ }
+ else
+ {
+ this->_texVideoPixelScalerID = this->_texVideoSourceID;
+ this->UpdateTexCoords(this->_normalWidth, this->_normalHeight);
+ }
+ }
+ else
+ {
+ uint32_t *texData = currentFilter->RunFilter();
+
+ const GLfloat w = currentFilter->GetDstWidth();
+ const GLfloat h = currentFilter->GetDstHeight();
+ this->_texVideoPixelScalerID = this->_texCPUFilterDstID;
+
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, this->_texVideoPixelScalerID);
+ glTexSubImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, 0, 0, w, h, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, texData);
+ this->UpdateTexCoords(w, h);
+ }
+
+ // Output
+ this->_texVideoOutputID = this->_texVideoPixelScalerID;
+ this->UploadTexCoordsOGL();
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
+}
+
+void OGLImage::RenderOGL()
+{
+ glUseProgram(this->_finalOutputProgram->GetProgramID());
+ this->UploadTransformationOGL();
+
+ if (this->_needUploadVertices)
+ {
+ this->UploadVerticesOGL();
+ }
+
+ // Enable vertex attributes
+ glBindVertexArrayDESMUME(this->_vaoMainStatesID);
+
+ glClear(GL_COLOR_BUFFER_BIT);
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, this->_texVideoOutputID);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, this->_displayTexFilter);
+ glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, this->_displayTexFilter);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, this->_vtxElementPointer);
+ glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
+
+ // Disable vertex attributes
+ glBindVertexArrayDESMUME(0);
+}
+
+#pragma mark -
+
OGLDisplayLayer::OGLDisplayLayer(OGLVideoOutput *oglVO)
{
_output = oglVO;
@@ -4720,6 +5484,7 @@ OGLDisplayLayer::OGLDisplayLayer(OGLVideoOutput *oglVO)
glBindVertexArrayDESMUME(0);
_isVAOPresent = true;
+ _pixelScaler = VideoFilterTypeID_None;
_useShader150 = this->_output->GetInfo()->IsUsingShader150();
_shaderSupport = this->_output->GetInfo()->GetShaderSupport();
_canUseShaderOutput = this->_output->GetInfo()->IsShaderSupported();
diff --git a/desmume/src/cocoa/OGLDisplayOutput.h b/desmume/src/cocoa/OGLDisplayOutput.h
index 9cb3a11d6..400abfa51 100644
--- a/desmume/src/cocoa/OGLDisplayOutput.h
+++ b/desmume/src/cocoa/OGLDisplayOutput.h
@@ -189,6 +189,93 @@ public:
virtual void RenderOGL() {};
};
+class OGLImage
+{
+protected:
+ bool _isVAOPresent;
+ bool _canUseShaderBasedFilters;
+ bool _canUseShaderOutput;
+ bool _useShader150;
+ ShaderSupportTier _shaderSupport;
+
+ bool _needUploadVertices;
+ bool _useDeposterize;
+ bool _useShaderBasedPixelScaler;
+ bool _filtersPreferGPU;
+ int _outputFilter;
+ VideoFilterTypeID _pixelScaler;
+
+ OGLFilter *_filterDeposterize;
+ OGLFilter *_shaderFilter;
+ OGLShaderProgram *_finalOutputProgram;
+
+ VideoFilter *_vf;
+ uint32_t *_vfMasterDstBuffer;
+
+ double _normalWidth;
+ double _normalHeight;
+ GLsizei _viewportWidth;
+ GLsizei _viewportHeight;
+
+ GLubyte *_vtxElementPointer;
+
+ GLint _displayTexFilter;
+ GLuint _texCPUFilterDstID;
+
+ GLuint _texLQ2xLUT;
+ GLuint _texHQ2xLUT;
+ GLuint _texHQ4xLUT;
+
+ GLint _vtxBuffer[8];
+ GLfloat _texCoordBuffer[8];
+
+ GLuint _texVideoInputDataID;
+ GLuint _texVideoSourceID;
+ GLuint _texVideoPixelScalerID;
+ GLuint _texVideoOutputID;
+ GLuint _vaoMainStatesID;
+ GLuint _vboVertexID;
+ GLuint _vboTexCoordID;
+ GLuint _vboElementID;
+
+ GLint _uniformFinalOutputAngleDegrees;
+ GLint _uniformFinalOutputScalar;
+ GLint _uniformFinalOutputViewSize;
+
+ void UploadHQnxLUTs();
+
+ virtual void UploadVerticesOGL();
+ virtual void UploadTexCoordsOGL();
+ virtual void UploadTransformationOGL();
+
+ void UpdateVertices();
+ void UpdateTexCoords(GLfloat s, GLfloat t);
+
+public:
+ OGLImage() {};
+ OGLImage(OGLInfo *oglInfo, GLsizei imageWidth, GLsizei imageHeight, GLsizei viewportWidth, GLsizei viewportHeight);
+ virtual ~OGLImage();
+
+ bool GetFiltersPreferGPU();
+ void SetFiltersPreferGPUOGL(bool preferGPU);
+
+ bool GetSourceDeposterize();
+ void SetSourceDeposterize(bool useDeposterize);
+
+ bool CanUseShaderBasedFilters();
+ void GetNormalSize(double *w, double *h);
+
+ int GetOutputFilter();
+ virtual void SetOutputFilterOGL(const int filterID);
+ int GetPixelScaler();
+ virtual void SetPixelScalerOGL(const int filterID);
+ virtual bool SetGPUPixelScalerOGL(const VideoFilterTypeID filterID);
+ virtual void SetCPUPixelScalerOGL(const VideoFilterTypeID filterID);
+ virtual void LoadFrameOGL(const uint32_t *frameData, GLsizei w, GLsizei h);
+ virtual void ProcessOGL();
+ virtual void RenderOGL();
+};
+
class OGLDisplayLayer : public OGLVideoLayer
{
protected:
diff --git a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib
index 9acb95b22..4e15349de 100644
--- a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib
+++ b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib
@@ -1,4355 +1,4330 @@
-
- 1050
- 14C109
- 851
- 1344.72
- 757.30
-
-
-
-
-
+
+ {{16, 413}, {255, 78}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Audio Output Engine
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+ {288, 511}
+
+ {{0, 0}, {1920, 1178}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ SoundSettingsPanel
+ YES
+
+
+ 8215
+ 2
+ {{69, 199}, {580, 588}}
+ -461897728
+ ROM Info
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+ 256
+
+ YES
+
+
+
+ YES
+
+ YES
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ NSFilenamesPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+
+
+ {{20, 440}, {128, 128}}
+
+
+ YES
+
+ 134217728
+ 33554432
+
+ 0
+ 3
+ 0
+ NO
+
+ NO
+ YES
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 89}, {131, 17}}
+
+
+ YES
+
+ 68157504
+ 272634880
+ ROM Name:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 64}, {131, 17}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Serial:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 39}, {131, 17}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Developer:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 14}, {131, 17}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ Chip Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{148, 89}, {245, 17}}
+
+
+ YES
+
+ 70254657
+ 4199424
+
+
+ ?
+
+
+
+ 1
+ MSAxIDEAA
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{148, 64}, {245, 17}}
+
+
+ YES
+
+ 70254657
+ 4199424
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{148, 39}, {245, 17}}
+
+
+ YES
+
+ 70254657
+ 4199424
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{148, 14}, {245, 17}}
+
+
+ YES
+
+ 70254657
+ 4199424
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+ {{1, 1}, {408, 116}}
+
+
+
+
+ {{153, 436}, {410, 132}}
+
+
+ {0, 0}
+
+ 67108864
+ 0
+ General Info
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 376}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ JAPANESE TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 312}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ ENGLISH TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 248}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ FRENCH TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 184}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ GERMAN TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 120}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ ITALIAN TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 56}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272897024
+ SPANISH TITLE:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 334}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 270}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 206}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 142}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 78}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 14}, {186, 42}}
+
+
+ YES
+
+ 69206017
+ 272896000
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+ {{1, 1}, {216, 400}}
+
+
+
+
+ {{17, 16}, {218, 416}}
+
+
+ {0, 0}
+
+ 67108864
+ 0
+ Titles
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 168}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM9 Binary ROM Offset:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 146}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM9 Binary Entry Address:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 124}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM9 Binary Start Address:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 102}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM9 Binary Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 80}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM7 Binary ROM Offset:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 58}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM7 Binary Entry Address:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 36}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM7 Binary Start Address:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 14}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ ARM7 Binary Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 168}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 146}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 124}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 102}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ? bytes
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 80}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 58}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 36}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 14}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ? bytes
+
+
+
+
+ NO
+ 1
+
+
+ {{1, 1}, {324, 192}}
+
+
+
+
+ {{237, 224}, {326, 208}}
+
+
+ {0, 0}
+
+ 67108864
+ 0
+ ARM9 & ARM7 Binaries
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 80}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ FNT ROM Offset:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 80}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 58}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ FNT Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 58}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ? bytes
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 36}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ FAT ROM Offset:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 36}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 14}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ FAT Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 14}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ? bytes
+
+
+
+
+ NO
+ 1
+
+
+ {{1, 1}, {324, 104}}
+
+
+
+
+ {{237, 98}, {326, 120}}
+
+
+ {0, 0}
+
+ 67108864
+ 0
+ File System
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 36}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ Icon/Title Region ROM Offset:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 36}, {106, 14}}
+
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{15, 14}, {186, 14}}
+
+
+ YES
+
+ 68157504
+ 272630784
+ Used ROM Size:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{203, 14}, {106, 14}}
+
+ YES
+
+ 70254657
+ 71308288
+
+
+ ?
+
+
+
+
+ NO
+ 1
+
+
+ {{1, 1}, {324, 60}}
+
+
+
+
+ {{237, 16}, {326, 76}}
+
+
+ {0, 0}
+
+ 67108864
+ 0
+ Miscellaneous
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+ {580, 588}
+
+
+ {{0, 0}, {1440, 878}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ ROMInfoPanel
+ YES
+
+
+ 279
+ 2
+ {{162, 281}, {213, 198}}
+ -461896704
+ Set Rotation
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+ 256
+
+ YES
+
+
+ 268
+ {{88, 119}, {32, 34}}
+
+ YES
+
+ 67371264
+ 0
+
+
+ 360
+ 0.0
+ 0.0
+ 0.0
+ 4
+ 1
+ NO
+ NO
+ 1
+
+ NO
+
+
+
+ 268
+ {{85, 161}, {38, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ 0º
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{85, 94}, {39, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ 180º
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{44, 127}, {39, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ 270º
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{125, 127}, {38, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ 90º
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{127, 69}, {57, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ alwaysShowsDecimalSeparator
+ currencySymbol
+ formatterBehavior
+ internationalCurrencySymbol
+ lenient
+ locale
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimumFractionDigits
+ minimumIntegerDigits
+ negativeFormat
+ negativeSuffix
+ numberStyle
+ positiveFormat
+ positiveSuffix
+
+
+ YES
+
+
+ ¤
+
+ ¤¤
+
+
+
+
+
+
+ #0.00º
+ º
+
+ #0.00º
+ º
+
+
+ #0.00º
+ #0.00º
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ YES
+
+ rotX
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{24, 69}, {101, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Rotation set to:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{27, 42}, {154, 19}}
+
+ YES
+
+ -2080374784
+ 134217728
+ Set to 0º
+
+
+ -2038153216
+ 164
+
+
+ 400
+ 75
+
+ NO
+
+
+
+ 268
+ {{27, 17}, {154, 19}}
+
+ YES
+
+ -2080374784
+ 134217728
+ Save Settings as Default
+
+
+ -2038153216
+ 164
+
+
+ 400
+ 75
+
+ NO
+
+
+ {213, 198}
+
+ {{0, 0}, {1920, 1178}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ SetRotationPanel
+ YES
+
+
+ 279
+ 2
+ {{230, 408}, {441, 133}}
+ -461896704
+ Set Separation
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+ 256
+
+ YES
+
+
+ 268
+ {{30, 73}, {385, 26}}
+
+ YES
+
+ -2080112384
+ 0
+
+
+ 2
+ 0.0
+ 1
+ 0.0
+ 5
+ 1
+ NO
+ NO
+
+ NO
+
+
+
+ 268
+ {{389, 99}, {38, 14}}
+
+ YES
+
+ 68157504
+ 138544128
+ 200%
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{298, 99}, {38, 14}}
+
+ YES
+
+ 68157504
+ 138544128
+ 150%
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{205, 99}, {38, 14}}
+
+ YES
+
+ 68157504
+ 138544128
+ 100%
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{113, 99}, {38, 14}}
+
+ YES
+
+ 68157504
+ 138544128
+ 50%
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{22, 99}, {38, 14}}
+
+ YES
+
+ 68157504
+ 138544128
+ 0%
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{249, 51}, {107, 17}}
+
+ YES
+
+ 68157504
+ 71304192
+ Gap Percentage:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{358, 51}, {66, 17}}
+
+ YES
+
+ 68157504
+ -2143288320
+
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ alwaysShowsDecimalSeparator
+ formatterBehavior
+ locale
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimumFractionDigits
+ negativeInfinitySymbol
+ nilSymbol
+ numberStyle
+ positiveInfinitySymbol
+ usesGroupingSeparator
+
+
+ YES
+
+
+
+
+
+
+
+ -∞
+
+
+ +∞
+
+
+
+ #0.0%
+ #0.0%
+
+
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ YES
+
+ 1.1f%
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{20, 48}, {100, 19}}
+
+ YES
+
+ -2080374784
+ 134217728
+ Set to 0%
+
+
+ -2038153216
+ 164
+
+
+ 400
+ 75
+
+ NO
+
+
+
+ 268
+ {{128, 48}, {100, 19}}
+
+ 100
+ YES
+
+ -2080374784
+ 134217728
+ Set to 100%
+
+
+ -2038153216
+ 164
+
+
+ 400
+ 75
+
+ NO
+
+
+
+ 268
+ {{147, 18}, {154, 19}}
+
+ YES
+
+ -2080374784
+ 134217728
+ Save Settings as Default
+
+
+ -2038153216
+ 164
+
+
+ 400
+ 75
+
+ NO
+
+
+ {441, 133}
+
+ {{0, 0}, {1920, 1178}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ SetSeparationPanel
+ YES
+
+
+ 279
+ 2
+ {{230, 202}, {173, 339}}
+ -461896704
+ GPU Layers
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+ 256
+
+ YES
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 112}, {106, 18}}
+
+ YES
+
+ -2080374784
+ 131072
+ GPU (All Layers)
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 92}, {44, 18}}
+
+ 1
+ YES
+
+ -2080374784
+ 131072
+ BG0
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 72}, {44, 18}}
+
+ 2
+ YES
+
+ -2080374784
+ 131072
+ BG1
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 52}, {44, 18}}
+
+ 3
+ YES
+
+ -2080374784
+ 131072
+ BG2
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 32}, {44, 18}}
+
+ 4
+ YES
+
+ -2080374784
+ 131072
+ BG3
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 12}, {44, 18}}
+
+ 5
+ YES
+
+ -2080374784
+ 131072
+ OBJ
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+ {{1, 1}, {137, 138}}
+
+
+
+ {{17, 174}, {139, 154}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Main
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+ 12
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 268
+ {{15, 112}, {106, 18}}
+
+ 6
+ YES
+
+ -2080374784
+ 131072
+ GPU (All Layers)
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 92}, {44, 18}}
+
+ 7
+ YES
+
+ -2080374784
+ 131072
+ BG0
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 72}, {44, 18}}
+
+ 8
+ YES
+
+ -2080374784
+ 131072
+ BG1
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 52}, {44, 18}}
+
+ 9
+ YES
+
+ -2080374784
+ 131072
+ BG2
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 32}, {44, 18}}
+
+ 10
+ YES
+
+ -2080374784
+ 131072
+ BG3
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{33, 12}, {44, 18}}
+
+ 11
+ YES
+
+ -2080374784
+ 131072
+ OBJ
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+ {{1, 1}, {137, 138}}
+
+
+
+ {{17, 16}, {139, 154}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Sub
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+ {173, 339}
+
+ {{0, 0}, {1920, 1178}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ GPULayersPanel
+ YES
+
+
+ 279
+ 2
+ {{162, 360}, {290, 119}}
+ -461896704
+ GDB Stub Control
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+ 256
+
+ YES
+
+
+ 268
+
+ YES
+
+ {{190, 80}, {80, 19}}
+
+ _NS:817
+ YES
+
+ -1804599231
+ 272761856
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ formatterBehavior
+ locale
+ maximum
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimum
+ negativeInfinitySymbol
+ nilSymbol
+ numberStyle
+ positiveInfinitySymbol
+ usesGroupingSeparator
+
+
+ YES
+
+
+
+
+
+
+
+ -∞
+
+
+ +∞
+
+
+
+ #0
+ #0
+
+
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ NO
+
+ _NS:817
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 268
+
+ YES
+
+ {{190, 55}, {80, 19}}
+
+ _NS:817
+ YES
+
+ -1804599231
+ 272761856
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ formatterBehavior
+ locale
+ maximum
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimum
+ negativeInfinitySymbol
+ nilSymbol
+ numberStyle
+ positiveInfinitySymbol
+ usesGroupingSeparator
+
+
+ YES
+
+
+
+
+
+
+
+ -∞
+
+
+ +∞
+
+
+
+ #0
+ #0
+
+
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ NO
+
+ _NS:817
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{17, 80}, {111, 18}}
+
+ _NS:682
+ YES
+
+ 67108864
+ 131072
+ Enable for ARM9
+
+ _NS:682
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{17, 55}, {111, 18}}
+
+ _NS:682
+ YES
+
+ 67108864
+ 131072
+ Enable for ARM7
+
+ _NS:682
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{147, 82}, {38, 14}}
+
+ _NS:4068
+ YES
+
+ 68157504
+ 71435264
+ Port:
+
+ _NS:4068
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{147, 57}, {38, 14}}
+
+ _NS:4068
+ YES
+
+ 68157504
+ 71435264
+ Port:
+
+ _NS:4068
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{97, 18}, {100, 19}}
+
+ _NS:2460
+ YES
+
+ -2080374784
+ 134217728
+ Start
+
+ _NS:2460
+
+ -2038153216
+ 164
+ Stop
+
+ 400
+ 75
+
+ NO
+
+
+ {290, 119}
+ _NS:103
+
+ {{0, 0}, {1440, 878}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ GDBStubControlPanel
+ NO
+
+
+
+ 268
+
+ YES
+
+
+
+ 268
+ {{17, 11}, {176, 17}}
+
+ YES
+
+ 68157504
+ 71304192
+ Select ROM Save Format:
+
+
+
+
+
+ NO
+ 1
+
+
+ {450, 35}
+ NSView
+
+
+ 7
+ 2
+ {{88, 206}, {580, 592}}
+ 1685586944
+ Troubleshooting Form
+ NSWindow
+
+
+ {580, 592}
+ {580, 592}
+
+
+ 256
+ {580, 592}
+
+ {{0, 0}, {1440, 878}}
+ {580, 614}
+ {580, 614}
+ YES
+
+
+
+ 268
+
+ YES
+
+
+ 1292
+ {{364, 339}, {32, 32}}
+
+ 28682
+ 100
+
+
+
+ 265
+ {{396, 343}, {168, 28}}
+
+ YES
+
+ 69206017
+ 272764928
+ TmFtZToKU2VyaWFsOg
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 265
+
+ YES
+
+ YES
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ NSFilenamesPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+
+
+ {{364, 341}, {30, 30}}
+
+ YES
+
+ 134217728
+ 33554432
+
+ 0
+ 3
+ 0
+ NO
+
+ NO
+ YES
+
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 2322
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {{0, 69}, {523, 202}}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 523
+ 1
+
+
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 6
+ {525, 10000000}
+
+
+
+ {{1, 1}, {523, 202}}
+
+
+
+
+
+ 4
+
+
+
+ 256
+ {{524, 1}, {15, 202}}
+
+ NO
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 61}, {540, 204}}
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+ 288
+ {{125, 16}, {438, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ And that's it! Click Continue to review your information before submitting it to the DeSmuME team.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 34
+ {{12, 50}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 269
+ {{17, 273}, {546, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ In the field below, briefly describe your situation and what you need help with. (Please be as specific as possible! It will help us to understand your situation better.)
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 309}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us what you need help with.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 10
+ {{12, 332}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 269
+ {{17, 489}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Do you need help with using DeSmuME? If so, it never hurts to ask! Just fill out this form and DeSmuME will prepare all the troubleshooting information for you to send to the DeSmuME team. This information will help us respond to your issue quicker and easier.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 539}, {546, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ DeSmuME Technical Support Request Form
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 10
+ {{12, 478}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 269
+ {{17, 455}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us about the ROM.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 405}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ If your issue is related to a specific ROM, enter its name and serial in the fields below. Otherwise, you may leave these fields blank. (It may be easier to load the ROM first, then click Use Currently Loaded ROM to let DeSmuME fill in this information for you.)
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{17, 347}, {77, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Serial:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{17, 377}, {78, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Name:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 266
+ {{100, 345}, {256, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 266
+ {{100, 375}, {256, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 265
+ {{358, 370}, {209, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Use Currently Loaded ROM
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 288
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Continue
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+ {580, 567}
+ NSView
+
+
+
+ 268
+
+ YES
+
+
+ 1292
+ {{363, 339}, {32, 32}}
+
+ 28682
+ 100
+
+
+
+ 265
+ {{396, 343}, {168, 28}}
+
+ YES
+
+ 69206017
+ 272764928
+ TmFtZToKU2VyaWFsOg
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 265
+
+ YES
+
+ YES
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ NSFilenamesPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+
+
+ {{364, 341}, {30, 30}}
+
+ YES
+
+ 134217728
+ 33554432
+
+ 0
+ 3
+ 0
+ NO
+
+ NO
+ YES
+
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 2322
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {{0, 18}, {524, 80}}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 524
+ 1
+
+
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 6
+ {531, 10000000}
+
+
+
+ {{1, 1}, {524, 80}}
+
+
+
+
+
+ 4
+
+
+
+ 256
+ {{525, 1}, {15, 80}}
+
+ NO
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 61}, {541, 82}}
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 2322
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {{0, 6}, {523, 80}}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 523
+ 1
+
+
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 6
+ {523, 10000000}
+
+
+
+ {{1, 1}, {523, 80}}
+
+
+
+
+
+ 4
+
+
+
+ 256
+ {{524, 1}, {15, 80}}
+
+ NO
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 167}, {540, 82}}
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+ 288
+ {{125, 16}, {438, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ And that's it! Click Continue to review your information before submitting it to the DeSmuME team.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 34
+ {{12, 50}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 256
+ {{17, 145}, {206, 14}}
+
+ YES
+
+ 68157504
+ 272761856
+ Expected Behavior:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 256
+ {{17, 251}, {206, 14}}
+
+ YES
+
+ 68157504
+ 272761856
+ Observed Behavior:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 273}, {546, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ In the fields below, give us specific details on what you OBSERVED happened, and then what you EXPECTED to happen.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 309}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us what is happening.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 10
+ {{12, 332}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 269
+ {{17, 489}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Think you just spotted a bug with DeSmuME? Be sure to let us know! Just fill out this form and DeSmuME will prepare all the troubleshooting information for you to send to the DeSmuME team. This information will help us respond to your bug report quicker and easier.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 539}, {546, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ DeSmuME Bug Report Form
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 10
+ {{12, 478}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 269
+ {{17, 455}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us about the ROM.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 269
+ {{17, 405}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ If your bug is related to a specific ROM, enter its name and serial in the fields below. Otherwise, you may leave these fields blank. (It may be easier to load the ROM first, then click Use Currently Loaded ROM to let DeSmuME fill in this information for you.)
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{17, 347}, {77, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Serial:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{17, 377}, {78, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Name:
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 266
+ {{100, 345}, {255, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 266
+ {{100, 375}, {255, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 1
+
+
+
+ 265
+ {{358, 370}, {209, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Use Currently Loaded ROM
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 288
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Continue
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+ {580, 567}
+ NSView
+
+
+
+ 268
+
+ YES
+
+
+ 268
+ {{342, 55}, {224, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Copy Info to Clipboard
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{17, 52}, {326, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Please copy-paste the above information into our tech support webpage. This will ensure the fastest response time from us.
+
+
+
+
+
+ NO
+ 1
+
+
+
+ 268
+ {{342, 12}, {224, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Go to Tech Support Webpage
+
+
+ -2038284288
+ 129
+
+ DQ
+ 200
+ 25
+
+ NO
+
+
+
+ 268
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Back
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 2322
+ {538, 443}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 538
+ 1
+
+
+ 100665601
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 0
+
+ 6
+ {597, 10000000}
+
+
+
+ {{1, 1}, {538, 443}}
+
+
+
+
+
+ 4
+
+
+
+ 256
+ {{523, 1}, {16, 443}}
+
+ NO
+
+ _doScroller:
+ 1
+ 0.85256409645080566
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 102}, {540, 445}}
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+ {580, 567}
+ NSView
+
+
+ TroubleshootingWindowDelegate
+
+
+
+ YES
+ readMePath
+ licensePath
+ authorsPath
+ changeLogPath
+ descriptionString
+ buildInfoString
+ aboutTextFilesFont
+
+ YES
+
+
+
+
+ YES
+ isSpeedLimitEnabled
+ isCheatingEnabled
+ speedScalar
+ isFrameSkipEnabled
+ emuFlagAdvancedBusLevelTiming
+ emuFlagUseExternalBios
+ emuFlagEmulateBiosInterrupts
+ emuFlagPatchDelayLoop
+ emuFlagUseExternalFirmware
+ emuFlagFirmwareBoot
+ emuFlagDebugConsole
+ emuFlagEmulateEnsata
+ cpuEmulationEngine
+ emuFlagRigorousTiming
+ slot1StatusText
+ slot1DeviceType
+ maxJITBlockSize
+ cdsGPU.layerMainGPU
+ cdsGPU.layerMainBG0
+ cdsGPU.layerMainBG1
+ cdsGPU.layerMainBG2
+ cdsGPU.layerMainBG3
+ cdsGPU.layerMainOBJ
+ cdsGPU.layerSubGPU
+ cdsGPU.layerSubBG0
+ cdsGPU.layerSubBG1
+ cdsGPU.layerSubBG2
+ cdsGPU.layerSubBG3
+ cdsGPU.layerSubOBJ
+ coreState
+ frameStatus
+ executionSpeedStatus
+ cdsGPU.render3DRenderingEngine
+ cdsGPU.render3DTextures
+ cdsGPU.render3DHighPrecisionColorInterpolation
+ cdsGPU.render3DEdgeMarking
+ cdsGPU.render3DFog
+ cdsGPU.render3DLineHack
+ cdsGPU.render3DDepthComparisonThreshold
+ cdsGPU.render3DMultisample
+ cdsGPU.render3DThreads
+ cdsGPU.render3DFragmentSamplingHack
+ isGdbStubStarted
+ enableGdbStubARM9
+ enableGdbStubARM7
+ gdbStubPortARM9
+ gdbStubPortARM7
+ isInDebugTrap
+
+ CocoaDSCore
+
+
+
+
+ YES
+ spuInterpolationMode
+ spuSyncMode
+ spuSyncMethod
+ spuAdvancedLogic
+ volume
+ audioOutputEngine
+
+ YES
+
+
+
+
+ YES
+ isWorking
+ isRomLoading
+ statusText
+ currentVolumeValue
+ currentVolumeIcon
+ isShowingSaveStateDialog
+ isShowingFileMigrationDialog
+ isUserInterfaceBlockingExecution
+ currentSaveStateURL
+ selectedRomSaveTypeID
+ currentRom
+ mainWindow
+ mainWindow.displayRotation
+ mainWindow.videoFilterType
+ mainWindow.useBilinearOutput
+ mainWindow.useVerticalSync
+ mainWindow.screenshotFileFormat
+ selectedExportRomSaveID
+ mainWindow.displayGap
+ frameJumpType
+ frameJumpFramesForward
+ frameJumpToFrame
+ mainWindow.outputFilter
+ mainWindow.videoSourceDeposterize
+ mainWindow.videoFiltersPreferGPU
+ mainWindow.view.videoSourceDeposterize
+ mainWindow.view.outputFilter
+ mainWindow.view.sourceDeposterize
+ mainWindow.view.srcDeposterize
+ mainWindow.view.videoFilterType
+ mainWindow.view.pixelScaler
+ mainWindow.view.videoFiltersPreferGPU
+ mainWindow.view.useVerticalSync
+ mainWindow.videoOutputFilter
+ mainWindow.videoPixelScaler
+ mainWindow.view.canUseShaderBasedFilters
+
+ EmuControllerDelegate
+
+
+
+
+ YES
+ hasSelection
+ hasItems
+ cheatList
+ cheatSearchStyle
+ cheatSearchSignType
+ cheatSearchSearchValue
+ cheatSearchAddressCount
+ isRunningSearch
+ isSearchStarted
+ cheatDBTitle
+ cheatDBItemCount
+ cheatDBDate
+
+ YES
+
+
+
+
+ YES
+ Input_Up
+ Input_Down
+ Input_Left
+ Input_Right
+ Input_A
+ Input_B
+ Input_X
+ Input_Y
+ Input_L
+ Input_R
+ Input_Start
+ Input_Select
+ Input_Microphone
+ Input_Lid
+ Input_Debug
+ Input_SpeedHalf
+ Input_SpeedDouble
+ Input_HUD
+ Input_Execute
+ Input_Pause
+ Input_Reset
+ Arm7BiosImageName
+ Arm9BiosImageName
+ FirmwareImageName
+ AutoloadRomName
+ VideoFilterPreviewImage
+ volumeIconImage
+ R4CheatDatabaseName
+ AdvansceneDatabaseName
+
+ YES
+
+
+
+
+ YES
+ romName
+ romSerial
+ supportRequestText
+ bugReportObservedText
+ bugReportExpectedText
+ finalFormText
+ goWebpageButtonTitle
+ copyPasteHelpText
+
+
+
+
+
+ YES
+ nickname
+ message
+ favoriteColor
+ birthday
+ language
+ consoleType
+
+ CocoaDSFirmware
+
+
+
+
+ YES
+ gameTitle
+ gameCode
+ makerCode
+ cardSize
+ bannerJapanese
+ bannerEnglish
+ bannerFrench
+ bannerGerman
+ bannerItalian
+ bannerSpanish
+ fntOffset
+ fntTableSize
+ fatOffset
+ fatSize
+ iconOffset
+ romSize
+ iconImage
+ arm9BinaryOffset
+ arm9BinaryEntryAddress
+ arm9BinaryStartAddress
+ arm9BinarySize
+ arm7BinaryOffset
+ arm7BinaryEntryAddress
+ arm7BinaryStartAddress
+ arm7BinarySize
+ romInternalName
+ romSerial
+ romNameAndSerialInfo
+ gameDeveloper
+ gameDeveloperWithCode
+
+
+
+
+
+ YES
+ enabled
+ cheatType
+ description
+ cheatTypeIcon
+ isSupportedCheatType
+ freezeType
+ codeCount
+ bytes
+ memAddress
+ value
+ code
+ memAddressString
+ memAddressSixDigitString
+
+ CocoaDSCheatItem
+ YES
+
+
+
+
+ YES
+ Name
+ IsDefaultType
+ Mappings
+
+ YES
+
+
+
+
+ YES
+ intValue0
+ intValue1
+ intValue2
+ intValue3
+ floatValue0
+ floatValue1
+ floatValue2
+ floatValue3
+ object0
+ object1
+ object2
+ object3
+ useInputForIntCoord
+ useInputForFloatCoord
+ useInputForScalar
+ useInputForSender
+ deviceInfoSummary
+ isInputAnalog
+
+ YES
+
+
+
+
+ YES
+ version
+ kind
+ name
+ dateModified
+ willMigrate
+
+
+ YES
+ YES
+ YES
+ YES
+ YES
+
+
+
+ YES
+ enabled
+ cheatTypeIcon
+ description
+ cheatType
+
+ CocoaDSCheatItem
+ YES
+
+ YES
+ YES
+ YES
+ YES
+ YES
+
+
+
+ YES
+ value
+ addressString
+
+
+ YES
+
+
+
+ YES
+ willAdd
+ description
+
+ YES
+
+ YES
+
+
+
+ YES
+ slot2StatusText
+ autoSelectedDeviceText
+ mpcfFolderName
+ mpcfFolderPath
+ mpcfDiskImageName
+ mpcfDiskImagePath
+ gbaCartridgeName
+ gbaCartridgePath
+ deviceManager.slot2StatusText
+ gbaSRamName
+ gbaSRamPath
+
+ Slot2WindowDelegate
+ YES
+
+
+
+
+ YES
+ name
+ description
+ deviceID
+ type
+ enabled
+
+ CocoaSlot2Device
+ YES
+
+ YES
+ YES
+ YES
+
+
+
+ YES
+ supportsForceFeedback
+ isForceFeedbackEnabled
+ manufacturerName
+ productName
+ serialNumber
+
+ InputHIDDevice
+ YES
+
+ YES
+ YES
+ YES
+
+
+ YES
+
+
+
+
+ YES
+
+
+ performMiniaturize:
+
+
+
+ 37
+
+
+
+ arrangeInFront:
+
+
+
+ 39
+
+
+
+ clearRecentDocuments:
+
+
+
+ 127
+
+
+
+ performZoom:
+
+
+
+ 240
+
+
+
+ hide:
+
+
+
+ 367
+
+
+
+ hideOtherApplications:
+
+
+
+ 368
+
+
+
+ unhideAllApplications:
+
+
+
+ 370
+
+
+
+ terminate:
+
+
+
+ 449
+
+
+
+ showHelp:
+
+
+
+ 493
+
+
+
+ delegate
+
+
+
+ 495
+
+
+
+ contentView
+
+
+
+ 718
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 782
+
+
+
+ launchWebsite:
+
+
+
+ 1101
+
+
+
+ launchForums:
+
+
+
+ 1102
+
+
+
+ bugReport:
+
+
+
+ 1103
+
+
+
+ window
+
+
+
+ 1689
+
+
+
+ viewDisplay
+
+
+
+ 1690
+
+
+
+ viewGeneral
+
+
+
+ 1691
+
+
+
+ mLoadStateSlot
+
+
+
+ 1775
+
+
+
+ mSaveStateSlot
+
+
+
+ 1776
+
+
+
+ delegate
+
+
+
+ 2025
+
+
+
+ prefGeneralView
+
+
+
+ 2093
+
+
+
+ prefWindow
+
+
+
+ 2094
+
+
+
+ viewSound
+
+
+
+ 2251
+
+
+
+ updateVolumeIcon:
+
+
+
+ 2268
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2310
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2311
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2312
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2313
+
+
+
+ delegate
+
+
+
+ 2314
+
+
+
+ displayRotationField
+
+
+
+ 2315
+
+
+
+ displayRotationMenu
+
+
+
+ 2316
+
+
+
+ displayRotationMenuCustomItem
+
+
+
+ 2317
+
+
+
+ viewEmulation
+
+
+
+ 2380
+
+
+
+ selectSPUSyncMode:
+
+
+
+ 2451
+
+
+
+ selectSPUSyncMode:
+
+
+
+ 2452
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2453
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2454
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2455
+
+
+
+ spuSyncMethodMenu
+
+
+
+ 2456
+
+
+
+ chooseFirmwareImage:
+
+
+
+ 2575
+
+
+
+ chooseARM7BiosImage:
+
+
+
+ 2587
+
+
+
+ chooseARM9BiosImage:
+
+
+
+ 2588
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 2611
+
+
+
+ value: arrangedObjects.name
+
+
+
+
+
+ value: arrangedObjects.name
+ value
+ arrangedObjects.name
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSCreatesSortDescriptor
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 2928
+
+
+
+ value: arrangedObjects.version
+
+
+
+
+
+ value: arrangedObjects.version
+ value
+ arrangedObjects.version
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSCreatesSortDescriptor
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 2937
+
+
+
+ value: arrangedObjects.kind
+
+
+
+
+
+ value: arrangedObjects.kind
+ value
+ arrangedObjects.kind
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSCreatesSortDescriptor
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 2943
+
+
+
+ value: arrangedObjects.dateModified
+
+
+
+
+
+ value: arrangedObjects.dateModified
+ value
+ arrangedObjects.dateModified
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSCreatesSortDescriptor
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 2953
+
+
+
+ value: arrangedObjects.willMigrate
+
+
+
+
+
+ value: arrangedObjects.willMigrate
+ value
+ arrangedObjects.willMigrate
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSCreatesSortDescriptor
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 3044
+
+
+
+ cut:
+
+
+
+ 3252
+
+
+
+ paste:
+
+
+
+ 3257
+
+
+
+ redo:
+
+
+
+ 3266
+
+
+
+ delete:
+
+
+
+ 3267
+
+
+
+ selectAll:
+
+
+
+ 3270
+
+
+
+ undo:
+
+
+
+ 3272
+
+
+
+ prefWindowController
+
+
+
+ 3532
+
+
+
+ value: selection.FirmwareImageName
+
+
+
+
+
+ value: selection.FirmwareImageName
+ value
+ selection.FirmwareImageName
+ 2
+
+
+ 3561
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 3792
+
+
+
+ value: values.Render3D_HighPrecisionColorInterpolation
+
+
+
+
+
+ value: values.Render3D_HighPrecisionColorInterpolation
+ value
+ values.Render3D_HighPrecisionColorInterpolation
+ 2
+
+
+ 3830
+
+
+
+ value: values.Render3D_Fog
+
+
+
+
+
+ value: values.Render3D_Fog
+ value
+ values.Render3D_Fog
+ 2
+
+
+ 3832
+
+
+
+ value: values.Render3D_Textures
+
+
+
+
+
+ value: values.Render3D_Textures
+ value
+ values.Render3D_Textures
+ 2
+
+
+ 3833
+
+
+
+ value: values.Render3D_DepthComparisonThreshold
+
+
+
+
+
+ value: values.Render3D_DepthComparisonThreshold
+ value
+ values.Render3D_DepthComparisonThreshold
+ 2
+
+
+ 3834
+
+
+
+ value: values.Render3D_EdgeMarking
+
+
+
+
+
+ value: values.Render3D_EdgeMarking
+ value
+ values.Render3D_EdgeMarking
+ 2
+
+
+ 3836
+
+
+
+ selectedTag: values.Render3D_Threads
+
+
+
+
+
+ selectedTag: values.Render3D_Threads
+ selectedTag
+ values.Render3D_Threads
+ 2
+
+
+ 3895
+
+
+
+ value: values.Render3D_LineHack
+
+
+
+
+
+ value: values.Render3D_LineHack
+ value
+ values.Render3D_LineHack
+ 2
+
+
+ 3902
+
+
+
+ boxARMBinaries
+
+
+
+ 3954
+
+
+
+ boxFileSystem
+
+
+
+ 3955
+
+
+
+ boxGeneralInfo
+
+
+
+ 3956
+
+
+
+ boxMisc
+
+
+
+ 3957
+
+
+
+ boxTitles
+
+
+
+ 3958
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 3964
+
+
+
+ value: selection.Arm9BiosImageName
+
+
+
+
+
+ value: selection.Arm9BiosImageName
+ value
+ selection.Arm9BiosImageName
+ 2
+
+
+ 4025
+
+
+
+ value: selection.Arm7BiosImageName
+
+
+
+
+
+ value: selection.Arm7BiosImageName
+ value
+ selection.Arm7BiosImageName
+ 2
+
+
+ 4026
+
+
+
+ contentView
+
+
+
+ 4057
+
+
+
+ parentWindow
+
+
+
+ 4058
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4063
+
+
+
+ toggle:
+
+
+
+ 4068
+
+
+
+ value: values.SPU_AdvancedLogic
+
+
+
+
+
+ value: values.SPU_AdvancedLogic
+ value
+ values.SPU_AdvancedLogic
+ 2
+
+
+ 4137
+
+
+
+ selectedTag: values.SPU_InterpolationMode
+
+
+
+
+
+ selectedTag: values.SPU_InterpolationMode
+ selectedTag
+ values.SPU_InterpolationMode
+ 2
+
+
+ 4138
+
+
+
+ selectedTag: values.SPU_SyncMode
+
+
+
+
+
+ selectedTag: values.SPU_SyncMode
+ selectedTag
+ values.SPU_SyncMode
+ 2
+
+
+ 4139
+
+
+
+ selectedTag: values.SPU_SyncMethod
+
+
+
+
+
+ selectedTag: values.SPU_SyncMethod
+ selectedTag
+ values.SPU_SyncMethod
+ 2
+
+
+ 4140
+
+
+
+ value: selection.emuFlagAdvancedBusLevelTiming
+
+
+
+
+
+ value: selection.emuFlagAdvancedBusLevelTiming
+ value
+ selection.emuFlagAdvancedBusLevelTiming
+ 2
+
+
+ 4141
+
+
+
+ value: selection.emuFlagUseExternalBios
+
+
+
+
+
+ value: selection.emuFlagUseExternalBios
+ value
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4142
+
+
+
+ value: selection.emuFlagEmulateBiosInterrupts
+
+
+
+
+
+ value: selection.emuFlagEmulateBiosInterrupts
+ value
+ selection.emuFlagEmulateBiosInterrupts
+ 2
+
+
+ 4143
+
+
+
+ value: selection.emuFlagPatchDelayLoop
+
+
+
+
+
+ value: selection.emuFlagPatchDelayLoop
+ value
+ selection.emuFlagPatchDelayLoop
+ 2
+
+
+ 4145
+
+
+
+ value: selection.emuFlagUseExternalFirmware
+
+
+
+
+
+ value: selection.emuFlagUseExternalFirmware
+ value
+ selection.emuFlagUseExternalFirmware
+ 2
+
+
+ 4146
+
+
+
+ value: selection.emuFlagFirmwareBoot
+
+
+
+
+
+ value: selection.emuFlagFirmwareBoot
+ value
+ selection.emuFlagFirmwareBoot
+ 2
+
+
+ 4147
+
+
+
+ value: selection.emuFlagDebugConsole
+
+
+
+
+
+ value: selection.emuFlagDebugConsole
+ value
+ selection.emuFlagDebugConsole
+ 2
+
+
+ 4148
+
+
+
+ value: selection.emuFlagEmulateEnsata
+
+
+
+
+
+ value: selection.emuFlagEmulateEnsata
+ value
+ selection.emuFlagEmulateEnsata
+ 2
+
+
+ 4149
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+ enabled
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4150
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+ enabled
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4151
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4280
+
+
+
+ firmwareConfigSheet
+
+
+
+ 4466
+
+
+
+ configureInternalFirmware:
+
+
+
+ 4467
+
+
+
+ closeFirmwareConfigSheet:
+
+
+
+ 4468
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4638
+
+
+
+ value: selection.isCheatingEnabled
+
+
+
+
+
+ value: selection.isCheatingEnabled
+ value
+ selection.isCheatingEnabled
+ 2
+
+
+ 4648
+
+
+
+ window
+
+
+
+ 4699
+
+
+
+ delegate
+
+
+
+ 4700
+
+
+
+ viewConfigureActionReplayCheat
+
+
+
+ 4702
+
+
+
+ viewConfigureInternalCheat
+
+
+
+ 4703
+
+
+
+ cheatConfigBox
+
+
+
+ 4709
+
+
+
+ delegate
+
+
+
+ 4716
+
+
+
+ cheatSelectedItemController
+
+
+
+ 4717
+
+
+
+ selectCheatType:
+
+
+
+ 4718
+
+
+
+ selectCheatType:
+
+
+
+ 4719
+
+
+
+ addToList:
+
+
+
+ 4721
+
+
+
+ applyConfiguration:
+
+
+
+ 4722
+
+
+
+ cheatListTable
+
+
+
+ 4728
+
+
+
+ removeFromList:
+
+
+
+ 4730
+
+
+
+ cheatWindowController
+
+
+
+ 4735
+
+
+
+ viewConfigureNoSelection
+
+
+
+ 4747
+
+
+
+ viewConfigureCodeBreakerCheat
+
+
+
+ 4748
+
+
+
+ cheatListController
+
+
+
+ 4755
+
+
+
+ parentWindow
+
+
+
+ 4791
+
+
+
+ toggle:
+
+
+
+ 4819
+
+
+
+ cheatSearchListController
+
+
+
+ 4922
+
+
+
+ runExactValueSearch:
+
+
+
+ 4928
+
+
+
+ runComparativeSearch:
+
+
+
+ 4929
+
+
+
+ runComparativeSearch:
+
+
+
+ 4930
+
+
+
+ runComparativeSearch:
+
+
+
+ 4931
+
+
+
+ runComparativeSearch:
+
+
+
+ 4932
+
+
+
+ selectCheatSearchStyle:
+
+
+
+ 4933
+
+
+
+ selectCheatSearchStyle:
+
+
+
+ 4934
+
+
+
+ viewSearchComparativeContinue
+
+
+
+ 4936
+
+
+
+ viewSearchComparativeStart
+
+
+
+ 4937
+
+
+
+ viewSearchExactValue
+
+
+
+ 4938
+
+
+
+ viewSearchNoSelection
+
+
+
+ 4939
+
+
+
+ cheatSearchView
+
+
+
+ 4940
+
+
+
+ resetSearch:
+
+
+
+ 4941
+
+
+
+ runComparativeSearch:
+
+
+
+ 4943
+
+
+
+ searchField
+
+
+
+ 4944
+
+
+
+ cheatSearchListTable
+
+
+
+ 4945
+
+
+
+ delegate
+
+
+
+ 4946
+
+
+
+ cdsCoreController
+
+
+
+ 4955
+
+
+
+ setInternalCheatValue:
+
+
+
+ 5070
+
+
+
+ value: selection.R4CheatDatabaseName
+
+
+
+
+
+ value: selection.R4CheatDatabaseName
+ value
+ selection.R4CheatDatabaseName
+ 2
+
+
+ 5073
+
+
+
+ chooseCheatDatabase:
+
+
+
+ 5078
+
+
+
+ viewDatabase:
+
+
+
+ 5079
+
+
+
+ cheatDatabaseSheet
+
+
+
+ 5108
+
+
+
+ closeCheatDatabaseSheet:
+
+
+
+ 5109
+
+
+
+ closeCheatDatabaseSheet:
+
+
+
+ 5110
+
+
+
+ cheatDatabaseController
+
+
+
+ 5119
+
+
+
+ selectAllCheatsInDatabase:
+
+
+
+ 5122
+
+
+
+ selectNoneCheatsInDatabase:
+
+
+
+ 5123
+
+
+
+ cheatWindowController
+
+
+
+ 5143
+
+
+
+ cheatDatabaseController
+
+
+
+ 5145
+
+
+
+ cheatListWindow
+
+
+
+ 5146
+
+
+
+ cheatWindowController
+
+
+
+ 5147
+
+
+
+ prefWindowController
+
+
+
+ 5149
+
+
+
+ cdsCoreController
+
+
+
+ 5150
+
+
+
+ value: selection.AdvansceneDatabaseName
+
+
+
+
+
+ value: selection.AdvansceneDatabaseName
+ value
+ selection.AdvansceneDatabaseName
+ 2
+
+
+ 5182
+
+
+
+ chooseAdvansceneDatabase:
+
+
+
+ 5183
+
+
+
+ value: selection.nickname
+
+
+
+
+
+ value: selection.nickname
+ value
+ selection.nickname
+ 2
+
+
+ 5478
+
+
+
+ value: selection.message
+
+
+
+
+
+ value: selection.message
+ value
+ selection.message
+ 2
+
+
+ 5479
+
+
+
+ selectedTag: selection.favoriteColor
+
+
+
+
+
+ selectedTag: selection.favoriteColor
+ selectedTag
+ selection.favoriteColor
+ 2
+
+
+ 5480
+
+
+
+ value: selection.birthday
+
+
+
+
+
+ value: selection.birthday
+ value
+ selection.birthday
+ 2
+
+
+ 5481
+
+
+
+ selectedTag: selection.language
+
+
+
+
+
+ selectedTag: selection.language
+ selectedTag
+ selection.language
+ 2
+
+
+ 5482
+
+
+
+ value: selection.value
+
+
+
+
+
+ value: selection.value
+ value
+ selection.value
+ 2
+
+
+ 5484
+
+
+
+ selectedTag: selection.bytes
+
+
+
+
+
+ selectedTag: selection.bytes
+ selectedTag
+ selection.bytes
+ 2
+
+
+ 5485
+
+
+
+ value: selection.code
+
+
+
+
+
+ value: selection.code
+ value
+ selection.code
+ 2
+
+
+ 5486
+
+
+
+ selectedTag: selection.cheatType
+
+
+
+
+
+ selectedTag: selection.cheatType
+ selectedTag
+ selection.cheatType
+ 2
+
+
+ 5487
+
+
+
+ value: selection.description
+
+
+
+
+
+ value: selection.description
+ value
+ selection.description
+ 2
+
+
+ 5488
+
+
+
+ value: selection.enabled
+
+
+
+
+
+ value: selection.enabled
+ value
+ selection.enabled
+ 2
+
+
+ 5489
+
+
+
+ enabled: selection.value
+
+
+
+
+
+ enabled: selection.value
+ enabled
+ selection.value
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 5490
+
+
+
+ value: arrangedObjects.enabled
+
+
+
+
+
+ value: arrangedObjects.enabled
+ value
+ arrangedObjects.enabled
+ 2
+
+
+ 5493
+
+
+
+ value: arrangedObjects.cheatTypeIcon
+
+
+
+
+
+ value: arrangedObjects.cheatTypeIcon
+ value
+ arrangedObjects.cheatTypeIcon
+ 2
+
+
+ 5494
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+ 2
+
+
+ 5495
+
+
+
+ value: arrangedObjects.willAdd
+
+
+
+
+
+ value: arrangedObjects.willAdd
+ value
+ arrangedObjects.willAdd
+ 2
+
+
+ 5497
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 5498
+
+
+
+ value: selection.memAddressSixDigitString
+
+
+
+
+
+ value: selection.memAddressSixDigitString
+ value
+ selection.memAddressSixDigitString
+ 2
+
+
+ 5499
+
+
+
+ value: selection.volumeIconImage
+
+
+
+
+
+ value: selection.volumeIconImage
+ value
+ selection.volumeIconImage
+ 2
+
+
+ 5525
+
+
+
+ value: arrangedObjects.addressString
+
+
+
+
+
+ value: arrangedObjects.addressString
+ value
+ arrangedObjects.addressString
+ 2
+
+
+ 5566
+
+
+
+ value: arrangedObjects.value
+
+
+
+
+
+ value: arrangedObjects.value
+ value
+ arrangedObjects.value
+ 2
+
+
+ 5567
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 5580
+
+
+
+ value: selection.romSize
+
+
+
+
+
+ value: selection.romSize
+ value
+ selection.romSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5584
+
+
+
+ value: selection.bannerJapanese
+
+
+
+
+
+ value: selection.bannerJapanese
+ value
+ selection.bannerJapanese
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5585
+
+
+
+ value: selection.bannerEnglish
+
+
+
+
+
+ value: selection.bannerEnglish
+ value
+ selection.bannerEnglish
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5586
+
+
+
+ value: selection.bannerFrench
+
+
+
+
+
+ value: selection.bannerFrench
+ value
+ selection.bannerFrench
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5587
+
+
+
+ value: selection.bannerGerman
+
+
+
+
+
+ value: selection.bannerGerman
+ value
+ selection.bannerGerman
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5588
+
+
+
+ value: selection.bannerItalian
+
+
+
+
+
+ value: selection.bannerItalian
+ value
+ selection.bannerItalian
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5589
+
+
+
+ value: selection.bannerSpanish
+
+
+
+
+
+ value: selection.bannerSpanish
+ value
+ selection.bannerSpanish
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5590
+
+
+
+ value: selection.arm9BinaryOffset
+
+
+
+
+
+ value: selection.arm9BinaryOffset
+ value
+ selection.arm9BinaryOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5591
+
+
+
+ value: selection.arm9BinaryEntryAddress
+
+
+
+
+
+ value: selection.arm9BinaryEntryAddress
+ value
+ selection.arm9BinaryEntryAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5592
+
+
+
+ value: selection.arm9BinaryStartAddress
+
+
+
+
+
+ value: selection.arm9BinaryStartAddress
+ value
+ selection.arm9BinaryStartAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5593
+
+
+
+ value: selection.arm9BinarySize
+
+
+
+
+
+ value: selection.arm9BinarySize
+ value
+ selection.arm9BinarySize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5594
+
+
+
+ value: selection.arm7BinaryOffset
+
+
+
+
+
+ value: selection.arm7BinaryOffset
+ value
+ selection.arm7BinaryOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5595
+
+
+
+ value: selection.arm7BinaryEntryAddress
+
+
+
+
+
+ value: selection.arm7BinaryEntryAddress
+ value
+ selection.arm7BinaryEntryAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5596
+
+
+
+ value: selection.arm7BinaryStartAddress
+
+
+
+
+
+ value: selection.arm7BinaryStartAddress
+ value
+ selection.arm7BinaryStartAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5597
+
+
+
+ value: selection.arm7BinarySize
+
+
+
+
+
+ value: selection.arm7BinarySize
+ value
+ selection.arm7BinarySize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5598
+
+
+
+ value: selection.fntOffset
+
+
+
+
+
+ value: selection.fntOffset
+ value
+ selection.fntOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5599
+
+
+
+ value: selection.fntTableSize
+
+
+
+
+
+ value: selection.fntTableSize
+ value
+ selection.fntTableSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5600
+
+
+
+ value: selection.fatOffset
+
+
+
+
+
+ value: selection.fatOffset
+ value
+ selection.fatOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5601
+
+
+
+ value: selection.fatSize
+
+
+
+
+
+ value: selection.fatSize
+ value
+ selection.fatSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5602
+
+
+
+ value: selection.iconOffset
+
+
+
+
+
+ value: selection.iconOffset
+ value
+ selection.iconOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5603
+
+
+
+ value: selection.romSize
+
+
+
+
+
+ value: selection.romSize
+ value
+ selection.romSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5604
+
+
+
+ selectedTag: selection.audioOutputEngine
+
+
+
+
+
+ selectedTag: selection.audioOutputEngine
+ selectedTag
+ selection.audioOutputEngine
+ 2
+
+
+ 5608
+
+
+
+ value: selection.spuAdvancedLogic
+
+
+
+
+
+ value: selection.spuAdvancedLogic
+ value
+ selection.spuAdvancedLogic
+ 2
+
+
+ 5609
+
+
+
+ selectedTag: selection.spuInterpolationMode
+
+
+
+
+
+ selectedTag: selection.spuInterpolationMode
+ selectedTag
+ selection.spuInterpolationMode
+ 2
+
+
+ 5610
+
+
+
+ selectedTag: selection.spuSyncMode
+
+
+
+
+
+ selectedTag: selection.spuSyncMode
+ selectedTag
+ selection.spuSyncMode
+ 2
+
+
+ 5611
+
+
+
+ selectedTag: selection.spuSyncMethod
+
+
+
+
+
+ selectedTag: selection.spuSyncMethod
+ selectedTag
+ selection.spuSyncMethod
+ 2
+
+
+ 5612
+
+
+
+ value: selection.cheatDBTitle
+
+
+
+
+
+ value: selection.cheatDBTitle
+ value
+ selection.cheatDBTitle
+ 2
+
+
+ 5618
+
+
+
+ value: selection.cheatDBDate
+
+
+
+
+
+ value: selection.cheatDBDate
+ value
+ selection.cheatDBDate
+ 2
+
+
+ 5619
+
+
+
+ value: selection.cheatDBItemCount
+
+
+
+
+
+ value: selection.cheatDBItemCount
+ value
+ selection.cheatDBItemCount
+ 2
+
+
+ 5620
+
+
+
+ selectedTag: selection.cheatSearchStyle
+
+
+
+
+
+ selectedTag: selection.cheatSearchStyle
+ selectedTag
+ selection.cheatSearchStyle
+ 2
+
+
+ 5621
+
+
+
+ value: selection.cheatSearchAddressCount
+
+
+
+
+
+ value: selection.cheatSearchAddressCount
+ value
+ selection.cheatSearchAddressCount
+ 2
+
+
+ 5622
+
+
+
+ value: selection.cheatSearchSearchValue
+
+
+
+
+
+ value: selection.cheatSearchSearchValue
+ value
+ selection.cheatSearchSearchValue
+ 2
+
+
+ 5623
+
+
+
+ animate: selection.isRunningSearch
+
+
+
+
+
+ animate: selection.isRunningSearch
+ animate
+ selection.isRunningSearch
+ 2
+
+
+ 5626
+
+
+
+ enabled: selection.isRunningSearch
+
+
+
+
+
+ enabled: selection.isRunningSearch
+ enabled
+ selection.isRunningSearch
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 5627
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 5644
+
+
+
+ value: values.Advanscene_AutoDetectRomSaveType
+
+
+
+
+
+ value: values.Advanscene_AutoDetectRomSaveType
+ value
+ values.Advanscene_AutoDetectRomSaveType
+ 2
+
+
+ 5647
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 5720
+
+
+
+ aboutWindowController
+
+
+
+ 5721
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5722
+
+
+
+ value: selection.romInternalName
+
+
+
+
+
+ value: selection.romInternalName
+ value
+ selection.romInternalName
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5723
+
+
+
+ value: values.FirmwareConfig_Nickname
+
+
+
+
+
+ value: values.FirmwareConfig_Nickname
+ value
+ values.FirmwareConfig_Nickname
+ 2
+
+
+ 5729
+
+
+
+ value: values.FirmwareConfig_Message
+
+
+
+
+
+ value: values.FirmwareConfig_Message
+ value
+ values.FirmwareConfig_Message
+ 2
+
+
+ 5730
+
+
+
+ selectedTag: values.FirmwareConfig_FavoriteColor
+
+
+
+
+
+ selectedTag: values.FirmwareConfig_FavoriteColor
+ selectedTag
+ values.FirmwareConfig_FavoriteColor
+ 2
+
+
+ 5731
+
+
+
+ value: values.FirmwareConfig_Birthday
+
+
+
+
+
+ value: values.FirmwareConfig_Birthday
+ value
+ values.FirmwareConfig_Birthday
+ 2
+
+
+ 5732
+
+
+
+ selectedTag: values.FirmwareConfig_Language
+
+
+
+
+
+ selectedTag: values.FirmwareConfig_Language
+ selectedTag
+ values.FirmwareConfig_Language
+ 2
+
+
+ 5733
+
+
+
+ value: values.DisplayView_Rotation
+
+
+
+
+
+ value: values.DisplayView_Rotation
+ value
+ values.DisplayView_Rotation
+ 2
+
+
+ 5974
+
+
+
+ selectedTag: values.DisplayView_VideoFilter
+
+
+
+
+
+ selectedTag: values.DisplayView_VideoFilter
+ selectedTag
+ values.DisplayView_VideoFilter
+ 2
+
+
+ 5976
+
+
+
+ selectedTag: values.Sound_AudioOutputEngine
+
+
+
+
+
+ selectedTag: values.Sound_AudioOutputEngine
+ selectedTag
+ values.Sound_AudioOutputEngine
+ 2
+
+
+ 5989
+
+
+
+ value: values.Sound_Volume
+
+
+
+
+
+ value: values.Sound_Volume
+ value
+ values.Sound_Volume
+ 2
+
+
+ 5990
+
+
+
+ value: values.Sound_Volume
+
+
+
+
+
+ value: values.Sound_Volume
+ value
+ values.Sound_Volume
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5991
+
+
+
+ enabled: values.Advanscene_DatabasePath
+
+
+
+
+
+ enabled: values.Advanscene_DatabasePath
+ enabled
+ values.Advanscene_DatabasePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 5992
+
+
+
+ value: values.Emulation_AdvancedBusLevelTiming
+
+
+
+
+
+ value: values.Emulation_AdvancedBusLevelTiming
+ value
+ values.Emulation_AdvancedBusLevelTiming
+ 2
+
+
+ 5993
+
+
+
+ value: values.Emulation_BIOSEmulateSWI
+
+
+
+
+
+ value: values.Emulation_BIOSEmulateSWI
+ value
+ values.Emulation_BIOSEmulateSWI
+ 2
+
+
+ 5994
+
+
+
+ value: values.Emulation_BIOSPatchDelayLoopSWI
+
+
+
+
+
+ value: values.Emulation_BIOSPatchDelayLoopSWI
+ value
+ values.Emulation_BIOSPatchDelayLoopSWI
+ 2
+
+
+ 5995
+
+
+
+ value: values.Emulation_EmulateEnsata
+
+
+
+
+
+ value: values.Emulation_EmulateEnsata
+ value
+ values.Emulation_EmulateEnsata
+ 2
+
+
+ 5996
+
+
+
+ value: values.Emulation_UseDebugConsole
+
+
+
+
+
+ value: values.Emulation_UseDebugConsole
+ value
+ values.Emulation_UseDebugConsole
+ 2
+
+
+ 5998
+
+
+
+ value: values.Emulation_FirmwareBoot
+
+
+
+
+
+ value: values.Emulation_FirmwareBoot
+ value
+ values.Emulation_FirmwareBoot
+ 2
+
+
+ 5999
+
+
+
+ value: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ value: values.Emulation_UseExternalBIOSImages
+ value
+ values.Emulation_UseExternalBIOSImages
+ 2
+
+
+ 6000
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+ enabled
+ values.Emulation_UseExternalBIOSImages
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6001
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+ enabled
+ values.Emulation_UseExternalBIOSImages
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6004
+
+
+
+ value: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ value: values.Emulation_UseExternalFirmwareImage
+ value
+ values.Emulation_UseExternalFirmwareImage
+ 2
+
+
+ 6011
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+ enabled
+ values.Emulation_UseExternalFirmwareImage
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6012
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+ enabled
+ values.Emulation_UseExternalFirmwareImage
+ 2
+
+
+ 6013
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+ enabled2
+ values.Emulation_UseExternalBIOSImages
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6014
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+ enabled
+ values.BIOS_ARM9ImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6018
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6020
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6022
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6024
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+ enabled2
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6027
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6028
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6029
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6030
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+ enabled
+ values.Emulation_FirmwareImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6034
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+ enabled5
+ values.Emulation_FirmwareImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6037
+
+
+
+ enabled: selection.emuFlagUseExternalFirmware
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalFirmware
+ enabled
+ selection.emuFlagUseExternalFirmware
+ 2
+
+
+ 6041
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+ enabled2
+ selection.emuFlagUseExternalBios
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6042
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+ enabled
+ values.Emulation_FirmwareImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6048
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6058
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6067
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+ enabled5
+ values.Emulation_FirmwareImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6069
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6076
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6081
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6088
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6093
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+ enabled
+ values.BIOS_ARM9ImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6100
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+ enabled2
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6105
+
+
+
+ selectedTag: values.Render3D_RenderingEngine
+
+
+
+
+
+ selectedTag: values.Render3D_RenderingEngine
+ selectedTag
+ values.Render3D_RenderingEngine
+ 2
+
+
+ 6109
+
+
+
+ value: values.General_ExecuteROMOnLoad
+
+
+
+
+
+ value: values.General_ExecuteROMOnLoad
+ value
+ values.General_ExecuteROMOnLoad
+ 2
+
+
+ 6119
+
+
+
+ value: values.General_DoNotAskMigrate
+
+
+
+
+
+ value: values.General_DoNotAskMigrate
+ value
+ values.General_DoNotAskMigrate
+ 2
+
+
+ 6123
+
+
+
+ value: values.General_DoNotAskMigrate
+
+
+
+
+
+ value: values.General_DoNotAskMigrate
+ value
+ values.General_DoNotAskMigrate
+ 2
+
+
+ 6124
+
+
+
+ value: values.DisplayView_UseVerticalSync
+
+
+
+
+
+ value: values.DisplayView_UseVerticalSync
+ value
+ values.DisplayView_UseVerticalSync
+ 2
+
+
+ 6164
+
+
+
+ selectedTag: values.DisplayViewCombo_Orientation
+
+
+
+
+
+ selectedTag: values.DisplayViewCombo_Orientation
+ selectedTag
+ values.DisplayViewCombo_Orientation
+ 2
+
+
+ 6226
+
+
+
+ selectedTag: values.DisplayViewCombo_Order
+
+
+
+
+
+ selectedTag: values.DisplayViewCombo_Order
+ selectedTag
+ values.DisplayViewCombo_Order
+ 2
+
+
+ 6230
+
+
+
+ value: selection.buildInfoString
+
+
+
+
+
+ value: selection.buildInfoString
+ value
+ selection.buildInfoString
+ 2
+
+
+ 6231
+
+
+
+ value: selection.descriptionString
+
+
+
+
+
+ value: selection.descriptionString
+ value
+ selection.descriptionString
+ 2
+
+
+ 6232
+
+
+
+ troubleshootingWindowController
+
+
+
+ 6442
+
+
+
+ window
+
+
+
+ 6443
+
+
+
+ viewBugReport
+
+
+
+ 6444
+
+
+
+ viewFinishedForm
+
+
+
+ 6445
+
+
+
+ viewSupportRequest
+
+
+
+ 6446
+
+
+
+ troubleshootingWindow
+
+
+
+ 6449
+
+
+
+ delegate
+
+
+
+ 6450
+
+
+
+ supportRequest:
+
+
+
+ 6452
+
+
+
+ title: selection.goWebpageButtonTitle
+
+
+
+
+
+ title: selection.goWebpageButtonTitle
+ title
+ selection.goWebpageButtonTitle
+ 2
+
+
+ 6457
+
+
+
+ value: selection.romName
+
+
+
+
+
+ value: selection.romName
+ value
+ selection.romName
+ 2
+
+
+ 6459
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+ 2
+
+
+ 6460
+
+
+
+ value: selection.romName
+
+
+
+
+
+ value: selection.romName
+ value
+ selection.romName
+ 2
+
+
+ 6463
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+ 2
+
+
+ 6464
+
+
+
+ romInfoController
+
+
+
+ 6467
+
+
+
+ continueToFinalForm:
+
+
+
+ 6468
+
+
+
+ continueToFinalForm:
+
+
+
+ 6469
+
+
+
+ copyRomInfoToTextFields:
+
+
+
+ 6470
+
+
+
+ copyRomInfoToTextFields:
+
+
+
+ 6471
+
+
+
+ backForm:
+
+
+
+ 6472
+
+
+
+ value: selection.bugReportObservedText
+
+
+
+
+
+ value: selection.bugReportObservedText
+ value
+ selection.bugReportObservedText
+ 2
+
+
+ 6490
+
+
+
+ value: selection.bugReportExpectedText
+
+
+
+
+
+ value: selection.bugReportExpectedText
+ value
+ selection.bugReportExpectedText
+ 2
+
+
+ 6495
+
+
+
+ value: selection.supportRequestText
+
+
+
+
+
+ value: selection.supportRequestText
+ value
+ selection.supportRequestText
+ 2
+
+
+ 6500
+
+
+
+ value: selection.finalFormText
+
+
+
+
+
+ value: selection.finalFormText
+ value
+ selection.finalFormText
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 6507
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6589
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6593
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6594
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6595
+
+
+
+ valuePath: selection.readMePath
+
+
+
+
+
+ valuePath: selection.readMePath
+ valuePath
+ selection.readMePath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6598
+
+
+
+ valuePath: selection.licensePath
+
+
+
+
+
+ valuePath: selection.licensePath
+ valuePath
+ selection.licensePath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6601
+
+
+
+ valuePath: selection.authorsPath
+
+
+
+
+
+ valuePath: selection.authorsPath
+ valuePath
+ selection.authorsPath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6604
+
+
+
+ valuePath: selection.changeLogPath
+
+
+
+
+
+ valuePath: selection.changeLogPath
+ valuePath
+ selection.changeLogPath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6610
+
+
+
+ copyInfoToPasteboard:
+
+
+
+ 6613
+
+
+
+ goToWebpage:
+
+
+
+ 6614
+
+
+
+ value: selection.copyPasteHelpText
+
+
+
+
+
+ value: selection.copyPasteHelpText
+ value
+ selection.copyPasteHelpText
+
+ NSAllowsEditingMultipleValuesSelection
+
+
+ 2
+
+
+ 6616
+
+
+
+ value: values.Render3D_Multisample
+
+
+
+
+
+ value: values.Render3D_Multisample
+ value
+ values.Render3D_Multisample
+ 2
+
+
+ 6625
+
+
+
+ value: values.Emulation_RigorousTiming
+
+
+
+
+
+ value: values.Emulation_RigorousTiming
+ value
+ values.Emulation_RigorousTiming
+ 2
+
+
+ 6629
+
+
+
+ value: selection.emuFlagRigorousTiming
+
+
+
+
+
+ value: selection.emuFlagRigorousTiming
+ value
+ selection.emuFlagRigorousTiming
+ 2
+
+
+ 6632
+
+
+
+ cdsCoreController
+
+
+
+ 6655
+
+
+
+ cdsSoundController
+
+
+
+ 6656
+
+
+
+ cheatDatabaseController
+
+
+
+ 6657
+
+
+
+ cheatListController
+
+
+
+ 6658
+
+
+
+ cheatWindowController
+
+
+
+ 6659
+
+
+
+ cheatWindowDelegate
+
+
+
+ 6660
+
+
+
+ exportRomSavePanelAccessoryView
+
+
+
+ 6661
+
+
+
+ firmwarePanelController
+
+
+
+ 6662
+
+
+
+ romInfoPanelController
+
+
+
+ 6663
+
+
+
+ changeAudioEngine:
+
+
+
+ 6680
+
+
+
+ changeAudioEngine:
+
+
+
+ 6681
+
+
+
+ changeSpuAdvancedLogic:
+
+
+
+ 6682
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6683
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6684
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6685
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6686
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6687
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6688
+
+
+
+ changeSpuSyncMode:
+
+
+
+ 6689
+
+
+
+ changeSpuSyncMode:
+
+
+
+ 6690
+
+
+
+ changeVolume:
+
+
+
+ 6691
+
+
+
+ writeDefaults3DRenderingSettings:
+
+
+
+ 6692
+
+
+
+ writeDefaultsEmulationSettings:
+
+
+
+ 6693
+
+
+
+ writeDefaultsSoundSettings:
+
+
+
+ 6694
+
+
+
+ changeRomSaveType:
+
+
+
+ 6695
+
+
+
+ changeRomSaveType:
+
+
+
+ 6696
+
+
+
+ changeRomSaveType:
+
+
+
+ 6697
+
+
+
+ changeRomSaveType:
+
+
+
+ 6698
+
+
+
+ changeRomSaveType:
+
+
+
+ 6699
+
+
+
+ changeRomSaveType:
+
+
+
+ 6700
+
+
+
+ changeRomSaveType:
+
+
+
+ 6701
+
+
+
+ changeRomSaveType:
+
+
+
+ 6702
+
+
+
+ changeRomSaveType:
+
+
+
+ 6703
+
+
+
+ changeRomSaveType:
+
+
+
+ 6704
+
+
+
+ changeRomSaveType:
+
+
+
+ 6705
+
+
+
+ changeRomSaveType:
+
+
+
+ 6706
+
+
+
+ changeRomSaveType:
+
+
+
+ 6707
+
+
+
+ changeRomSaveType:
+
+
+
+ 6708
+
+
+
+ closeRom:
+
+
+
+ 6709
+
+
+
+ exportRomSave:
+
+
+
+ 6710
+
+
+
+ importRomSave:
+
+
+
+ 6711
+
+
+
+ openRom:
+
+
+
+ 6712
+
+
+
+ revertEmuSaveState:
+
+
+
+ 6713
+
+
+
+ saveEmuSaveState:
+
+
+
+ 6714
+
+
+
+ saveEmuSaveStateAs:
+
+
+
+ 6715
+
+
+
+ toggleAutoFrameSkip:
+
+
+
+ 6716
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6723
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6724
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6725
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6726
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6727
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6728
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6729
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6730
+
+
+
+ changeCoreEmuFlags:
+
+
+
+ 6731
+
+
+
+ openEmuSaveState:
+
+
+
+ 6744
+
+
+
+ changeFirmwareSettings:
+
+
+
+ 6745
+
+
+
+ value: selection.currentVolumeValue
+
+
+
+
+
+ value: selection.currentVolumeValue
+ value
+ selection.currentVolumeValue
+ 2
+
+
+ 6765
+
+
+
+ value: selection.currentVolumeIcon
+
+
+
+
+
+ value: selection.currentVolumeIcon
+ value
+ selection.currentVolumeIcon
+ 2
+
+
+ 6767
+
+
+
+ value: selection.currentVolumeValue
+
+
+
+
+
+ value: selection.currentVolumeValue
+ value
+ selection.currentVolumeValue
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 6769
+
+
+
+ closeSheet:
+
+
+
+ 6799
+
+
+
+ closeSheet:
+
+
+
+ 6800
+
+
+
+ closeSheet:
+
+
+
+ 6801
+
+
+
+ closeSheet:
+
+
+
+ 6802
+
+
+
+ closeSheet:
+
+
+
+ 6803
+
+
+
+ saveFileMigrationSheet
+
+
+
+ 6804
+
+
+
+ saveStatePrecloseSheet
+
+
+
+ 6805
+
+
+
+ emuControlController
+
+
+
+ 6808
+
+
+
+ delegate
+
+
+
+ 6809
+
+
+
+ cdsSoundController
+
+
+
+ 6824
+
+
+
+ romInfoPanelController
+
+
+
+ 6825
+
+
+
+ content
+
+
+
+ 6826
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6864
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6866
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6869
+
+
+
+ enabled2: selection.hasSelection
+
+
+
+
+
+ enabled2: selection.hasSelection
+ enabled2
+ selection.hasSelection
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6870
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6873
+
+
+
+ enabled2: values.R4Cheat_DatabasePath
+
+
+
+
+
+ enabled2: values.R4Cheat_DatabasePath
+ enabled2
+ values.R4Cheat_DatabasePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6874
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6877
+
+
+
+ enabled2: selection.isSupportedCheatType
+
+
+
+
+
+ enabled2: selection.isSupportedCheatType
+ enabled2
+ selection.isSupportedCheatType
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6878
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6880
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6882
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6886
+
+
+
+ enabled2: selection.hasSelection
+
+
+
+
+
+ enabled2: selection.hasSelection
+ enabled2
+ selection.hasSelection
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6887
+
+
+
+ enabled3: selection.isSupportedCheatType
+
+
+
+
+
+ enabled3: selection.isSupportedCheatType
+ enabled3
+ selection.isSupportedCheatType
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6888
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6890
+
+
+
+ enabled3: selection.currentRom
+
+
+
+
+
+ enabled3: selection.currentRom
+ enabled3
+ selection.currentRom
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6892
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6894
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6896
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6900
+
+
+
+ enabled2: selection.cheatSearchSearchValue
+
+
+
+
+
+ enabled2: selection.cheatSearchSearchValue
+ enabled2
+ selection.cheatSearchSearchValue
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6901
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6902
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6906
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6907
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6908
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6912
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6913
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6914
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6918
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6919
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6920
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6924
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6925
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6926
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6929
+
+
+
+ enabled2: selection.isRunningSearch
+
+
+
+
+
+ enabled2: selection.isRunningSearch
+ enabled2
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6930
+
+
+
+ emuController
+
+
+
+ 6939
+
+
+
+ newDisplayWindow:
+
+
+
+ 6940
+
+
+
+ value: selection.mainWindow.displayRotation
+
+
+
+
+
+ value: selection.mainWindow.displayRotation
+ value
+ selection.mainWindow.displayRotation
+ 2
+
+
+ 6966
+
+
+
+ value: selection.mainWindow.displayRotation
+
+
+
+
+
+ value: selection.mainWindow.displayRotation
+ value
+ selection.mainWindow.displayRotation
+ 2
+
+
+ 6967
+
+
+
+ selectedTag: selection.selectedExportRomSaveID
+
+
+
+
+
+ selectedTag: selection.selectedExportRomSaveID
+ selectedTag
+ selection.selectedExportRomSaveID
+ 2
+
+
+ 7001
+
+
+
+ emuControl
+
+
+
+ 7003
+
+
+
+ inputManager
+
+
+
+ 7004
+
+
+
+ inputManager
+
+
+
+ 7005
+
+
+
+ reset:
+
+
+
+ 7010
+
+
+
+ copy:
+
+
+
+ 7011
+
+
+
+ toggleCheats:
+
+
+
+ 7012
+
+
+
+ viewInput
+
+
+
+ 7108
+
+
+
+ inputPrefsView
+
+
+
+ 7109
+
+
+
+ inputManager
+
+
+
+ 7110
+
+
+
+ prefWindow
+
+
+
+ 7111
+
+
+
+ dataSource
+
+
+
+ 7164
+
+
+
+ delegate
+
+
+
+ 7165
+
+
+
+ removeInput:
+
+
+
+ 7167
+
+
+
+ setInputAdd:
+
+
+
+ 7170
+
+
+
+ inputSettingsGPUState
+
+
+
+ 7296
+
+
+
+ inputSettingsLoadStateSlot
+
+
+
+ 7297
+
+
+
+ inputSettingsMicrophone
+
+
+
+ 7298
+
+
+
+ inputSettingsSaveStateSlot
+
+
+
+ 7299
+
+
+
+ inputSettingsTouch
+
+
+
+ 7300
+
+
+
+ showSettingsSheet:
+
+
+
+ 7321
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7322
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7323
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7324
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7325
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7326
+
+
+
+ inputSettingsController
+
+
+
+ 7391
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7394
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7397
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7400
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7403
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7406
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7407
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7410
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7411
+
+
+
+ enabled: selection.useInputForIntCoord
+
+
+
+
+
+ enabled: selection.useInputForIntCoord
+ enabled
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7417
+
+
+
+ enabled: selection.useInputForIntCoord
+
+
+
+
+
+ enabled: selection.useInputForIntCoord
+ enabled
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7419
+
+
+
+ value: selection.useInputForIntCoord
+
+
+
+
+
+ value: selection.useInputForIntCoord
+ value
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7421
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 7422
+
+
+
+ value: selection.intValue2
+
+
+
+
+
+ value: selection.intValue2
+ value
+ selection.intValue2
+ 2
+
+
+ 7423
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7435
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7438
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7441
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7444
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7447
+
+
+
+ selectedTag: selection.intValue1
+
+
+
+
+
+ selectedTag: selection.intValue1
+ selectedTag
+ selection.intValue1
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 7448
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7453
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 7482
+
+
+
+ inputSettingsSetSpeedLimit
+
+
+
+ 7484
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7490
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7491
+
+
+
+ changeSpeed:
+
+
+
+ 7492
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSContinuouslyUpdatesValue
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 7495
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7674
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7676
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7678
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7682
+
+
+
+ inputProfileController
+
+
+
+ 7685
+
+
+
+ inputProfileMenu
+
+
+
+ 7686
+
+
+
+ inputProfileSheet
+
+
+
+ 7687
+
+
+
+ profileApply:
+
+
+
+ 7688
+
+
+
+ profileRename:
+
+
+
+ 7689
+
+
+
+ profileSave:
+
+
+
+ 7690
+
+
+
+ profileView:
+
+
+
+ 7691
+
+
+
+ profileDelete:
+
+
+
+ 7692
+
+
+
+ profileNew:
+
+
+
+ 7693
+
+
+
+ closeProfileSheet:
+
+
+
+ 7696
+
+
+
+ profileDelete:
+
+
+
+ 7697
+
+
+
+ profileApply:
+
+
+
+ 7698
+
+
+
+ inputProfileNextButton
+
+
+
+ 7700
+
+
+
+ inputProfilePreviousButton
+
+
+
+ 7701
+
+
+
+ profileSelect:
+
+
+
+ 7702
+
+
+
+ profileSelect:
+
+
+
+ 7703
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7705
+
+
+
+ delegate
+
+
+
+ 7706
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7719
+
+
+
+ delegate
+
+
+
+ 7720
+
+
+
+ inputProfileRenameSheet
+
+
+
+ 7731
+
+
+
+ closeProfileRenameSheet:
+
+
+
+ 7732
+
+
+
+ inputPrefOutlineView
+
+
+
+ 7734
+
+
+
+ inputManager
+
+
+
+ 7741
+
+
+
+ dataSource
+
+
+
+ 7742
+
+
+
+ delegate
+
+
+
+ 7743
+
+
+
+ profileOutlineView
+
+
+
+ 7744
+
+
+
+ value: selection.Name
+
+
+
+
+
+ value: selection.Name
+ value
+ selection.Name
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7749
+
+
+
+ value: selection.Name
+
+
+
+
+
+ value: selection.Name
+ value
+ selection.Name
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7750
+
+
+
+ enabled: selection.Name
+
+
+
+
+
+ enabled: selection.Name
+ enabled
+ selection.Name
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7752
+
+
+
+ enabled: selection.Name
+
+
+
+
+
+ enabled: selection.Name
+ enabled
+ selection.Name
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7754
+
+
+
+ value: selection.object1
+
+
+
+
+
+ value: selection.object1
+ value
+ selection.object1
+ 2
+
+
+ 7755
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+ 2
+
+
+ 7763
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+ 2
+
+
+ 7764
+
+
+
+ audioFileChoose:
+
+
+
+ 7769
+
+
+
+ audioFileChooseNone:
+
+
+
+ 7770
+
+
+
+ delegate
+
+
+
+ 7795
+
+
+
+ value: values.DisplayViewCombo_Gap
+
+
+
+
+
+ value: values.DisplayViewCombo_Gap
+ value
+ values.DisplayViewCombo_Gap
+ 2
+
+
+ 7814
+
+
+
+ value: values.DisplayViewCombo_Gap
+
+
+
+
+
+ value: values.DisplayViewCombo_Gap
+ value
+ values.DisplayViewCombo_Gap
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7816
+
+
+
+ value: selection.mainWindow.displayGap
+
+
+
+
+
+ value: selection.mainWindow.displayGap
+ value
+ selection.mainWindow.displayGap
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7842
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 7850
+
+
+
+ value: selection.mainWindow.displayGap
+
+
+
+
+
+ value: selection.mainWindow.displayGap
+ value
+ selection.mainWindow.displayGap
+ 2
+
+
+ 7853
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7885
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 7887
+
+
+
+ slot1Eject:
+
+
+
+ 7888
+
+
+
+ reset:
+
+
+
+ 7889
+
+
+
+ value: selection.slot1StatusText
+
+
+
+
+
+ value: selection.slot1StatusText
+ value
+ selection.slot1StatusText
+ 2
+
+
+ 7892
+
+
+
+ selectedTag: selection.slot1DeviceType
+
+
+
+
+
+ selectedTag: selection.slot1DeviceType
+ selectedTag
+ selection.slot1DeviceType
+ 2
+
+
+ 7896
+
+
+
+ chooseSlot1R4Directory:
+
+
+
+ 7897
+
+
+
+ slot1ManagerWindow
+
+
+
+ 7898
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 7975
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 7976
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 7979
+
+
+
+ loadRecentRom:
+
+
+
+ 7983
+
+
+
+ clearRecentDocuments:
+
+
+
+ 7999
+
+
+
+ loadRecentRom:
+
+
+
+ 8000
+
+
+
+ closeRom:
+
+
+
+ 8001
+
+
+
+ openRom:
+
+
+
+ 8002
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8011
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8017
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8018
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8019
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8020
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8026
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8027
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8028
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8029
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8035
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8036
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8037
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8038
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8042
+
+
+
+ value: selection.maxJITBlockSize
+
+
+
+
+
+ value: selection.maxJITBlockSize
+ value
+ selection.maxJITBlockSize
+ 2
+
+
+ 8062
+
+
+
+ value: selection.maxJITBlockSize
+
+
+
+
+
+ value: selection.maxJITBlockSize
+ value
+ selection.maxJITBlockSize
+ 2
+
+
+ 8063
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+
+
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+ value
+ values.Emulation_MaxJITBlockSize
+ 2
+
+
+ 8064
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+
+
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+ value
+ values.Emulation_MaxJITBlockSize
+ 2
+
+
+ 8065
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8067
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8068
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8069
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8070
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8071
+
+
+
+ selectedTag: selection.cpuEmulationEngine
+
+
+
+
+
+ selectedTag: selection.cpuEmulationEngine
+ selectedTag
+ selection.cpuEmulationEngine
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 8072
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8073
+
+
+
+ selectedTag: values.Emulation_CPUEmulationEngine
+
+
+
+
+
+ selectedTag: values.Emulation_CPUEmulationEngine
+ selectedTag
+ values.Emulation_CPUEmulationEngine
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 8074
+
+
+
+ selectAll:
+
+
+
+ 8085
+
+
+
+ selectNone:
+
+
+
+ 8086
+
+
+
+ handleChoice:
+
+
+
+ 8087
+
+
+
+ handleChoice:
+
+
+
+ 8088
+
+
+
+ handleChoice:
+
+
+
+ 8089
+
+
+
+ window
+
+
+
+ 8090
+
+
+
+ delegate
+
+
+
+ 8091
+
+
+
+ enabled: filesPresent
+
+
+
+
+
+ enabled: filesPresent
+ enabled
+ filesPresent
+ 2
+
+
+ 8094
+
+
+
+ enabled: filesPresent
+
+
+
+
+
+ enabled: filesPresent
+ enabled
+ filesPresent
+ 2
+
+
+ 8095
+
+
+
+ fileListController
+
+
+
+ 8097
+
+
+
+ migrationDelegate
+
+
+
+ 8098
+
+
+
+ updateAndShowWindow:
+
+
+
+ 8133
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 8163
+
+
+
+ revealGameDataFolderInFinder:
+
+
+
+ 8167
+
+
+
+ revealRomInFinder:
+
+
+
+ 8168
+
+
+
+ value: selection.cdsGPU.layerMainGPU
+
+
+
+
+
+ value: selection.cdsGPU.layerMainGPU
+ value
+ selection.cdsGPU.layerMainGPU
+ 2
+
+
+ 8169
+
+
+
+ value: selection.cdsGPU.layerMainBG0
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG0
+ value
+ selection.cdsGPU.layerMainBG0
+ 2
+
+
+ 8170
+
+
+
+ value: selection.cdsGPU.layerMainBG1
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG1
+ value
+ selection.cdsGPU.layerMainBG1
+ 2
+
+
+ 8171
+
+
+
+ value: selection.cdsGPU.layerMainBG2
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG2
+ value
+ selection.cdsGPU.layerMainBG2
+ 2
+
+
+ 8172
+
+
+
+ value: selection.cdsGPU.layerMainBG3
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG3
+ value
+ selection.cdsGPU.layerMainBG3
+ 2
+
+
+ 8173
+
+
+
+ value: selection.cdsGPU.layerMainOBJ
+
+
+
+
+
+ value: selection.cdsGPU.layerMainOBJ
+ value
+ selection.cdsGPU.layerMainOBJ
+ 2
+
+
+ 8174
+
+
+
+ value: selection.cdsGPU.layerSubGPU
+
+
+
+
+
+ value: selection.cdsGPU.layerSubGPU
+ value
+ selection.cdsGPU.layerSubGPU
+ 2
+
+
+ 8175
+
+
+
+ value: selection.cdsGPU.layerSubBG0
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG0
+ value
+ selection.cdsGPU.layerSubBG0
+ 2
+
+
+ 8176
+
+
+
+ value: selection.cdsGPU.layerSubBG1
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG1
+ value
+ selection.cdsGPU.layerSubBG1
+ 2
+
+
+ 8177
+
+
+
+ value: selection.cdsGPU.layerSubBG2
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG2
+ value
+ selection.cdsGPU.layerSubBG2
+ 2
+
+
+ 8178
+
+
+
+ value: selection.cdsGPU.layerSubBG3
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG3
+ value
+ selection.cdsGPU.layerSubBG3
+ 2
+
+
+ 8179
+
+
+
+ value: selection.cdsGPU.layerSubOBJ
+
+
+
+
+
+ value: selection.cdsGPU.layerSubOBJ
+ value
+ selection.cdsGPU.layerSubOBJ
+ 2
+
+
+ 8180
+
+
+
+ value: values.Render3D_DepthComparisonThreshold
+
+
+
+
+
+ value: values.Render3D_DepthComparisonThreshold
+ value
+ values.Render3D_DepthComparisonThreshold
+ 2
+
+
+ 8198
+
+
+
+ value: values.EmulationSlot1_R4StoragePath
+
+
+
+
+
+ value: values.EmulationSlot1_R4StoragePath
+ value
+ values.EmulationSlot1_R4StoragePath
+ 2
+
+
+ 8199
+
+
+
+ toolTip: values.EmulationSlot1_R4StoragePath
+
+
+
+
+
+ toolTip: values.EmulationSlot1_R4StoragePath
+ toolTip
+ values.EmulationSlot1_R4StoragePath
+ 2
+
+
+ 8200
+
+
+
+ changeDisplayMode:
+
+
+
+ 8204
+
+
+
+ changeDisplayMode:
+
+
+
+ 8205
+
+
+
+ changeDisplayMode:
+
+
+
+ 8206
+
+
+
+ runToolbarCustomizationPalette:
+
+
+
+ 8208
+
+
+
+ toggleToolbarShown:
+
+
+
+ 8209
+
+
+
+ changeDisplayGap:
+
+
+
+ 8210
+
+
+
+ changeDisplayGap:
+
+
+
+ 8211
+
+
+
+ changeDisplayGap:
+
+
+
+ 8212
+
+
+
+ changeDisplayGap:
+
+
+
+ 8213
+
+
+
+ changeDisplayGap:
+
+
+
+ 8214
+
+
+
+ changeDisplayGap:
+
+
+
+ 8215
+
+
+
+ changeDisplayGap:
+
+
+
+ 8216
+
+
+
+ changeDisplayOrder:
+
+
+
+ 8217
+
+
+
+ changeDisplayOrder:
+
+
+
+ 8218
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 8219
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 8220
+
+
+
+ changeScale:
+
+
+
+ 8221
+
+
+
+ changeScale:
+
+
+
+ 8222
+
+
+
+ changeScale:
+
+
+
+ 8223
+
+
+
+ changeScale:
+
+
+
+ 8224
+
+
+
+ changeScale:
+
+
+
+ 8225
+
+
+
+ changeRotation:
+
+
+
+ 8226
+
+
+
+ changeRotation:
+
+
+
+ 8227
+
+
+
+ changeRotation:
+
+
+
+ 8228
+
+
+
+ changeRotation:
+
+
+
+ 8229
+
+
+
+ changeRotationRelative:
+
+
+
+ 8230
+
+
+
+ changeRotationRelative:
+
+
+
+ 8231
+
+
+
+ changeRotation:
+
+
+
+ 8232
+
+
+
+ changeRotation:
+
+
+
+ 8233
+
+
+
+ toggleStatusBar:
+
+
+
+ 8234
+
+
+
+ toggleKeepMinDisplaySizeAtNormal:
+
+
+
+ 8235
+
+
+
+ writeDefaultsDisplayGap:
+
+
+
+ 8236
+
+
+
+ writeDefaultsDisplayRotation:
+
+
+
+ 8237
+
+
+
+ writeDefaultsDisplayVideoSettings:
+
+
+
+ 8238
+
+
+
+ writeDefaultsHUDSettings:
+
+
+
+ 8239
+
+
+
+ performClose:
+
+
+
+ 8240
+
+
+
+ saveScreenshotAs:
+
+
+
+ 8241
+
+
+
+ toggleFullScreenDisplay:
+
+
+
+ 8297
+
+
+
+ value: selection.gameDeveloperWithCode
+
+
+
+
+
+ value: selection.gameDeveloperWithCode
+ value
+ selection.gameDeveloperWithCode
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 8299
+
+
+
+ value: values.General_WillRestoreDisplayWindows
+
+
+
+
+
+ value: values.General_WillRestoreDisplayWindows
+ value
+ values.General_WillRestoreDisplayWindows
+ 2
+
+
+ 8306
+
+
+
+ enabled: values.General_AutoloadROMSelectedPath
+
+
+
+
+
+ enabled: values.General_AutoloadROMSelectedPath
+ enabled
+ values.General_AutoloadROMSelectedPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8313
+
+
+
+ title: selection.AutoloadRomName
+
+
+
+
+
+ title: selection.AutoloadRomName
+ title
+ selection.AutoloadRomName
+ 2
+
+
+ 8315
+
+
+
+ chooseRomForAutoload:
+
+
+
+ 8317
+
+
+
+ selectedTag: values.General_AutoloadROMOption
+
+
+
+
+
+ selectedTag: values.General_AutoloadROMOption
+ selectedTag
+ values.General_AutoloadROMOption
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8318
+
+
+
+ selectedTag: values.DisplayView_Size
+
+
+
+
+
+ selectedTag: values.DisplayView_Size
+ selectedTag
+ values.DisplayView_Size
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8319
+
+
+
+ selectedTag: values.DisplayView_Mode
+
+
+
+
+
+ selectedTag: values.DisplayView_Mode
+ selectedTag
+ values.DisplayView_Mode
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8320
+
+
+
+ value: values.General_StreamLoadRomData
+
+
+
+
+
+ value: values.General_StreamLoadRomData
+ value
+ values.General_StreamLoadRomData
+ 2
+
+
+ 8328
+
+
+
+ cdsCoreController
+
+
+
+ 8329
+
+
+
+ emuControlController
+
+
+
+ 8330
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 8353
+
+
+
+ delegate
+
+
+
+ 8357
+
+
+
+ deviceListController
+
+
+
+ 8358
+
+
+
+ deviceListTable
+
+
+
+ 8360
+
+
+
+ delegate
+
+
+
+ 8361
+
+
+
+ applySettings:
+
+
+
+ 8362
+
+
+
+ value: arrangedObjects.name
+
+
+
+
+
+ value: arrangedObjects.name
+ value
+ arrangedObjects.name
+
+ NSAllowsEditingMultipleValuesSelection
+
+
+ 2
+
+
+ 8464
+
+
+
+ viewAuto
+
+
+
+ 8465
+
+
+
+ viewCompactFlash
+
+
+
+ 8466
+
+
+
+ viewGBACartridge
+
+
+
+ 8467
+
+
+
+ viewGuitarGrip
+
+
+
+ 8468
+
+
+
+ viewMemoryExpansionPack
+
+
+
+ 8469
+
+
+
+ viewNone
+
+
+
+ 8470
+
+
+
+ viewPaddleController
+
+
+
+ 8471
+
+
+
+ viewPassME
+
+
+
+ 8472
+
+
+
+ viewPiano
+
+
+
+ 8473
+
+
+
+ viewRumblePak
+
+
+
+ 8474
+
+
+
+ viewNoSelection
+
+
+
+ 8475
+
+
+
+ deviceSettingsBox
+
+
+
+ 8476
+
+
+
+ enabled: arrangedObjects.enabled
+
+
+
+
+
+ enabled: arrangedObjects.enabled
+ enabled
+ arrangedObjects.enabled
+ 2
+
+
+ 8506
+
+
+
+ enabled: selection.enabled
+
+
+
+
+
+ enabled: selection.enabled
+ enabled
+ selection.enabled
+ 2
+
+
+ 8508
+
+
+
+ slot2Window
+
+
+
+ 8509
+
+
+
+ window
+
+
+
+ 8510
+
+
+
+ value: arrangedObjects.isForceFeedbackEnabled
+
+
+
+
+
+ value: arrangedObjects.isForceFeedbackEnabled
+ value
+ arrangedObjects.isForceFeedbackEnabled
+ 2
+
+
+ 8528
+
+
+
+ value: arrangedObjects.productName
+
+
+
+
+
+ value: arrangedObjects.productName
+ value
+ arrangedObjects.productName
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 8529
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+
+
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+ enabled
+ arrangedObjects.supportsForceFeedback
+ 2
+
+
+ 8530
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+
+
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+ enabled
+ arrangedObjects.supportsForceFeedback
+ 2
+
+
+ 8531
+
+
+
+ inputDeviceListController
+
+
+
+ 8532
+
+
+
+ testRumble:
+
+
+
+ 8533
+
+
+
+ enabled: selection.mpcfDiskImagePath
+
+
+
+
+
+ enabled: selection.mpcfDiskImagePath
+ enabled
+ selection.mpcfDiskImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8543
+
+
+
+ content
+
+
+
+ 8549
+
+
+
+ title: selection.mpcfDiskImageName
+
+
+
+
+
+ title: selection.mpcfDiskImageName
+ title
+ selection.mpcfDiskImageName
+ 2
+
+
+ 8551
+
+
+
+ viewUnsupported
+
+
+
+ 8555
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8564
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8565
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8566
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8567
+
+
+
+ slot2WindowController
+
+
+
+ 8574
+
+
+
+ value: selection.autoSelectedDeviceText
+
+
+
+
+
+ value: selection.autoSelectedDeviceText
+ value
+ selection.autoSelectedDeviceText
+ 2
+
+
+ 8577
+
+
+
+ title: selection.mpcfFolderName
+
+
+
+
+
+ title: selection.mpcfFolderName
+ title
+ selection.mpcfFolderName
+ 2
+
+
+ 8586
+
+
+
+ mpcfFileSearchMenu
+
+
+
+ 8587
+
+
+
+ selectedTag: values.Slot2_MPCF_PathOption
+
+
+
+
+
+ selectedTag: values.Slot2_MPCF_PathOption
+ selectedTag
+ values.Slot2_MPCF_PathOption
+ 2
+
+
+ 8589
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8593
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8594
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8595
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 8600
+
+
+
+ inputSettingsPaddleController
+
+
+
+ 8637
+
+
+
+ closeSettingsSheet:
+
+
+
+ 8642
+
+
+
+ closeSettingsSheet:
+
+
+
+ 8643
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 8645
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 8646
+
+
+
+ prefWindowDelegate
+
+
+
+ 8650
+
+
+
+ showInputPreferences:
+
+
+
+ 8662
+
+
+
+ showInputPreferences:
+
+
+
+ 8665
+
+
+
+ toolbar
+
+
+
+ 8666
+
+
+
+ changePrefView:
+
+
+
+ 8671
+
+
+
+ changePrefView:
+
+
+
+ 8672
+
+
+
+ changePrefView:
+
+
+
+ 8673
+
+
+
+ changePrefView:
+
+
+
+ 8674
+
+
+
+ changePrefView:
+
+
+
+ 8675
+
+
+
+ value: selection.deviceManager.slot2StatusText
+
+
+
+
+
+ value: selection.deviceManager.slot2StatusText
+ value
+ selection.deviceManager.slot2StatusText
+ 2
+
+
+ 8676
+
+
+
+ value: selection.gbaCartridgeName
+
+
+
+
+
+ value: selection.gbaCartridgeName
+ value
+ selection.gbaCartridgeName
+ 2
+
+
+ 8702
+
+
+
+ value: selection.gbaSRamName
+
+
+
+
+
+ value: selection.gbaSRamName
+ value
+ selection.gbaSRamName
+ 2
+
+
+ 8703
+
+
+
+ chooseGbaCartridgePath:
+
+
+
+ 8704
+
+
+
+ chooseGbaSRamPath:
+
+
+
+ 8705
+
+
+
+ clearSRamPath:
+
+
+
+ 8708
+
+
+
+ enabled: selection.mpcfFolderPath
+
+
+
+
+
+ enabled: selection.mpcfFolderPath
+ enabled
+ selection.mpcfFolderPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8709
+
+
+
+ enabled: selection.gbaCartridgePath
+
+
+
+
+
+ enabled: selection.gbaCartridgePath
+ enabled
+ selection.gbaCartridgePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8711
+
+
+
+ enabled: selection.gbaSRamPath
+
+
+
+
+
+ enabled: selection.gbaSRamPath
+ enabled
+ selection.gbaSRamPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8713
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8721
+
+
+
+ enabled: selection.isInputAnalog
+
+
+
+
+
+ enabled: selection.isInputAnalog
+ enabled
+ selection.isInputAnalog
+ 2
+
+
+ 8726
+
+
+
+ enabled: selection.isInputAnalog
+
+
+
+
+
+ enabled: selection.isInputAnalog
+ enabled
+ selection.isInputAnalog
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8729
+
+
+
+ hidden: selection.isInputAnalog
+
+
+
+
+
+ hidden: selection.isInputAnalog
+ hidden
+ selection.isInputAnalog
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8734
+
+
+
+ hidden: selection.isInputAnalog
+
+
+
+
+
+ hidden: selection.isInputAnalog
+ hidden
+ selection.isInputAnalog
+ 2
+
+
+ 8738
+
+
+
+ showInputPreferences:
+
+
+
+ 8745
+
+
+
+ toggleAllDisplays:
+
+
+
+ 8977
+
+
+
+ frameAdvance:
+
+
+
+ 8980
+
+
+
+ frameJump:
+
+
+
+ 8982
+
+
+
+ frameAdvance:
+
+
+
+ 9004
+
+
+
+ frameJump:
+
+
+
+ 9005
+
+
+
+ reset:
+
+
+
+ 9006
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9008
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9012
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9014
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9016
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9018
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9022
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9028
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 9029
+
+
+
+ changeCoreSpeed:
+
+
+
+ 9065
+
+
+
+ value: selection.isSpeedLimitEnabled
+
+
+
+
+
+ value: selection.isSpeedLimitEnabled
+ value
+ selection.isSpeedLimitEnabled
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 9067
+
+
+
+ value: selection.speedScalar
+
+
+
+
+
+ value: selection.speedScalar
+ value
+ selection.speedScalar
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 9068
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9070
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+
+
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+ enabled
+ selection.isSpeedLimitEnabled
+ 2
+
+
+ 9073
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+
+
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+ enabled
+ selection.isSpeedLimitEnabled
+ 2
+
+
+ 9077
+
+
+
+ changeCoreSpeed:
+
+
+
+ 9078
+
+
+
+ value: selection.frameStatus
+
+
+
+
+
+ value: selection.frameStatus
+ value
+ selection.frameStatus
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 9092
+
+
+
+ value: selection.executionSpeedStatus
+
+
+
+
+
+ value: selection.executionSpeedStatus
+ value
+ selection.executionSpeedStatus
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 9093
+
+
+
+ selectedTag: selection.frameJumpType
+
+
+
+
+
+ selectedTag: selection.frameJumpType
+ selectedTag
+ selection.frameJumpType
+ 2
+
+
+ 9096
+
+
+
+ value: selection.frameJumpFramesForward
+
+
+
+
+
+ value: selection.frameJumpFramesForward
+ value
+ selection.frameJumpFramesForward
+ 2
+
+
+ 9097
+
+
+
+ value: selection.frameJumpToFrame
+
+
+
+
+
+ value: selection.frameJumpToFrame
+ value
+ selection.frameJumpToFrame
+ 2
+
+
+ 9098
+
+
+
+ executionControlWindow
+
+
+
+ 9099
+
+
+
+ coreExecute:
+
+
+
+ 9100
+
+
+
+ corePause:
+
+
+
+ 9101
+
+
+
+ coreExecute:
+
+
+
+ 9102
+
+
+
+ corePause:
+
+
+
+ 9103
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 9108
+
+
+
+ inputSettingsNDSInput
+
+
+
+ 9111
+
+
+
+ closeSettingsSheet:
+
+
+
+ 9116
+
+
+
+ closeSettingsSheet:
+
+
+
+ 9117
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 9119
+
+
+
+ openReplay:
+
+
+
+ 9141
+
+
+
+ recordReplay:
+
+
+
+ 9142
+
+
+
+ stopReplay:
+
+
+
+ 9143
+
+
+
+ selectedTag: selection.cdsGPU.render3DRenderingEngine
+
+
+
+
+
+ selectedTag: selection.cdsGPU.render3DRenderingEngine
+ selectedTag
+ selection.cdsGPU.render3DRenderingEngine
+ 2
+
+
+ 9160
+
+
+
+ value: selection.cdsGPU.render3DTextures
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextures
+ value
+ selection.cdsGPU.render3DTextures
+ 2
+
+
+ 9162
+
+
+
+ value: selection.cdsGPU.render3DHighPrecisionColorInterpolation
+
+
+
+
+
+ value: selection.cdsGPU.render3DHighPrecisionColorInterpolation
+ value
+ selection.cdsGPU.render3DHighPrecisionColorInterpolation
+ 2
+
+
+ 9164
+
+
+
+ value: selection.cdsGPU.render3DEdgeMarking
+
+
+
+
+
+ value: selection.cdsGPU.render3DEdgeMarking
+ value
+ selection.cdsGPU.render3DEdgeMarking
+ 2
+
+
+ 9166
+
+
+
+ value: selection.cdsGPU.render3DFog
+
+
+
+
+
+ value: selection.cdsGPU.render3DFog
+ value
+ selection.cdsGPU.render3DFog
+ 2
+
+
+ 9168
+
+
+
+ value: selection.cdsGPU.render3DLineHack
+
+
+
+
+
+ value: selection.cdsGPU.render3DLineHack
+ value
+ selection.cdsGPU.render3DLineHack
+ 2
+
+
+ 9170
+
+
+
+ value: selection.cdsGPU.render3DDepthComparisonThreshold
+
+
+
+
+
+ value: selection.cdsGPU.render3DDepthComparisonThreshold
+ value
+ selection.cdsGPU.render3DDepthComparisonThreshold
+ 2
+
+
+ 9174
+
+
+
+ value: selection.cdsGPU.render3DDepthComparisonThreshold
+
+
+
+
+
+ value: selection.cdsGPU.render3DDepthComparisonThreshold
+ value
+ selection.cdsGPU.render3DDepthComparisonThreshold
+ 2
+
+
+ 9176
+
+
+
+ value: selection.cdsGPU.render3DMultisample
+
+
+
+
+
+ value: selection.cdsGPU.render3DMultisample
+ value
+ selection.cdsGPU.render3DMultisample
+ 2
+
+
+ 9178
+
+
+
+ value: selection.cdsGPU.render3DFragmentSamplingHack
+
+
+
+
+
+ value: selection.cdsGPU.render3DFragmentSamplingHack
+ value
+ selection.cdsGPU.render3DFragmentSamplingHack
+ 2
+
+
+ 9182
+
+
+
+ value: values.Render3D_FragmentSamplingHack
+
+
+
+
+
+ value: values.Render3D_FragmentSamplingHack
+ value
+ values.Render3D_FragmentSamplingHack
+ 2
+
+
+ 9183
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9275
+
+
+
+ selectedTag: selection.cdsGPU.render3DThreads
+
+
+
+
+
+ selectedTag: selection.cdsGPU.render3DThreads
+ selectedTag
+ selection.cdsGPU.render3DThreads
+ 2
+
+
+ 9298
+
+
+
+ value: selection.mainWindow.view.useVerticalSync
+
+
+
+
+
+ value: selection.mainWindow.view.useVerticalSync
+ value
+ selection.mainWindow.view.useVerticalSync
+ 2
+
+
+ 9318
+
+
+
+ value: selection.mainWindow.videoSourceDeposterize
+
+
+
+
+
+ value: selection.mainWindow.videoSourceDeposterize
+ value
+ selection.mainWindow.videoSourceDeposterize
+ 2
+
+
+ 9319
+
+
+
+ selectedTag: selection.mainWindow.videoOutputFilter
+
+
+
+
+
+ selectedTag: selection.mainWindow.videoOutputFilter
+ selectedTag
+ selection.mainWindow.videoOutputFilter
+ 2
+
+
+ 9320
+
+
+
+ selectedTag: selection.mainWindow.videoPixelScaler
+
+
+
+
+
+ selectedTag: selection.mainWindow.videoPixelScaler
+ selectedTag
+ selection.mainWindow.videoPixelScaler
+ 2
+
+
+ 9321
+
+
+
+ value: selection.mainWindow.videoFiltersPreferGPU
+
+
+
+
+
+ value: selection.mainWindow.videoFiltersPreferGPU
+ value
+ selection.mainWindow.videoFiltersPreferGPU
+ 2
+
+
+ 9322
+
+
+
+ selectedTag: values.DisplayView_OutputFilter
+
+
+
+
+
+ selectedTag: values.DisplayView_OutputFilter
+ selectedTag
+ values.DisplayView_OutputFilter
+ 2
+
+
+ 9323
+
+
+
+ value: values.DisplayView_Deposterize
+
+
+
+
+
+ value: values.DisplayView_Deposterize
+ value
+ values.DisplayView_Deposterize
+ 2
+
+
+ 9324
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9325
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9326
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9327
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9328
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9329
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9330
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9331
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9332
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9333
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9334
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9335
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9336
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9337
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9338
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9339
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9340
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9341
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9342
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9343
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9344
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9345
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9346
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9347
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9348
+
+
+
+ toggleVideoSourceDeposterize:
+
+
+
+ 9349
+
+
+
+ value: values.DisplayView_FiltersPreferGPU
+
+
+
+
+
+ value: values.DisplayView_FiltersPreferGPU
+ value
+ values.DisplayView_FiltersPreferGPU
+ 2
+
+
+ 9350
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9352
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9353
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9354
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9355
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9356
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9357
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9410
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9413
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9415
+
+
+
+ value: selection.enableGdbStubARM9
+
+
+
+
+
+ value: selection.enableGdbStubARM9
+ value
+ selection.enableGdbStubARM9
+ 2
+
+
+ 9420
+
+
+
+ value: selection.enableGdbStubARM7
+
+
+
+
+
+ value: selection.enableGdbStubARM7
+ value
+ selection.enableGdbStubARM7
+ 2
+
+
+ 9421
+
+
+
+ value: selection.gdbStubPortARM9
+
+
+
+
+
+ value: selection.gdbStubPortARM9
+ value
+ selection.gdbStubPortARM9
+ 2
+
+
+ 9422
+
+
+
+ value: selection.gdbStubPortARM7
+
+
+
+
+
+ value: selection.gdbStubPortARM7
+ value
+ selection.gdbStubPortARM7
+ 2
+
+
+ 9423
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9434
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9437
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9439
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9441
+
+
+
+ toggleGDBStubActivate:
+
+
+
+ 9461
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9462
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9463
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9464
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9465
+
+
+
+ enabled2: selection.isUserInterfaceBlockingExecution
+
+
+
+
+
+ enabled2: selection.isUserInterfaceBlockingExecution
+ enabled2
+ selection.isUserInterfaceBlockingExecution
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9467
+
+
+
+ enabled3: selection.isInDebugTrap
+
+
+
+
+
+ enabled3: selection.isInDebugTrap
+ enabled3
+ selection.isInDebugTrap
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9469
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9472
+
+
+
+ exportRomSave:
+
+
+
+ 9659
+
+
+
+ changeRomSaveType:
+
+
+
+ 9660
+
+
+
+ changeRomSaveType:
+
+
+
+ 9661
+
+
+
+ changeRomSaveType:
+
+
+
+ 9662
+
+
+
+ changeRomSaveType:
+
+
+
+ 9663
+
+
+
+ changeRomSaveType:
+
+
+
+ 9664
+
+
+
+ importRomSave:
+
+
+
+ 9665
+
+
+
+ changeRomSaveType:
+
+
+
+ 9666
+
+
+
+ changeRomSaveType:
+
+
+
+ 9667
+
+
+
+ changeRomSaveType:
+
+
+
+ 9668
+
+
+
+ changeRomSaveType:
+
+
+
+ 9669
+
+
+
+ changeRomSaveType:
+
+
+
+ 9670
+
+
+
+ revealRomInFinder:
+
+
+
+ 9671
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9672
+
+
+
+ changeRomSaveType:
+
+
+
+ 9673
+
+
+
+ changeRomSaveType:
+
+
+
+ 9674
+
+
+
+ changeRomSaveType:
+
+
+
+ 9675
+
+
+
+ changeRomSaveType:
+
+
+
+ 9676
+
+
+
+ selectOutputFilter:
+
+
+
+ 9678
+
+
+
+ selectOutputFilter:
+
+
+
+ 9679
+
+
+
+ selectOutputFilter:
+
+
+
+ 9680
+
+
+
+ selectOutputFilter:
+
+
+
+ 9681
+
+
+
+ selectOutputFilter:
+
+
+
+ 9682
+
+
+
+ selectOutputFilter:
+
+
+
+ 9683
+
+
+
+ updateFiltersPreferGPU:
+
+
+
+ 9684
+
+
+
+ updateSourceDeposterize:
+
+
+
+ 9685
+
+
+
+ selectPixelScaler:
+
+
+
+ 9686
+
+
+
+ selectPixelScaler:
+
+
+
+ 9687
+
+
+
+ selectPixelScaler:
+
+
+
+ 9688
+
+
+
+ selectPixelScaler:
+
+
+
+ 9689
+
+
+
+ selectPixelScaler:
+
+
+
+ 9690
+
+
+
+ selectPixelScaler:
+
+
+
+ 9691
+
+
+
+ selectPixelScaler:
+
+
+
+ 9692
+
+
+
+ selectPixelScaler:
+
+
+
+ 9693
+
+
+
+ selectPixelScaler:
+
+
+
+ 9694
+
+
+
+ selectPixelScaler:
+
+
+
+ 9695
+
+
+
+ selectPixelScaler:
+
+
+
+ 9696
+
+
+
+ selectPixelScaler:
+
+
+
+ 9697
+
+
+
+ selectPixelScaler:
+
+
+
+ 9698
+
+
+
+ selectPixelScaler:
+
+
+
+ 9699
+
+
+
+ selectPixelScaler:
+
+
+
+ 9700
+
+
+
+ selectPixelScaler:
+
+
+
+ 9701
+
+
+
+ selectPixelScaler:
+
+
+
+ 9702
+
+
+
+ selectPixelScaler:
+
+
+
+ 9703
+
+
+
+ previewView
+
+
+
+ 9704
+
+
+
+
+ YES
+
+ 0
+
+
+
+
+
+ -2
+
+
+ File's Owner
+
+
+ -1
+
+
+ First Responder
+
+
+ -3
+
+
+ Application
+
+
+ 29
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 19
+
+
+ YES
+
+
+
+
+
+ 56
+
+
+ YES
+
+
+
+
+
+ 83
+
+
+ YES
+
+
+
+
+
+ 81
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 75
+
+
+
+
+ 80
+
+
+
+
+ 72
+
+
+
+
+ 124
+
+
+ YES
+
+
+
+
+
+ 79
+
+
+
+
+ 112
+
+
+
+
+ 74
+
+
+
+
+ 57
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 58
+
+
+
+
+ 134
+
+
+
+
+ 150
+
+
+
+
+ 136
+
+
+
+
+ 144
+
+
+
+
+ 129
+
+
+
+
+ 143
+
+
+
+
+ 236
+
+
+
+
+ 131
+
+
+ YES
+
+
+
+
+
+ 149
+
+
+
+
+ 145
+
+
+
+
+ 130
+
+
+
+
+ 295
+
+
+ YES
+
+
+
+
+
+ 296
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 297
+
+
+
+
+ 298
+
+
+
+
+ 494
+
+
+ App Delegate
+
+
+ 534
+
+
+
+
+ 535
+
+
+
+
+ 538
+
+
+ YES
+
+
+
+
+
+ 539
+
+
+ YES
+
+
+
+
+ 541
+
+
+ YES
+
+
+
+
+
+ 542
+
+
+ YES
+
+
+
+
+ 575
+
+
+ YES
+
+
+
+
+
+ 576
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 594
+
+
+
+
+ 596
+
+
+
+
+ 607
+
+
+ YES
+
+
+
+
+
+ 627
+
+
+ YES
+
+
+
+
+
+
+ 628
+
+
+ YES
+
+
+
+
+ 629
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 634
+
+
+
+
+ 635
+
+
+
+
+ 714
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cheat Search Drawer Content View
+
+
+ 715
+
+
+ Cheat Search Drawer
+
+
+ 783
+
+
+ YES
+
+
+
+
+
+ 784
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 785
+
+
+
+
+ 787
+
+
+ YES
+
+
+
+
+
+ 788
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 789
+
+
+
+
+ 794
+
+
+ YES
+
+
+
+
+
+ 795
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 796
+
+
+ YES
+
+
+
+
+
+ 797
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 823
+
+
+ YES
+
+
+
+
+
+ 824
+
+
+
+
+ 825
+
+
+ YES
+
+
+
+
+
+ 826
+
+
+
+
+ 827
+
+
+ YES
+
+
+
+
+
+ 828
+
+
+
+
+ 829
+
+
+ YES
+
+
+
+
+
+ 830
+
+
+
+
+ 831
+
+
+ YES
+
+
+
+
+
+ 832
+
+
+
+
+ 833
+
+
+ YES
+
+
+
+
+
+ 834
+
+
+
+
+ 835
+
+
+ YES
+
+
+
+
+
+ 836
+
+
+
+
+ 843
+
+
+ YES
+
+
+
+
+
+ 844
+
+
+
+
+ 845
+
+
+ YES
+
+
+
+
+
+ 846
+
+
+
+
+ 850
+
+
+
+
+ 855
+
+
+
+
+ 861
+
+
+ YES
+
+
+
+
+
+ 862
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 865
+
+
+ YES
+
+
+
+
+
+ 866
+
+
+
+
+ 872
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 875
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 876
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 877
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 878
+
+
+ YES
+
+
+
+
+
+
+
+
+ 879
+
+
+ YES
+
+
+
+
+
+ 880
+
+
+
+
+ 883
+
+
+ YES
+
+
+
+
+
+ 884
+
+
+
+
+ 885
+
+
+ YES
+
+
+
+
+
+ 886
+
+
+
+
+ 887
+
+
+ YES
+
+
+
+
+
+ 888
+
+
+
+
+ 889
+
+
+ YES
+
+
+
+
+
+ 890
+
+
+
+
+ 897
+
+
+ YES
+
+
+
+
+
+ 898
+
+
+
+
+ 899
+
+
+ YES
+
+
+
+
+
+ 900
+
+
+
+
+ 901
+
+
+ YES
+
+
+
+
+
+ 902
+
+
+
+
+ 903
+
+
+ YES
+
+
+
+
+
+ 904
+
+
+
+
+ 905
+
+
+ YES
+
+
+
+
+
+ 906
+
+
+
+
+ 907
+
+
+ YES
+
+
+
+
+
+ 908
+
+
+
+
+ 909
+
+
+ YES
+
+
+
+
+
+ 910
+
+
+
+
+ 911
+
+
+ YES
+
+
+
+
+
+ 912
+
+
+
+
+ 913
+
+
+ YES
+
+
+
+
+
+ 914
+
+
+ YES
+
+
+
+
+ 924
+
+
+ YES
+
+
+
+
+
+ 925
+
+
+
+
+ 926
+
+
+ YES
+
+
+
+
+
+ 927
+
+
+
+
+ 928
+
+
+ YES
+
+
+
+
+
+ 929
+
+
+
+
+ 930
+
+
+ YES
+
+
+
+
+
+ 931
+
+
+
+
+ 932
+
+
+ YES
+
+
+
+
+
+ 933
+
+
+
+
+ 934
+
+
+ YES
+
+
+
+
+
+ 935
+
+
+
+
+ 936
+
+
+ YES
+
+
+
+
+
+ 937
+
+
+
+
+ 938
+
+
+ YES
+
+
+
+
+
+ 939
+
+
+
+
+ 940
+
+
+ YES
+
+
+
+
+
+ 941
+
+
+
+
+ 942
+
+
+ YES
+
+
+
+
+
+ 943
+
+
+
+
+ 944
+
+
+ YES
+
+
+
+
+
+ 945
+
+
+
+
+ 946
+
+
+ YES
+
+
+
+
+
+ 947
+
+
+
+
+ 948
+
+
+ YES
+
+
+
+
+
+ 951
+
+
+
+
+ 949
+
+
+ YES
+
+
+
+
+
+ 950
+
+
+
+
+ 952
+
+
+ YES
+
+
+
+
+
+ 953
+
+
+ YES
+
+
+
+
+
+ 954
+
+
+
+
+ 955
+
+
+
+
+ 956
+
+
+ YES
+
+
+
+
+
+ 957
+
+
+ YES
+
+
+
+
+
+ 958
+
+
+
+
+ 959
+
+
+
+
+ 960
+
+
+ YES
+
+
+
+
+
+ 961
+
+
+ YES
+
+
+
+
+
+ 962
+
+
+
+
+ 963
+
+
+
+
+ 964
+
+
+ YES
+
+
+
+
+
+ 967
+
+
+
+
+ 965
+
+
+ YES
+
+
+
+
+
+ 966
+
+
+
+
+ 968
+
+
+ YES
+
+
+
+
+
+ 969
+
+
+ YES
+
+
+
+
+
+ 970
+
+
+
+
+ 971
+
+
+
+
+ 1034
+
+
+ YES
+
+
+
+
+
+ 1035
+
+
+
+
+ 1036
+
+
+ YES
+
+
+
+
+
+ 1037
+
+
+
+
+ 1038
+
+
+ YES
+
+
+
+
+
+ 1039
+
+
+
+
+ 1040
+
+
+ YES
+
+
+
+
+
+ 1041
+
+
+
+
+ 1113
+
+
+
+
+ 1114
+
+
+
+
+ 1115
+
+
+
+
+ 1118
+
+
+
+
+ 1119
+
+
+
+
+ 1120
+
+
+
+
+ 1298
+
+
+ YES
+
+
+
+
+
+
+ General Preferences View
+
+
+ 1538
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1299
+
+
+ YES
+
+
+
+
+
+ 1300
+
+
+
+
+ 1541
+
+
+ YES
+
+
+
+
+
+ 1542
+
+
+ YES
+
+
+
+
+
+ 1543
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1544
+
+
+
+
+ 1545
+
+
+
+
+ 1584
+
+
+ YES
+
+
+
+ Display Preferences View
+
+
+ 1615
+
+
+ YES
+
+
+
+
+
+
+
+ 1616
+
+
+ YES
+
+
+
+
+
+ 1619
+
+
+ YES
+
+
+
+
+
+
+ 1620
+
+
+ YES
+
+
+
+
+
+ 1621
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1626
+
+
+ YES
+
+
+
+
+
+ 1627
+
+
+ YES
+
+
+
+
+
+ 1628
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1629
+
+
+
+
+ 1630
+
+
+
+
+ 1631
+
+
+
+
+ 1634
+
+
+ YES
+
+
+
+
+
+ 1635
+
+
+
+
+ 1636
+
+
+
+
+ 1637
+
+
+
+
+ 1638
+
+
+
+
+ 1639
+
+
+
+
+ 1640
+
+
+
+
+ 1641
+
+
+
+
+ 1643
+
+
+
+
+ 1646
+
+
+
+
+ 1647
+
+
+
+
+ 1650
+
+
+ YES
+
+
+
+
+
+ 1651
+
+
+
+
+ 1679
+
+
+
+
+ 1680
+
+
+
+
+ 1681
+
+
+
+
+ 1682
+
+
+
+
+ 1721
+
+
+ CocoaDS Core Controller
+
+
+ 1855
+
+
+
+
+ 1856
+
+
+ YES
+
+
+
+
+
+ 1857
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1858
+
+
+ YES
+
+
+
+
+
+ 1859
+
+
+
+
+ 1976
+
+
+ YES
+
+
+
+
+
+ 1977
+
+
+
+
+ 1978
+
+
+ YES
+
+
+
+
+
+ 1979
+
+
+
+
+ 1980
+
+
+ YES
+
+
+
+
+
+ 1981
+
+
+
+
+ 1982
+
+
+ YES
+
+
+
+
+
+ 1983
+
+
+
+
+ 1986
+
+
+
+
+ 1987
+
+
+ YES
+
+
+
+
+
+ 1988
+
+
+ YES
+
+
+
+
+
+ 1998
+
+
+ YES
+
+
+
+
+
+ 1999
+
+
+
+
+ 2000
+
+
+
+
+ 2095
+
+
+
+
+ 2098
+
+
+
+
+ 2154
+
+
+ YES
+
+
+
+
+
+ 2155
+
+
+
+
+ 2246
+
+
+
+
+ 2248
+
+
+ YES
+
+
+
+
+
+
+
+
+ Sound Preferences View
+
+
+ 2250
+
+
+ YES
+
+
+
+
+
+
+
+ 2253
+
+
+ YES
+
+
+
+
+
+ 2254
+
+
+
+
+ 2257
+
+
+ YES
+
+
+
+
+
+ 2258
+
+
+ YES
+
+
+
+
+
+ 2262
+
+
+
+
+ 2265
+
+
+ YES
+
+
+
+
+
+ 2266
+
+
+
+
+ 2327
+
+
+ YES
+
+
+
+
+
+ 2328
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2329
+
+
+
+
+ 2330
+
+
+
+
+ 2331
+
+
+
+
+ 2332
+
+
+
+
+ 2339
+
+
+ YES
+
+
+
+ Emulation Preferences View
+
+
+ 2340
+
+
+
+
+ 2382
+
+
+ YES
+
+
+
+
+
+ 2383
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2384
+
+
+
+
+ 2385
+
+
+
+
+ 2386
+
+
+
+
+ 2387
+
+
+
+
+ 2388
+
+
+
+
+ 2389
+
+
+
+
+ 2390
+
+
+
+
+ 2391
+
+
+
+
+ 2392
+
+
+
+
+ 2393
+
+
+
+
+ 2394
+
+
+
+
+ 2395
+
+
+
+
+ 2396
+
+
+
+
+ 2397
+
+
+
+
+ 2398
+
+
+
+
+ 2399
+
+
+
+
+ 2427
+
+
+ YES
+
+
+
+
+
+
+ 2428
+
+
+ YES
+
+
+
+
+
+ 2429
+
+
+ YES
+
+
+
+
+
+ 2430
+
+
+
+
+ 2431
+
+
+ YES
+
+
+
+
+
+ 2432
+
+
+ YES
+
+
+
+
+
+ 2433
+
+
+ YES
+
+
+
+
+
+
+
+ 2434
+
+
+
+
+ 2435
+
+
+
+
+ 2436
+
+
+
+
+ 2437
+
+
+ YES
+
+
+
+
+
+
+
+ 2438
+
+
+
+
+ 2439
+
+
+
+
+ 2440
+
+
+
+
+ 2482
+
+
+
+
+ 2483
+
+
+
+
+ 2518
+
+
+ YES
+
+
+
+
+
+ 2519
+
+
+
+
+ 608
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 2556
+
+
+
+
+ 2609
+
+
+
+
+ 2610
+
+
+
+
+ 2653
+
+
+ ROM Info Panel Controller
+
+
+ 2789
+
+
+ YES
+
+
+
+
+
+ 2790
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2793
+
+
+ YES
+
+
+
+
+
+ 2794
+
+
+
+
+ 2799
+
+
+ YES
+
+
+
+
+
+ 2800
+
+
+
+
+ 2803
+
+
+ YES
+
+
+
+
+
+ 2804
+
+
+
+
+ 2807
+
+
+ YES
+
+
+
+
+
+ 2808
+
+
+
+
+ 2809
+
+
+ YES
+
+
+
+
+
+ 2810
+
+
+
+
+ 2811
+
+
+ YES
+
+
+
+
+
+ 2812
+
+
+
+
+ 2813
+
+
+ YES
+
+
+
+
+
+ 2814
+
+
+
+
+ 2815
+
+
+ YES
+
+
+
+
+
+ 2816
+
+
+ YES
+
+
+
+
+
+ 2817
+
+
+ YES
+
+
+
+
+
+ 2818
+
+
+
+
+ 2819
+
+
+
+
+ 2820
+
+
+
+
+ 2847
+
+
+ YES
+
+
+
+
+
+ 2848
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2863
+
+
+ YES
+
+
+
+
+
+ 2864
+
+
+
+
+ 2865
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2866
+
+
+
+
+ 2867
+
+
+
+
+ 2868
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 2869
+
+
+
+
+ 2870
+
+
+ YES
+
+
+
+
+
+ 2871
+
+
+ YES
+
+
+
+
+
+ 2872
+
+
+
+
+ 2873
+
+
+
+
+ 2874
+
+
+ YES
+
+
+
+
+
+ 2876
+
+
+ YES
+
+
+
+
+
+ 2877
+
+
+
+
+ 2878
+
+
+ File Migration Array Controller
+
+
+ 2894
+
+
+ YES
+
+
+
+
+
+ 2895
+
+
+ YES
+
+
+
+
+
+ 2896
+
+
+ YES
+
+
+
+
+
+ 2897
+
+
+ YES
+
+
+
+
+
+ 2900
+
+
+
+
+ 2901
+
+
+
+
+ 2902
+
+
+
+
+ 2903
+
+
+
+
+ 2954
+
+
+ YES
+
+
+
+
+
+ 2955
+
+
+
+
+ 3015
+
+
+ YES
+
+
+
+
+
+ 3042
+
+
+
+
+ 3063
+
+
+ YES
+
+
+
+
+
+
+ 3059
+
+
+ YES
+
+
+
+
+
+ 3060
+
+
+
+
+ 3061
+
+
+ YES
+
+
+
+
+
+ 3062
+
+
+
+
+ 2875
+
+
+
+
+ 3146
+
+
+
+
+ 3148
+
+
+ Firmware Panel Controller
+
+
+ 3204
+
+
+ YES
+
+
+
+
+
+ 3205
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 3206
+
+
+
+
+ 3207
+
+
+
+
+ 3208
+
+
+
+
+ 3209
+
+
+
+
+ 3210
+
+
+
+
+ 3211
+
+
+
+
+ 3213
+
+
+
+
+ 3214
+
+
+
+
+ 3456
+
+
+ YES
+
+
+
+
+
+ 3457
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3458
+
+
+ YES
+
+
+
+
+
+ 3459
+
+
+ YES
+
+
+
+
+
+ 3460
+
+
+ YES
+
+
+
+
+
+ 3461
+
+
+ YES
+
+
+
+
+
+ 3462
+
+
+
+
+ 3463
+
+
+
+
+ 3464
+
+
+
+
+ 3465
+
+
+
+
+ 3471
+
+
+ YES
+
+
+
+
+
+ 3472
+
+
+
+
+ 3480
+
+
+ YES
+
+
+
+
+
+ 3481
+
+
+
+
+ 3482
+
+
+
+
+ 3488
+
+
+ YES
+
+
+
+
+
+ 3489
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3496
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3497
+
+
+
+
+ 3498
+
+
+
+
+ 3499
+
+
+ YES
+
+
+
+
+
+
+
+ 3501
+
+
+ YES
+
+
+
+
+
+ 3507
+
+
+ YES
+
+
+
+
+
+ 3508
+
+
+
+
+ 3509
+
+
+
+
+ 3516
+
+
+ YES
+
+
+
+
+
+ 3517
+
+
+
+
+ 3520
+
+
+ Preferences Window Controller
+
+
+ 3522
+
+
+
+
+ 3523
+
+
+
+
+ 3644
+
+
+
+
+ 3712
+
+
+ YES
+
+
+
+
+
+ 3713
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 3716
+
+
+ YES
+
+
+
+
+
+ 3717
+
+
+ YES
+
+
+
+
+
+
+ 3718
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3719
+
+
+
+
+ 3720
+
+
+
+
+ 3721
+
+
+
+
+ 3722
+
+
+ YES
+
+
+
+
+
+
+
+ 3723
+
+
+
+
+ 3724
+
+
+
+
+ 3725
+
+
+
+
+ 3732
+
+
+
+
+ 3733
+
+
+ YES
+
+
+
+
+
+ 3714
+
+
+ YES
+
+
+
+
+
+ 3715
+
+
+
+
+ 3747
+
+
+ YES
+
+
+
+
+
+
+
+ 3736
+
+
+ YES
+
+
+
+
+
+ 3742
+
+
+
+
+ 3737
+
+
+ YES
+
+
+
+
+
+ 3740
+
+
+ YES
+
+
+
+
+
+ 3741
+
+
+
+
+ 3738
+
+
+ YES
+
+
+
+
+
+ 3739
+
+
+
+
+ 3748
+
+
+ YES
+
+
+
+
+
+ 3749
+
+
+
+
+ 3751
+
+
+
+
+ 3752
+
+
+
+
+ 3784
+
+
+ YES
+
+
+
+
+
+ 3787
+
+
+ YES
+
+
+
+
+
+ 3788
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3648
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3667
+
+
+
+
+ 3666
+
+
+
+
+ 3664
+
+
+
+
+ 3663
+
+
+
+
+ 3662
+
+
+
+
+ 3661
+
+
+
+
+ 3660
+
+
+
+
+ 3659
+
+
+
+
+ 3658
+
+
+
+
+ 3657
+
+
+
+
+ 3656
+
+
+
+
+ 3655
+
+
+
+
+ 3654
+
+
+
+
+ 3653
+
+
+
+
+ 3652
+
+
+
+
+ 3651
+
+
+
+
+ 3650
+
+
+
+
+ 3649
+
+
+
+
+ 3790
+
+
+ YES
+
+
+
+
+
+ 3791
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3786
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3775
+
+
+ YES
+
+
+
+
+
+ 3773
+
+
+ YES
+
+
+
+
+
+ 3771
+
+
+ YES
+
+
+
+
+
+ 3779
+
+
+ YES
+
+
+
+ Depth Comparison Threshold Text Field
+
+
+ 3782
+
+
+ YES
+
+
+
+
+
+ 3783
+
+
+
+
+ 3780
+
+
+ YES
+
+
+
+
+
+ 3781
+
+
+
+
+ 3772
+
+
+
+
+ 3774
+
+
+
+
+ 3776
+
+
+
+
+ 3793
+
+
+ YES
+
+
+
+
+
+ 3794
+
+
+
+
+ 3798
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3803
+
+
+ YES
+
+
+
+
+
+ 3802
+
+
+ YES
+
+
+
+
+
+ 3801
+
+
+ YES
+
+
+
+
+
+ 3800
+
+
+ YES
+
+
+
+
+
+ 3799
+
+
+ YES
+
+
+
+
+
+ 3811
+
+
+
+
+ 3809
+
+
+ YES
+
+
+
+
+
+ 3810
+
+
+
+
+ 3808
+
+
+
+
+ 3807
+
+
+
+
+ 3806
+
+
+
+
+ 3837
+
+
+ YES
+
+
+
+
+
+ 3838
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3839
+
+
+
+
+ 3840
+
+
+
+
+ 3841
+
+
+
+
+ 3843
+
+
+ YES
+
+
+
+
+
+ 3844
+
+
+ YES
+
+
+
+
+
+ 3845
+
+
+ YES
+
+
+
+
+
+
+
+ 3846
+
+
+
+
+ 3847
+
+
+
+
+ 3849
+
+
+ YES
+
+
+
+
+
+ 3850
+
+
+
+
+ 3885
+
+
+ YES
+
+
+
+
+
+ 3899
+
+
+ YES
+
+
+
+
+
+ 3935
+
+
+ YES
+
+
+
+
+
+ 3936
+
+
+ YES
+
+
+
+
+
+
+
+ 3937
+
+
+
+
+ 3938
+
+
+
+
+ 3939
+
+
+
+
+ 3959
+
+
+ CocoaDS Sound Controller
+
+
+ 3965
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3966
+
+
+
+
+ 3967
+
+
+
+
+ 3968
+
+
+
+
+ 3969
+
+
+
+
+ 4024
+
+
+ YES
+
+
+
+
+
+ 4001
+
+
+ YES
+
+
+
+
+
+
+
+ 4004
+
+
+
+
+ 4003
+
+
+
+
+ 4002
+
+
+
+
+ 4027
+
+
+ YES
+
+
+
+
+
+ 4028
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4029
+
+
+ YES
+
+
+
+
+
+
+ 4030
+
+
+ YES
+
+
+
+
+
+ 4031
+
+
+
+
+ 4032
+
+
+ YES
+
+
+
+
+
+
+
+ 4033
+
+
+ YES
+
+
+
+
+
+ 4034
+
+
+
+
+ 4035
+
+
+ YES
+
+
+
+
+
+ 4036
+
+
+
+
+ 4037
+
+
+ YES
+
+
+
+
+
+ 4038
+
+
+
+
+ 4039
+
+
+ YES
+
+
+
+
+
+
+
+
+ 4040
+
+
+ YES
+
+
+
+
+
+ 4041
+
+
+
+
+ 4043
+
+
+ YES
+
+
+
+
+
+ 4044
+
+
+
+
+ 4045
+
+
+ YES
+
+
+
+
+
+ 4046
+
+
+
+
+ 4047
+
+
+ YES
+
+
+
+
+
+
+ 4048
+
+
+ YES
+
+
+
+
+
+ 4049
+
+
+
+
+ 4050
+
+
+ YES
+
+
+
+
+
+ 4051
+
+
+
+
+ 4053
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Internal Firmware Drawer Content View
+
+
+ 4054
+
+
+ Internal Firmware Drawer
+
+
+ 4059
+
+
+ YES
+
+
+
+
+
+ 4060
+
+
+
+
+ 4066
+
+
+ YES
+
+
+
+
+
+ 4067
+
+
+
+
+ 4069
+
+
+ YES
+
+
+
+
+
+ 4070
+
+
+ YES
+
+
+
+
+
+ 4071
+
+
+ YES
+
+
+
+
+
+ 4072
+
+
+ YES
+
+
+
+
+
+ 4073
+
+
+ YES
+
+
+
+
+
+ 4074
+
+
+ YES
+
+
+
+
+
+ 4075
+
+
+ YES
+
+
+
+
+
+ 4076
+
+
+ YES
+
+
+
+
+
+ 4078
+
+
+ YES
+
+
+
+
+
+ 4079
+
+
+ YES
+
+
+
+
+
+ 4080
+
+
+ YES
+
+
+
+
+
+ 4081
+
+
+ YES
+
+
+
+
+
+ 4082
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4083
+
+
+
+
+ 4084
+
+
+
+
+ 4085
+
+
+
+
+ 4086
+
+
+
+
+ 4087
+
+
+
+
+ 4088
+
+
+
+
+ 4089
+
+
+
+
+ 4090
+
+
+
+
+ 4091
+
+
+
+
+ 4092
+
+
+
+
+ 4093
+
+
+
+
+ 4094
+
+
+
+
+ 4095
+
+
+
+
+ 4096
+
+
+
+
+ 4097
+
+
+
+
+ 4098
+
+
+
+
+ 4099
+
+
+ YES
+
+
+
+
+
+ 4100
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4101
+
+
+
+
+ 4102
+
+
+
+
+ 4103
+
+
+
+
+ 4104
+
+
+
+
+ 4105
+
+
+
+
+ 4106
+
+
+
+
+ 4107
+
+
+
+
+ 4109
+
+
+
+
+ 4110
+
+
+
+
+ 4111
+
+
+
+
+ 4112
+
+
+
+
+ 4113
+
+
+
+
+ 4114
+
+
+
+
+ 4115
+
+
+
+
+ 4116
+
+
+
+
+ 4179
+
+
+ YES
+
+
+
+
+
+ 4180
+
+
+
+
+ 4181
+
+
+ YES
+
+
+
+
+
+ 4182
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4191
+
+
+ YES
+
+
+
+
+
+ 4192
+
+
+ YES
+
+
+
+
+
+ 4193
+
+
+ YES
+
+
+
+
+
+ 4194
+
+
+ YES
+
+
+
+
+
+ 4195
+
+
+ YES
+
+
+
+
+
+ 4196
+
+
+ YES
+
+
+
+
+
+ 4197
+
+
+ YES
+
+
+
+
+
+ 4198
+
+
+ YES
+
+
+
+
+
+ 4199
+
+
+ YES
+
+
+
+
+
+ 4200
+
+
+ YES
+
+
+
+
+
+ 4201
+
+
+ YES
+
+
+
+
+
+ 4202
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4203
+
+
+
+
+ 4204
+
+
+
+
+ 4205
+
+
+
+
+ 4206
+
+
+
+
+ 4207
+
+
+
+
+ 4208
+
+
+
+
+ 4209
+
+
+
+
+ 4210
+
+
+
+
+ 4211
+
+
+
+
+ 4212
+
+
+
+
+ 4213
+
+
+
+
+ 4214
+
+
+
+
+ 4215
+
+
+
+
+ 4216
+
+
+
+
+ 4217
+
+
+
+
+ 4218
+
+
+
+
+ 4219
+
+
+ YES
+
+
+
+
+
+ 4220
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4221
+
+
+
+
+ 4222
+
+
+
+
+ 4223
+
+
+
+
+ 4224
+
+
+
+
+ 4225
+
+
+
+
+ 4226
+
+
+
+
+ 4227
+
+
+
+
+ 4228
+
+
+
+
+ 4229
+
+
+
+
+ 4230
+
+
+
+
+ 4231
+
+
+
+
+ 4232
+
+
+
+
+ 4233
+
+
+
+
+ 4234
+
+
+
+
+ 4240
+
+
+ YES
+
+
+
+
+
+ 4241
+
+
+
+
+ 4277
+
+
+ YES
+
+
+
+
+
+ 4278
+
+
+
+
+ 4559
+
+
+ YES
+
+
+
+
+
+ 4560
+
+
+
+
+ 4561
+
+
+ YES
+
+
+
+
+
+ 4562
+
+
+
+
+ 4565
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 4574
+
+
+ YES
+
+
+
+
+
+ 4575
+
+
+ YES
+
+
+
+
+
+ 4576
+
+
+ YES
+
+
+
+
+
+
+ 4577
+
+
+
+
+ 4578
+
+
+
+
+ 4580
+
+
+
+
+ 4581
+
+
+ YES
+
+
+
+
+
+ 4582
+
+
+
+
+ 4583
+
+
+ YES
+
+
+
+
+
+ 4584
+
+
+
+
+ 4585
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ Internal Cheat View
+
+
+ 4586
+
+
+ YES
+
+
+
+
+
+ 4587
+
+
+ YES
+
+
+
+
+
+ 4588
+
+
+ YES
+
+
+
+
+
+ 4589
+
+
+ YES
+
+
+
+
+
+ 4590
+
+
+ YES
+
+
+
+
+
+ 4593
+
+
+ YES
+
+
+
+
+
+ 4594
+
+
+
+
+ 4597
+
+
+ YES
+
+
+
+
+
+ 4598
+
+
+
+
+ 4599
+
+
+
+
+ 4600
+
+
+
+
+ 4601
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 4602
+
+
+
+
+ 4603
+
+
+
+
+ 4604
+
+
+
+
+ 4605
+
+
+
+
+ 4606
+
+
+
+
+ 4610
+
+
+ YES
+
+
+
+
+ Action Replay Cheat View
+
+
+ 4632
+
+
+ YES
+
+
+
+
+
+ 4633
+
+
+ YES
+
+
+
+
+
+
+
+ 4634
+
+
+
+
+ 4635
+
+
+
+
+ 4636
+
+
+
+
+ 4637
+
+
+
+
+ 4639
+
+
+ YES
+
+
+
+
+
+ 4640
+
+
+
+
+ 4647
+
+
+
+
+ 4656
+
+
+ Cheats List Array Controller
+
+
+ 4660
+
+
+ YES
+
+
+
+
+
+ 4661
+
+
+ YES
+
+
+
+
+
+ 4662
+
+
+
+
+ 4663
+
+
+
+
+ 4664
+
+
+ YES
+
+
+
+
+
+ 4665
+
+
+
+
+ 4673
+
+
+ YES
+
+
+
+
+ Code Breaker Cheat View
+
+
+ 4693
+
+
+ YES
+
+
+
+
+
+ 4694
+
+
+
+
+ 4697
+
+
+
+
+ 4711
+
+
+ Cheat Selected Item Controller
+
+
+ 4715
+
+
+
+
+ 4731
+
+
+ Cheat Window Controller
+
+
+ 4745
+
+
+ YES
+
+
+
+
+
+ 4746
+
+
+
+
+ 4607
+
+
+ YES
+
+
+
+
+
+ 4778
+
+
+
+
+ 4792
+
+
+ YES
+
+
+
+
+
+
+
+
+ 4795
+
+
+
+
+ 4796
+
+
+
+
+ 4797
+
+
+ YES
+
+
+
+
+
+
+ 4798
+
+
+
+
+ 4799
+
+
+ YES
+
+
+
+
+
+ 4800
+
+
+ YES
+
+
+
+
+
+ 4801
+
+
+
+
+ 4802
+
+
+
+
+ 4809
+
+
+ YES
+
+
+
+
+
+ 4810
+
+
+
+
+ 4811
+
+
+ YES
+
+
+
+
+
+ 4812
+
+
+
+
+ 4814
+
+
+ YES
+
+
+
+
+
+ 4815
+
+
+
+
+ 4817
+
+
+ YES
+
+
+
+
+
+ 4818
+
+
+
+
+ 4822
+
+
+ YES
+
+
+
+
+
+ 4823
+
+
+
+
+ 4850
+
+
+ YES
+
+
+
+
+
+
+ Exact Value Search View
+
+
+ 4851
+
+
+ YES
+
+
+
+
+
+
+
+
+ Comparative Search Continue View
+
+
+ 4858
+
+
+ YES
+
+
+
+
+
+ 4859
+
+
+ YES
+
+
+
+
+
+ 4860
+
+
+ YES
+
+
+
+
+
+ 4861
+
+
+ YES
+
+
+
+
+
+ 4862
+
+
+ YES
+
+
+
+
+
+ 4863
+
+
+ YES
+
+
+
+
+
+ 4864
+
+
+
+
+ 4865
+
+
+
+
+ 4866
+
+
+
+
+ 4867
+
+
+
+
+ 4868
+
+
+
+
+ 4869
+
+
+
+
+ 4871
+
+
+ YES
+
+
+
+
+
+ 4872
+
+
+ YES
+
+
+
+
+
+ 4873
+
+
+
+
+ 4874
+
+
+
+
+ 4876
+
+
+ YES
+
+
+
+
+
+ 4877
+
+
+ YES
+
+
+
+
+
+ 4878
+
+
+
+
+ 4879
+
+
+ YES
+
+
+
+
+ 4880
+
+
+ YES
+
+
+
+
+
+ Comparative Search Start View
+
+
+ 4887
+
+
+ YES
+
+
+
+
+
+ 4888
+
+
+ YES
+
+
+
+
+
+ 4889
+
+
+ YES
+
+
+
+
+
+ 4890
+
+
+
+
+ 4891
+
+
+
+
+ 4892
+
+
+
+
+ 4899
+
+
+
+
+ 4900
+
+
+ YES
+
+
+
+
+
+ 4901
+
+
+ YES
+
+
+
+
+
+ 4902
+
+
+ YES
+
+
+
+
+
+
+ 4903
+
+
+
+
+ 4904
+
+
+
+
+ 4906
+
+
+ YES
+
+
+
+
+
+ 4907
+
+
+
+
+ 4908
+
+
+ YES
+
+
+
+
+
+ 4909
+
+
+
+
+ 4910
+
+
+ YES
+
+
+
+
+
+ 4911
+
+
+ YES
+
+
+
+
+
+ 4912
+
+
+ YES
+
+
+
+
+
+
+ 4913
+
+
+
+
+ 4914
+
+
+
+
+ 4916
+
+
+ Cheat Search List Array Controller
+
+
+ 4947
+
+
+
+
+ 5003
+
+
+ YES
+
+
+
+
+
+
+
+ 5004
+
+
+ YES
+
+
+
+
+
+ 5005
+
+
+ YES
+
+
+
+
+
+ 5006
+
+
+ YES
+
+
+
+
+
+ 5007
+
+
+
+
+ 5008
+
+
+
+
+ 5009
+
+
+
+
+ 5066
+
+
+ YES
+
+
+
+
+
+ 5067
+
+
+
+
+ 5068
+
+
+ YES
+
+
+
+
+
+ 5069
+
+
+
+
+ 5080
+
+
+ YES
+
+
+
+
+
+ 5081
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 5082
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5083
+
+
+
+
+ 5084
+
+
+
+
+ 5085
+
+
+ YES
+
+
+
+
+
+
+ 5086
+
+
+
+
+ 5087
+
+
+ YES
+
+
+
+
+
+ 5088
+
+
+ YES
+
+
+
+
+
+ 5089
+
+
+
+
+ 5097
+
+
+
+
+ 5098
+
+
+ YES
+
+
+
+
+
+ 5099
+
+
+
+
+ 5100
+
+
+ YES
+
+
+
+
+
+ 5101
+
+
+
+
+ 5102
+
+
+ YES
+
+
+
+
+
+ 5103
+
+
+
+
+ 5104
+
+
+ YES
+
+
+
+
+
+ 5105
+
+
+
+
+ 5106
+
+
+ YES
+
+
+
+
+
+ 5107
+
+
+
+
+ 5111
+
+
+ YES
+
+
+
+
+
+ 5112
+
+
+
+
+ 5115
+
+
+ Cheat Database Array Controller
+
+
+ 5127
+
+
+ YES
+
+
+
+
+
+ 5128
+
+
+
+
+ 5133
+
+
+ YES
+
+
+
+
+
+ 5134
+
+
+
+
+ 5135
+
+
+ YES
+
+
+
+
+
+ 5136
+
+
+
+
+ 5140
+
+
+ YES
+
+
+
+
+
+ 5141
+
+
+
+
+ 5168
+
+
+ YES
+
+
+
+
+
+ 5169
+
+
+
+
+ 5171
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5172
+
+
+ YES
+
+
+
+
+
+ 5173
+
+
+ YES
+
+
+
+
+
+ 5174
+
+
+ YES
+
+
+
+
+
+ 5175
+
+
+ YES
+
+
+
+
+
+ 5176
+
+
+
+
+ 5177
+
+
+
+
+ 5178
+
+
+
+
+ 5179
+
+
+
+
+ 5193
+
+
+
+
+ 24
+
+
+ YES
+
+
+
+
+
+
+
+
+ 23
+
+
+
+
+ 239
+
+
+
+
+ 5
+
+
+
+
+ 92
+
+
+
+
+ 5329
+
+
+
+
+ 490
+
+
+ YES
+
+
+
+
+
+ 5419
+
+
+
+
+ 5420
+
+
+
+
+ 5421
+
+
+
+
+ 5450
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 2287
+
+
+ YES
+
+
+
+
+
+ 2288
+
+
+
+
+ 2289
+
+
+ YES
+
+
+
+
+
+ 2290
+
+
+
+
+ 1507
+
+
+ YES
+
+
+
+
+
+ 1508
+
+
+ YES
+
+
+
+
+
+ 1509
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1532
+
+
+
+
+ 1512
+
+
+
+
+ 1511
+
+
+
+
+ 1510
+
+
+
+
+ 1577
+
+
+ YES
+
+
+
+
+
+ 1578
+
+
+ YES
+
+
+
+
+
+ 1579
+
+
+
+
+ 2291
+
+
+ YES
+
+
+
+
+
+ 2299
+
+
+
+
+ 2292
+
+
+ YES
+
+
+
+
+
+ 2293
+
+
+ YES
+
+
+
+
+
+ 2294
+
+
+ YES
+
+
+
+
+
+
+
+ 5427
+
+
+
+
+ 2298
+
+
+
+
+ 2297
+
+
+
+
+ 3994
+
+
+ YES
+
+
+
+
+
+ 3995
+
+
+ YES
+
+
+
+
+
+ 3996
+
+
+ YES
+
+
+
+
+
+
+ 3997
+
+
+
+
+ 3998
+
+
+
+
+ 3992
+
+
+ YES
+
+
+
+
+
+ 3993
+
+
+
+
+ 1525
+
+
+ YES
+
+
+
+
+
+ 1526
+
+
+ YES
+
+
+
+
+
+ 1527
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 1531
+
+
+
+
+ 1530
+
+
+
+
+ 1529
+
+
+
+
+ 1528
+
+
+
+
+ 1580
+
+
+
+
+ 1581
+
+
+
+
+ 5648
+
+
+
+
+ 5649
+
+
+
+
+ 5651
+
+
+ YES
+
+
+
+
+
+ 5652
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5653
+
+
+ YES
+
+
+
+
+
+ 5654
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5658
+
+
+ YES
+
+
+
+
+
+ 5659
+
+
+ YES
+
+
+
+
+
+ 5660
+
+
+
+
+ 5661
+
+
+
+
+ 5665
+
+
+ YES
+
+
+
+
+
+ 5666
+
+
+ YES
+
+
+
+
+
+ 5667
+
+
+ YES
+
+
+
+
+
+ 5668
+
+
+ YES
+
+
+
+
+
+ 5669
+
+
+ YES
+
+
+
+
+
+ 5670
+
+
+ YES
+
+
+
+
+
+
+
+ 5671
+
+
+
+
+ 5672
+
+
+
+
+ 5673
+
+
+
+
+ 5674
+
+
+ YES
+
+
+
+
+
+ 5675
+
+
+ YES
+
+
+
+
+
+
+
+ 5676
+
+
+
+
+ 5677
+
+
+
+
+ 5678
+
+
+
+
+ 5679
+
+
+ YES
+
+
+
+
+
+ 5680
+
+
+ YES
+
+
+
+
+
+
+
+ 5681
+
+
+
+
+ 5682
+
+
+
+
+ 5683
+
+
+
+
+ 5684
+
+
+ YES
+
+
+
+
+
+ 5685
+
+
+ YES
+
+
+
+
+
+
+
+ 5686
+
+
+
+
+ 5687
+
+
+
+
+ 5688
+
+
+
+
+ 5689
+
+
+
+
+ 5702
+
+
+
+
+ 2553
+
+
+
+
+ 5713
+
+
+ About Window Controller
+
+
+ 5933
+
+
+ YES
+
+
+
+
+ Export ROM Save Panel Accessory
+
+
+ 5934
+
+
+ YES
+
+
+
+
+
+ 5935
+
+
+ YES
+
+
+
+
+
+ 5936
+
+
+
+
+ 5937
+
+
+ YES
+
+
+
+
+
+ 5938
+
+
+ YES
+
+
+
+
+
+
+
+ 5939
+
+
+
+
+ 5942
+
+
+
+
+ 5963
+
+
+
+
+ 6131
+
+
+ YES
+
+
+
+
+
+
+
+
+ 6132
+
+
+ YES
+
+
+
+
+
+
+
+ 6133
+
+
+
+
+ 6134
+
+
+
+
+ 6135
+
+
+
+
+ 6159
+
+
+ YES
+
+
+
+
+
+ 6160
+
+
+
+
+ 6161
+
+
+ YES
+
+
+
+
+
+ 6162
+
+
+
+
+ 6168
+
+
+ YES
+
+
+
+
+
+ 6169
+
+
+ YES
+
+
+
+
+
+
+ 6170
+
+
+
+
+ 6171
+
+
+ YES
+
+
+
+
+
+ 6172
+
+
+ YES
+
+
+
+
+
+
+ 6173
+
+
+
+
+ 6174
+
+
+
+
+ 6177
+
+
+
+
+ 6180
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 6182
+
+
+ YES
+
+
+
+
+
+ 6183
+
+
+ YES
+
+
+
+
+
+ 6184
+
+
+ YES
+
+
+
+
+
+
+
+ 6185
+
+
+
+
+ 6186
+
+
+
+
+ 6187
+
+
+
+
+ 6188
+
+
+ YES
+
+
+
+
+
+
+
+ 6189
+
+
+
+
+ 6190
+
+
+
+
+ 6191
+
+
+
+
+ 6233
+
+
+
+
+ 6234
+
+
+
+
+ 3777
+
+
+ YES
+
+
+
+
+
+ 3778
+
+
+
+
+ 3804
+
+
+ YES
+
+
+
+
+
+ 3805
+
+
+
+
+ 6238
+
+
+
+
+ 6295
+
+
+ YES
+
+
+
+
+
+ 6296
+
+
+ YES
+
+
+
+
+ 6352
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Support Request Form View
+
+
+ 6353
+
+
+ YES
+
+
+
+
+
+ 6354
+
+
+ YES
+
+
+
+
+
+ 6355
+
+
+ YES
+
+
+
+
+
+ 6356
+
+
+ YES
+
+
+
+
+
+ 6357
+
+
+ YES
+
+
+
+
+
+ 6358
+
+
+ YES
+
+
+
+
+
+ 6359
+
+
+ YES
+
+
+
+
+
+ 6360
+
+
+ YES
+
+
+
+
+
+ 6361
+
+
+
+
+ 6362
+
+
+ YES
+
+
+
+
+
+ 6363
+
+
+ YES
+
+
+
+
+
+ 6364
+
+
+
+
+ 6365
+
+
+ YES
+
+
+
+
+
+ 6366
+
+
+ YES
+
+
+
+
+
+ 6368
+
+
+
+
+ 6369
+
+
+ YES
+
+
+
+
+
+ 6374
+
+
+
+
+ 6376
+
+
+
+
+ 6377
+
+
+
+
+ 6378
+
+
+
+
+ 6379
+
+
+
+
+ 6380
+
+
+
+
+ 6381
+
+
+
+
+ 6382
+
+
+
+
+ 6383
+
+
+
+
+ 6384
+
+
+
+
+ 6385
+
+
+
+
+ 6386
+
+
+
+
+ 6387
+
+
+
+
+ 6388
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bug Report Form View
+
+
+ 6389
+
+
+ YES
+
+
+
+
+
+ 6390
+
+
+ YES
+
+
+
+
+
+ 6391
+
+
+ YES
+
+
+
+
+
+ 6392
+
+
+ YES
+
+
+
+
+
+ 6393
+
+
+ YES
+
+
+
+
+
+ 6394
+
+
+ YES
+
+
+
+
+
+ 6395
+
+
+ YES
+
+
+
+
+
+ 6396
+
+
+ YES
+
+
+
+
+
+ 6397
+
+
+
+
+ 6398
+
+
+ YES
+
+
+
+
+
+ 6399
+
+
+ YES
+
+
+
+
+
+ 6400
+
+
+
+
+ 6401
+
+
+ YES
+
+
+
+
+
+ 6402
+
+
+ YES
+
+
+
+
+
+ 6405
+
+
+ YES
+
+
+
+
+
+ 6406
+
+
+ YES
+
+
+
+
+
+ 6407
+
+
+
+
+ 6408
+
+
+ YES
+
+
+
+
+
+ 6413
+
+
+
+
+ 6414
+
+
+
+
+ 6415
+
+
+
+
+ 6418
+
+
+
+
+ 6419
+
+
+
+
+ 6420
+
+
+
+
+ 6421
+
+
+
+
+ 6422
+
+
+
+
+ 6423
+
+
+
+
+ 6424
+
+
+
+
+ 6425
+
+
+
+
+ 6426
+
+
+
+
+ 6427
+
+
+
+
+ 6428
+
+
+
+
+ 6429
+
+
+
+
+ 6430
+
+
+ YES
+
+
+
+
+
+
+
+ Troubleshooting Info View
+
+
+ 6431
+
+
+ YES
+
+
+
+
+
+
+
+ 6432
+
+
+ YES
+
+
+
+
+
+ 6433
+
+
+ YES
+
+
+
+
+
+ 6434
+
+
+
+
+ 6435
+
+
+
+
+ 6436
+
+
+
+
+ 6437
+
+
+
+
+ 6438
+
+
+
+
+ 6440
+
+
+
+
+ 6441
+
+
+ Troubleshooting Window Controller
+
+
+ 6484
+
+
+ YES
+
+
+
+
+
+ 6485
+
+
+
+
+ 6486
+
+
+ YES
+
+
+
+
+
+
+
+ 6487
+
+
+
+
+ 6488
+
+
+
+
+ 6489
+
+
+
+
+ 6491
+
+
+ YES
+
+
+
+
+
+
+
+ 6492
+
+
+
+
+ 6493
+
+
+
+
+ 6494
+
+
+
+
+ 6496
+
+
+ YES
+
+
+
+
+
+
+
+ 6497
+
+
+
+
+ 6498
+
+
+
+
+ 6499
+
+
+
+
+ 6611
+
+
+ YES
+
+
+
+
+
+ 6612
+
+
+
+
+ 6617
+
+
+ YES
+
+
+
+
+
+ 6618
+
+
+ YES
+
+
+
+
+
+ 6619
+
+
+
+
+ 6622
+
+
+ YES
+
+
+
+
+
+ 6623
+
+
+ YES
+
+
+
+
+
+ 6624
+
+
+
+
+ 6630
+
+
+ YES
+
+
+
+
+
+ 6631
+
+
+
+
+ 6651
+
+
+
+
+ 6652
+
+
+ Emulation Control Controller
+
+
+ 6931
+
+
+
+
+ 6998
+
+
+
+
+ 6999
+
+
+
+
+ 7002
+
+
+
+
+ 7014
+
+
+ YES
+
+
+
+
+
+
+
+ Input Preferences View
+
+
+ 7168
+
+
+ YES
+
+
+
+
+
+ 7169
+
+
+
+
+ 7171
+
+
+ YES
+
+
+
+
+
+ 7172
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 7173
+
+
+ YES
+
+
+
+
+
+ 7174
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7175
+
+
+ YES
+
+
+
+
+
+ 7176
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7179
+
+
+ YES
+
+
+
+
+
+ 7180
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7182
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 7183
+
+
+ YES
+
+
+
+
+
+ 7184
+
+
+ YES
+
+
+
+
+
+ 7185
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7186
+
+
+
+
+ 7187
+
+
+
+
+ 7188
+
+
+
+
+ 7189
+
+
+
+
+ 7191
+
+
+
+
+ 7192
+
+
+
+
+ 7210
+
+
+ YES
+
+
+
+
+
+ 7211
+
+
+ YES
+
+
+
+
+
+ 7212
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7213
+
+
+
+
+ 7214
+
+
+
+
+ 7215
+
+
+
+
+ 7216
+
+
+ YES
+
+
+
+
+
+ 7217
+
+
+
+
+ 7218
+
+
+
+
+ 7219
+
+
+
+
+ 7220
+
+
+
+
+ 7221
+
+
+
+
+ 7222
+
+
+
+
+ 7223
+
+
+
+
+ 7224
+
+
+
+
+ 7225
+
+
+ YES
+
+
+
+
+
+ 7226
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7227
+
+
+ YES
+
+
+
+
+
+ 7228
+
+
+ YES
+
+
+
+
+
+ 7229
+
+
+ YES
+
+
+
+
+
+ 7230
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7231
+
+
+
+
+ 7232
+
+
+
+
+ 7233
+
+
+
+
+ 7234
+
+
+
+
+ 7235
+
+
+
+
+ 7236
+
+
+
+
+ 7237
+
+
+
+
+ 7238
+
+
+
+
+ 7239
+
+
+
+
+ 7240
+
+
+
+
+ 7241
+
+
+
+
+ 7266
+
+
+ YES
+
+
+
+
+
+ 7267
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7268
+
+
+
+
+ 7269
+
+
+
+
+ 7270
+
+
+
+
+ 7271
+
+
+
+
+ 7272
+
+
+
+
+ 7273
+
+
+
+
+ 7274
+
+
+
+
+ 7275
+
+
+
+
+ 7276
+
+
+
+
+ 7277
+
+
+
+
+ 7278
+
+
+
+
+ 7279
+
+
+
+
+ 7280
+
+
+
+
+ 7293
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7285
+
+
+ YES
+
+
+
+
+
+ 7286
+
+
+
+
+ 7287
+
+
+ YES
+
+
+
+
+
+ 7288
+
+
+ YES
+
+
+
+
+
+ 7289
+
+
+ YES
+
+
+
+
+
+ 7292
+
+
+
+
+ 7290
+
+
+ YES
+
+
+
+
+
+ 7291
+
+
+ YES
+
+
+
+
+
+ 7294
+
+
+
+
+ 7295
+
+
+
+
+ 7301
+
+
+ YES
+
+
+
+
+
+ 7302
+
+
+
+
+ 7305
+
+
+ YES
+
+
+
+
+
+ 7308
+
+
+
+
+ 7309
+
+
+ YES
+
+
+
+
+
+ 7312
+
+
+
+
+ 7313
+
+
+ YES
+
+
+
+
+
+ 7316
+
+
+
+
+ 7317
+
+
+ YES
+
+
+
+
+
+ 7320
+
+
+
+
+ 7353
+
+
+ Input Settings Controller
+
+
+ 7354
+
+
+ YES
+
+
+
+
+
+ 7355
+
+
+
+
+ 7358
+
+
+ YES
+
+
+
+
+
+ 7359
+
+
+
+
+ 7392
+
+
+ YES
+
+
+
+
+
+ 7393
+
+
+
+
+ 7395
+
+
+ YES
+
+
+
+
+
+ 7396
+
+
+
+
+ 7398
+
+
+ YES
+
+
+
+
+
+ 7399
+
+
+
+
+ 7401
+
+
+ YES
+
+
+
+
+
+ 7402
+
+
+
+
+ 7404
+
+
+ YES
+
+
+
+
+
+ 7405
+
+
+
+
+ 7433
+
+
+ YES
+
+
+
+
+
+ 7434
+
+
+
+
+ 7436
+
+
+ YES
+
+
+
+
+
+ 7437
+
+
+
+
+ 7439
+
+
+ YES
+
+
+
+
+
+ 7440
+
+
+
+
+ 7442
+
+
+ YES
+
+
+
+
+
+ 7443
+
+
+
+
+ 7445
+
+
+ YES
+
+
+
+
+
+ 7446
+
+
+
+
+ 7449
+
+
+ YES
+
+
+
+
+
+ 7450
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7451
+
+
+ YES
+
+
+
+
+
+ 7452
+
+
+
+
+ 7454
+
+
+ YES
+
+
+
+
+
+ 7455
+
+
+ YES
+
+
+
+
+
+ 7456
+
+
+ YES
+
+
+
+
+
+ 7457
+
+
+ YES
+
+
+
+
+
+ 7458
+
+
+ YES
+
+
+
+
+
+ 7459
+
+
+ YES
+
+
+
+
+
+ 7460
+
+
+ YES
+
+
+
+
+
+ 7462
+
+
+ YES
+
+
+
+
+
+ 7463
+
+
+ YES
+
+
+
+
+
+ 7464
+
+
+ YES
+
+
+
+
+
+ 7465
+
+
+
+
+ 7466
+
+
+
+
+ 7468
+
+
+
+
+ 7469
+
+
+
+
+ 7470
+
+
+
+
+ 7471
+
+
+
+
+ 7472
+
+
+
+
+ 7473
+
+
+
+
+ 7474
+
+
+
+
+ 7486
+
+
+ YES
+
+
+
+
+
+ 7487
+
+
+ YES
+
+
+
+
+
+ 7488
+
+
+
+
+ 7489
+
+
+
+
+ 7461
+
+
+ YES
+
+
+
+
+
+ 7467
+
+
+
+
+ 7515
+
+
+ YES
+
+
+
+
+
+ 7516
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 7517
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7521
+
+
+
+
+ 7520
+
+
+
+
+ 7519
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7518
+
+
+
+
+ 7526
+
+
+ YES
+
+
+
+
+
+ 7525
+
+
+ YES
+
+
+
+
+
+ 7522
+
+
+ YES
+
+
+
+
+
+ 7531
+
+
+
+
+ 7528
+
+
+
+
+ 7537
+
+
+ YES
+
+
+
+
+
+ 7540
+
+
+
+
+ 7541
+
+
+ YES
+
+
+
+
+
+ 7542
+
+
+
+
+ 7543
+
+
+ YES
+
+
+
+
+
+ 7544
+
+
+
+
+ 7545
+
+
+ YES
+
+
+
+
+
+ 7546
+
+
+
+
+ 7551
+
+
+ YES
+
+
+
+
+
+ 7552
+
+
+
+
+ 7553
+
+
+ YES
+
+
+
+
+
+ 7554
+
+
+
+
+ 7555
+
+
+ YES
+
+
+
+
+
+ 7556
+
+
+
+
+ 7583
+
+
+ YES
+
+
+
+
+
+ 7584
+
+
+
+
+ 7128
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7132
+
+
+
+
+ 7131
+
+
+
+
+ 7130
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7129
+
+
+
+
+ 7137
+
+
+ YES
+
+
+
+
+
+ 7136
+
+
+ YES
+
+
+
+
+
+ 7135
+
+
+ YES
+
+
+
+
+
+ 7134
+
+
+ YES
+
+
+
+
+
+ 7133
+
+
+ YES
+
+
+
+
+
+ 7142
+
+
+
+
+ 7141
+
+
+
+
+ 7140
+
+
+
+
+ 7139
+
+
+
+
+ 7138
+
+
+
+
+ 7594
+
+
+ YES
+
+
+
+
+
+ 7595
+
+
+ YES
+
+
+
+
+
+ 7596
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 7597
+
+
+
+
+ 7598
+
+
+
+
+ 7599
+
+
+
+
+ 7601
+
+
+
+
+ 7602
+
+
+
+
+ 7603
+
+
+
+
+ 7600
+
+
+
+
+ 7604
+
+
+
+
+ 7605
+
+
+ YES
+
+
+
+
+
+ 7606
+
+
+ YES
+
+
+
+
+
+ 7607
+
+
+ YES
+
+
+
+
+
+
+ 7610
+
+
+
+
+ 7612
+
+
+
+
+ 7624
+
+
+ YES
+
+
+
+
+
+ 7625
+
+
+
+
+ 7666
+
+
+ Input Profile Controller
+
+
+ 7707
+
+
+ YES
+
+
+
+
+
+ 7708
+
+
+ YES
+
+
+
+
+
+
+
+ 7715
+
+
+ YES
+
+
+
+
+
+ 7716
+
+
+
+
+ 7725
+
+
+ YES
+
+
+
+
+
+ 7726
+
+
+
+
+ 7729
+
+
+ YES
+
+
+
+
+
+ 7730
+
+
+
+
+ 7740
+
+
+
+
+ 7190
+
+
+
+
+ 7759
+
+
+ YES
+
+
+
+
+
+ 7760
+
+
+
+
+ 7761
+
+
+ YES
+
+
+
+
+
+ 7762
+
+
+ YES
+
+
+
+
+
+ 7765
+
+
+
+
+ 7766
+
+
+ YES
+
+
+
+
+
+ 7767
+
+
+
+
+ 7771
+
+
+ YES
+
+
+
+
+
+ 7772
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 7773
+
+
+
+
+ 7774
+
+
+
+
+ 7775
+
+
+
+
+ 7776
+
+
+
+
+ 7777
+
+
+
+
+ 7778
+
+
+
+
+ 7779
+
+
+
+
+ 7780
+
+
+ YES
+
+
+
+
+
+ 7781
+
+
+
+
+ 7792
+
+
+ YES
+
+
+
+
+
+ 7793
+
+
+ YES
+
+
+
+
+
+ 7794
+
+
+
+
+ 7802
+
+
+ YES
+
+
+
+
+
+ 7803
+
+
+
+
+ 7804
+
+
+ YES
+
+
+
+
+
+ 7805
+
+
+
+
+ 7806
+
+
+ YES
+
+
+
+
+
+ 7807
+
+
+
+
+ 7808
+
+
+ YES
+
+
+
+
+
+ 7809
+
+
+
+
+ 7810
+
+
+ YES
+
+
+
+
+
+ 7811
+
+
+
+
+ 7812
+
+
+ YES
+
+
+
+
+
+ 7813
+
+
+
+
+ 7817
+
+
+ YES
+
+
+
+
+
+ 7818
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7820
+
+
+ YES
+
+
+
+
+
+ 7821
+
+
+ YES
+
+
+
+
+
+ 7822
+
+
+ YES
+
+
+
+
+
+ 7823
+
+
+ YES
+
+
+
+
+
+ 7824
+
+
+ YES
+
+
+
+
+
+ 7825
+
+
+ YES
+
+
+
+
+
+ 7826
+
+
+
+
+ 7827
+
+
+
+
+ 7828
+
+
+
+
+ 7829
+
+
+
+
+ 7830
+
+
+
+
+ 7831
+
+
+
+
+ 7836
+
+
+ YES
+
+
+
+
+
+ 7837
+
+
+
+
+ 7838
+
+
+ YES
+
+
+
+
+
+ 7839
+
+
+ YES
+
+
+
+
+
+ 7840
+
+
+
+
+ 7843
+
+
+ YES
+
+
+
+
+
+ 7844
+
+
+
+
+ 7845
+
+
+ YES
+
+
+
+
+
+ 7846
+
+
+
+
+ 7847
+
+
+ YES
+
+
+
+
+
+ 7848
+
+
+
+
+ 7855
+
+
+ YES
+
+
+
+
+
+ 7856
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7886
+
+
+
+
+ 7899
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 125
+
+
+ YES
+
+
+
+
+
+ 126
+
+
+
+
+ 8009
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7971
+
+
+ YES
+
+
+
+
+
+ 7974
+
+
+
+
+ 7972
+
+
+ YES
+
+
+
+
+
+ 7973
+
+
+
+
+ 7978
+
+
+
+
+ 7987
+
+
+ YES
+
+
+
+
+
+ 7988
+
+
+ YES
+
+
+
+
+
+ 7989
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8003
+
+
+
+
+ 7996
+
+
+
+
+ 7995
+
+
+ YES
+
+
+
+
+
+ 7994
+
+
+
+
+ 7993
+
+
+
+
+ 7997
+
+
+ YES
+
+
+
+
+
+ 7998
+
+
+
+
+ 8012
+
+
+ YES
+
+
+
+
+
+ 8013
+
+
+ YES
+
+
+
+
+
+ 8014
+
+
+
+
+ 8015
+
+
+
+
+ 8016
+
+
+
+
+ 8021
+
+
+ YES
+
+
+
+
+
+ 8022
+
+
+ YES
+
+
+
+
+
+ 8023
+
+
+
+
+ 8024
+
+
+
+
+ 8025
+
+
+
+
+ 8030
+
+
+ YES
+
+
+
+
+
+ 8031
+
+
+ YES
+
+
+
+
+
+ 8032
+
+
+
+
+ 8033
+
+
+
+
+ 8034
+
+
+
+
+ 8043
+
+
+ YES
+
+
+
+
+
+ 8044
+
+
+
+
+ 8045
+
+
+ YES
+
+
+
+
+
+ 8046
+
+
+ YES
+
+
+
+
+
+ 8047
+
+
+
+
+ 8048
+
+
+ YES
+
+
+
+
+
+ 8049
+
+
+
+
+ 8075
+
+
+ YES
+
+
+
+
+
+ 8076
+
+
+ YES
+
+
+
+
+
+ 8077
+
+
+
+
+ 8078
+
+
+
+
+ 8084
+
+
+
+
+ 2604
+
+
+
+
+ 8134
+
+
+ YES
+
+
+
+
+
+ 8135
+
+
+ YES
+
+
+
+
+
+
+ 8160
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8136
+
+
+ YES
+
+
+
+
+
+ 8137
+
+
+
+
+ 8138
+
+
+ YES
+
+
+
+
+
+ 8139
+
+
+
+
+ 8140
+
+
+ YES
+
+
+
+
+
+ 8141
+
+
+
+
+ 8142
+
+
+ YES
+
+
+
+
+
+ 8143
+
+
+
+
+ 8144
+
+
+ YES
+
+
+
+
+
+ 8145
+
+
+
+
+ 8146
+
+
+ YES
+
+
+
+
+
+ 8147
+
+
+
+
+ 8161
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8148
+
+
+ YES
+
+
+
+
+
+ 8149
+
+
+
+
+ 8150
+
+
+ YES
+
+
+
+
+
+ 8151
+
+
+
+
+ 8152
+
+
+ YES
+
+
+
+
+
+ 8153
+
+
+
+
+ 8154
+
+
+ YES
+
+
+
+
+
+ 8155
+
+
+
+
+ 8156
+
+
+ YES
+
+
+
+
+
+ 8157
+
+
+
+
+ 8158
+
+
+ YES
+
+
+
+
+
+ 8159
+
+
+
+
+ 8162
+
+
+
+
+ 8164
+
+
+
+
+ 8181
+
+
+ YES
+
+
+
+
+
+
+ 8182
+
+
+ YES
+
+
+
+
+
+ 8183
+
+
+ YES
+
+
+
+
+
+ 8184
+
+
+ YES
+
+
+
+
+
+
+ 8185
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2342
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2359
+
+
+ YES
+
+
+
+
+
+ 2355
+
+
+ YES
+
+
+
+
+
+ 2365
+
+
+ YES
+
+
+
+
+
+ 2363
+
+
+ YES
+
+
+
+
+
+ 2358
+
+
+ YES
+
+
+
+
+
+ 2357
+
+
+ YES
+
+
+
+
+
+ 2349
+
+
+ YES
+
+
+
+
+
+ 2353
+
+
+ YES
+
+
+
+
+
+ 2347
+
+
+ YES
+
+
+
+
+
+ 2348
+
+
+
+
+ 2354
+
+
+
+
+ 2350
+
+
+
+
+ 2362
+
+
+
+
+ 2361
+
+
+
+
+ 2364
+
+
+
+
+ 2366
+
+
+
+
+ 2356
+
+
+
+
+ 2360
+
+
+
+
+ 2343
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 2374
+
+
+ YES
+
+
+
+
+
+ 4275
+
+
+ YES
+
+
+
+
+
+ 2565
+
+
+ YES
+
+
+
+
+
+ 2373
+
+
+ YES
+
+
+
+
+
+ 2372
+
+
+ YES
+
+
+
+
+
+ 2371
+
+
+ YES
+
+
+
+
+
+ 2378
+
+
+
+
+ 2377
+
+
+
+
+ 2376
+
+
+
+
+ 2566
+
+
+
+
+ 4276
+
+
+
+
+ 2375
+
+
+
+
+ 2341
+
+
+ YES
+
+
+
+
+
+
+ 6627
+
+
+ YES
+
+
+
+
+
+ 2345
+
+
+ YES
+
+
+
+
+
+ 2346
+
+
+
+
+ 6628
+
+
+
+
+ 6126
+
+
+ YES
+
+
+
+
+
+
+
+
+ 6127
+
+
+ YES
+
+
+
+
+
+
+
+ 8060
+
+
+ YES
+
+
+
+
+
+ 8058
+
+
+ YES
+
+
+
+
+
+ 8056
+
+
+ YES
+
+
+
+
+
+ 8057
+
+
+
+
+ 8059
+
+
+ YES
+
+
+
+
+
+ 8066
+
+
+
+
+ 8061
+
+
+
+
+ 6130
+
+
+
+
+ 6129
+
+
+
+
+ 6128
+
+
+
+
+ 2344
+
+
+ YES
+
+
+
+
+
+
+ 2369
+
+
+ YES
+
+
+
+
+
+ 2367
+
+
+ YES
+
+
+
+
+
+ 2368
+
+
+
+
+ 2370
+
+
+
+
+ 5186
+
+
+ YES
+
+
+
+
+
+ 5188
+
+
+ YES
+
+
+
+
+
+ 5189
+
+
+
+
+ 8186
+
+
+
+
+ 8188
+
+
+ YES
+
+
+
+
+
+ 8189
+
+
+
+
+ 8194
+
+
+ YES
+
+
+
+
+
+ 8195
+
+
+
+
+ 8245
+
+
+ YES
+
+
+
+
+
+ 8246
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8253
+
+
+
+
+ 8254
+
+
+
+
+ 8255
+
+
+
+
+ 8256
+
+
+
+
+ 8257
+
+
+
+
+ 8258
+
+
+
+
+ 8259
+
+
+
+
+ 8260
+
+
+
+
+ 8261
+
+
+
+
+ 8262
+
+
+
+
+ 8263
+
+
+
+
+ 8265
+
+
+
+
+ 8268
+
+
+
+
+ 8269
+
+
+
+
+ 8295
+
+
+
+
+ 8302
+
+
+ YES
+
+
+
+
+
+ 8303
+
+
+
+
+ 8307
+
+
+
+
+ 8308
+
+
+ YES
+
+
+
+
+
+ 8309
+
+
+
+
+ 8310
+
+
+
+
+ 8316
+
+
+
+
+ 8322
+
+
+ YES
+
+
+
+
+
+ 8323
+
+
+
+
+ 8331
+
+
+ YES
+
+
+
+
+
+ 8332
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8333
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8334
+
+
+
+
+ 8335
+
+
+
+
+ 8336
+
+
+ YES
+
+
+
+
+
+ 8338
+
+
+ YES
+
+
+
+
+
+ 8341
+
+
+
+
+ 8343
+
+
+ YES
+
+
+
+
+
+ 8344
+
+
+
+
+ 8351
+
+
+
+
+ 8352
+
+
+
+
+ 8354
+
+
+ SLOT-2 Device Array Controller
+
+
+ 8345
+
+
+ YES
+
+
+
+
+
+ 8346
+
+
+
+
+ 8356
+
+
+ SLOT-2 Window Delegate
+
+
+ 8365
+
+
+ YES
+
+
+
+
+
+ 8363
+
+
+ YES
+
+
+
+
+
+ 8364
+
+
+
+
+ 8366
+
+
+ YES
+
+
+
+
+
+ SLOT-2 None View
+
+
+ 8367
+
+
+ YES
+
+
+
+
+
+ 8368
+
+
+
+
+ 8402
+
+
+ YES
+
+
+
+
+
+
+ SLOT-2 Rumble Pak View
+
+
+ 8405
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ SLOT-2 GBA Cartridge View
+
+
+ 8369
+
+
+ YES
+
+
+
+
+ SLOT-2 MPCF Flash Card View
+
+
+ 8377
+
+
+ YES
+
+
+
+
+
+ 8387
+
+
+ YES
+
+
+
+
+
+ 8388
+
+
+
+
+ 8378
+
+
+ YES
+
+
+
+
+
+ 8379
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 8380
+
+
+
+
+ 8381
+
+
+
+
+ 8382
+
+
+
+
+ 8383
+
+
+
+
+ 8384
+
+
+
+
+ 8385
+
+
+
+
+ 8386
+
+
+
+
+ 8408
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ SLOT-2 Auto View
+
+
+ 8409
+
+
+ YES
+
+
+
+
+
+ 8410
+
+
+
+
+ 8411
+
+
+ YES
+
+
+
+
+
+ 8412
+
+
+
+
+ 8413
+
+
+ YES
+
+
+
+
+
+ 8414
+
+
+
+
+ 8415
+
+
+ YES
+
+
+
+
+
+ 8416
+
+
+
+
+ 8427
+
+
+
+
+ 8428
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Guitar Grip View
+
+
+ 8445
+
+
+ YES
+
+
+
+
+ SLOT-2 Memory Expansion Pack View
+
+
+ 8446
+
+
+ YES
+
+
+
+
+
+ 8447
+
+
+
+
+ 8448
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Piano View
+
+
+ 8451
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Paddle Controller View
+
+
+ 8454
+
+
+ YES
+
+
+
+
+ SLOT-2 PassME View
+
+
+ 8455
+
+
+ YES
+
+
+
+
+
+ 8456
+
+
+
+
+ 8457
+
+
+ YES
+
+
+
+
+
+ 8458
+
+
+
+
+ 8477
+
+
+ YES
+
+
+
+
+
+ 8478
+
+
+
+
+ 8499
+
+
+ YES
+
+
+
+
+
+ 8500
+
+
+
+
+ 8501
+
+
+ YES
+
+
+
+
+
+ 8502
+
+
+
+
+ 8512
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8513
+
+
+
+
+ 8514
+
+
+
+
+ 8515
+
+
+ YES
+
+
+
+
+
+
+ 8517
+
+
+ YES
+
+
+
+
+
+ 8518
+
+
+ YES
+
+
+
+
+
+ 8519
+
+
+
+
+ 8523
+
+
+
+
+ 8524
+
+
+
+
+ 8525
+
+
+ YES
+
+
+
+
+
+ 8526
+
+
+
+
+ 8527
+
+
+ Input Device List Array Controller
+
+
+ 8535
+
+
+ SLOT-2 Window Controller
+
+
+ 8552
+
+
+ YES
+
+
+
+ SLOT-2 Unsupported View
+
+
+ 8553
+
+
+ YES
+
+
+
+
+
+ 8554
+
+
+
+
+ 8557
+
+
+ YES
+
+
+
+
+
+ 8558
+
+
+ YES
+
+
+
+
+
+ 8559
+
+
+
+
+ 8560
+
+
+
+
+ 8561
+
+
+
+
+ 8568
+
+
+
+
+ 8569
+
+
+ YES
+
+
+
+
+
+ 8570
+
+
+
+
+ 8571
+
+
+ YES
+
+
+
+
+
+ 8572
+
+
+
+
+ 8575
+
+
+ YES
+
+
+
+
+
+ 8576
+
+
+
+
+ 8578
+
+
+ YES
+
+
+
+
+
+ 8579
+
+
+
+
+ 8596
+
+
+ YES
+
+
+
+
+
+ 8597
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 8598
+
+
+ YES
+
+
+
+
+
+ 8599
+
+
+
+
+ 8612
+
+
+ YES
+
+
+
+
+
+
+
+ 8608
+
+
+ YES
+
+
+
+
+
+ 8609
+
+
+ YES
+
+
+
+
+
+ 8610
+
+
+ YES
+
+
+
+
+
+ 8611
+
+
+
+
+ 8635
+
+
+
+
+ 8638
+
+
+ YES
+
+
+
+
+
+ 8639
+
+
+ YES
+
+
+
+
+
+ 8640
+
+
+
+
+ 8641
+
+
+
+
+ 8653
+
+
+ YES
+
+
+
+
+
+ 8654
+
+
+
+
+ 8655
+
+
+ YES
+
+
+
+
+
+ 8656
+
+
+
+
+ 8660
+
+
+ YES
+
+
+
+
+
+ 8661
+
+
+
+
+ 8663
+
+
+ YES
+
+
+
+
+
+ 8664
+
+
+
+
+ 8667
+
+
+ YES
+
+
+
+
+
+ 8668
+
+
+
+
+ 8677
+
+
+ YES
+
+
+
+
+
+ 8678
+
+
+
+
+ 8679
+
+
+ YES
+
+
+
+
+
+ 8680
+
+
+
+
+ 8681
+
+
+ YES
+
+
+
+
+
+ 8682
+
+
+
+
+ 8687
+
+
+ YES
+
+
+
+
+
+ 8688
+
+
+ YES
+
+
+
+
+
+ 8689
+
+
+ YES
+
+
+
+
+
+ 8690
+
+
+
+
+ 8691
+
+
+
+
+ 8692
+
+
+
+
+ 8706
+
+
+ YES
+
+
+
+
+
+ 8707
+
+
+
+
+ 8727
+
+
+ YES
+
+
+
+
+
+
+
+ 8718
+
+
+ YES
+
+
+
+
+
+ 8719
+
+
+
+
+ 8722
+
+
+ YES
+
+
+
+
+
+ 8723
+
+
+
+
+ 8724
+
+
+ YES
+
+
+
+
+
+ 8725
+
+
+
+
+ 8730
+
+
+ YES
+
+
+
+
+
+ 8731
+
+
+
+
+ 8735
+
+
+ YES
+
+
+
+
+
+ 8736
+
+
+
+
+ 8739
+
+
+ YES
+
+
+
+
+
+ 8740
+
+
+
+
+ 8741
+
+
+ YES
+
+
+
+
+
+ 8742
+
+
+ YES
+
+
+
+
+
+ 8743
+
+
+
+
+ 8744
+
+
+
+
+ 8746
+
+
+ YES
+
+
+
+
+
+ 8747
+
+
+
+
+ 491
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 6451
+
+
+
+
+ 492
+
+
+
+
+ 977
+
+
+
+
+ 978
+
+
+
+
+ 979
+
+
+
+
+ 980
+
+
+
+
+ 8758
+
+
+
+
+ 8975
+
+
+
+
+ 8978
+
+
+
+
+ 8979
+
+
+
+
+ 8991
+
+
+ YES
+
+
+
+
+
+ 8992
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8993
+
+
+ YES
+
+
+
+
+
+ 8994
+
+
+
+
+ 8995
+
+
+ YES
+
+
+
+
+
+ 8996
+
+
+
+
+ 8997
+
+
+ YES
+
+
+
+
+
+ 8998
+
+
+
+
+ 9001
+
+
+ YES
+
+
+
+
+
+ 9002
+
+
+
+
+ 9007
+
+
+
+
+ 9019
+
+
+ YES
+
+
+
+
+
+ 9020
+
+
+
+
+ 9071
+
+
+ YES
+
+
+
+
+
+
+
+ 9032
+
+
+ YES
+
+
+
+
+
+ 9033
+
+
+ YES
+
+
+
+
+
+ 9039
+
+
+ YES
+
+
+
+
+
+ 9040
+
+
+ YES
+
+
+
+
+
+ 9034
+
+
+ YES
+
+
+
+
+
+
+
+
+ 9038
+
+
+
+
+ 9037
+
+
+
+
+ 9036
+
+
+
+
+ 9035
+
+
+
+
+ 9072
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9041
+
+
+ YES
+
+
+
+
+
+ 9063
+
+
+
+
+ 9043
+
+
+ YES
+
+
+
+
+
+ 9061
+
+
+
+
+ 9044
+
+
+ YES
+
+
+
+
+
+ 9060
+
+
+
+
+ 9045
+
+
+ YES
+
+
+
+
+
+ 9059
+
+
+
+
+ 9046
+
+
+ YES
+
+
+
+
+
+ 9058
+
+
+
+
+ 9047
+
+
+ YES
+
+
+
+
+
+ 9057
+
+
+
+
+ 9049
+
+
+ YES
+
+
+
+
+
+ 9055
+
+
+
+
+ 9050
+
+
+ YES
+
+
+
+
+
+ 9053
+
+
+ YES
+
+
+
+
+ 9051
+
+
+ YES
+
+
+
+
+
+ 9052
+
+
+
+
+ 9042
+
+
+ YES
+
+
+
+
+
+ 9062
+
+
+
+
+ 9075
+
+
+ YES
+
+
+
+
+
+ 9076
+
+
+
+
+ 9083
+
+
+
+
+ 9084
+
+
+
+
+ 8976
+
+
+
+
+ 3789
+
+
+
+
+ 4062
+
+
+
+
+ 3709
+
+
+
+
+ 9085
+
+
+
+
+ 9086
+
+
+
+
+ 9087
+
+
+ YES
+
+
+
+
+
+ 9088
+
+
+
+
+ 9089
+
+
+ YES
+
+
+
+
+
+ 9090
+
+
+
+
+ 9094
+
+
+
+
+ 9095
+
+
+
+
+ 9104
+
+
+ YES
+
+
+
+
+
+ 9105
+
+
+ YES
+
+
+
+
+
+
+
+
+ 9106
+
+
+ YES
+
+
+
+
+
+ 9107
+
+
+
+
+ 9109
+
+
+ YES
+
+
+
+
+
+ 9110
+
+
+
+
+ 9112
+
+
+ YES
+
+
+
+
+
+ 9113
+
+
+ YES
+
+
+
+
+
+ 9114
+
+
+
+
+ 9115
+
+
+
+
+ 3665
+
+
+
+
+ 9129
+
+
+
+
+ 9131
+
+
+
+
+ 9133
+
+
+
+
+ 9135
+
+
+
+
+ 9137
+
+
+
+
+ 9138
+
+
+
+
+ 9139
+
+
+
+
+ 9140
+
+
+
+
+ 9144
+
+
+
+
+ 9146
+
+
+
+
+ 9148
+
+
+
+
+ 9150
+
+
+
+
+ 3900
+
+
+ YES
+
+
+
+
+
+ 3901
+
+
+
+
+ 9152
+
+
+ YES
+
+
+
+
+
+ 9153
+
+
+
+
+ 3886
+
+
+ YES
+
+
+
+
+
+ 3887
+
+
+
+
+ 9156
+
+
+ YES
+
+
+
+
+
+ 9157
+
+
+
+
+ 9184
+
+
+ YES
+
+
+
+
+
+ 9185
+
+
+ YES
+
+
+
+
+
+ 9186
+
+
+
+
+ 9187
+
+
+ YES
+
+
+
+
+
+ 9188
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 9195
+
+
+
+
+ 9206
+
+
+
+
+ 9208
+
+
+
+
+ 9209
+
+
+
+
+ 9210
+
+
+
+
+ 9211
+
+
+
+
+ 9236
+
+
+ YES
+
+
+
+
+
+ 9237
+
+
+ YES
+
+
+
+
+
+ 9238
+
+
+
+
+ 9257
+
+
+ YES
+
+
+
+
+
+ 9258
+
+
+
+
+ 3888
+
+
+ YES
+
+
+
+
+
+ 3889
+
+
+ YES
+
+
+
+
+
+ 3890
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 6634
+
+
+
+
+ 3891
+
+
+
+
+ 3892
+
+
+
+
+ 3893
+
+
+
+
+ 3894
+
+
+
+
+ 3896
+
+
+ YES
+
+
+
+
+
+ 3897
+
+
+
+
+ 9259
+
+
+
+
+ 9260
+
+
+
+
+ 9261
+
+
+
+
+ 9262
+
+
+ YES
+
+
+
+
+
+ 9263
+
+
+ YES
+
+
+
+
+
+ 9264
+
+
+
+
+ 9265
+
+
+ YES
+
+
+
+
+
+ 9266
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 9267
+
+
+
+
+ 9269
+
+
+
+
+ 9270
+
+
+
+
+ 9271
+
+
+
+
+ 9272
+
+
+
+
+ 9273
+
+
+
+
+ 9274
+
+
+
+
+ 9276
+
+
+ YES
+
+
+
+
+
+ 9277
+
+
+
+
+ 9278
+
+
+ YES
+
+
+
+
+
+ 9279
+
+
+ YES
+
+
+
+
+
+ 9280
+
+
+ YES
+
+
+
+
+
+ 9281
+
+
+
+
+ 9282
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9283
+
+
+
+
+ 9284
+
+
+
+
+ 9285
+
+
+
+
+ 9286
+
+
+
+
+ 9287
+
+
+
+
+ 9288
+
+
+
+
+ 9289
+
+
+
+
+ 9290
+
+
+ YES
+
+
+
+
+
+ 9291
+
+
+
+
+ 9292
+
+
+ YES
+
+
+
+
+
+ 9293
+
+
+ YES
+
+
+
+
+
+ 9294
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9295
+
+
+
+
+ 9296
+
+
+
+
+ 9297
+
+
+
+
+ 9299
+
+
+
+
+ 9300
+
+
+
+
+ 9301
+
+
+
+
+ 9302
+
+
+
+
+ 9389
+
+
+ YES
+
+
+
+
+
+ 9390
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9393
+
+
+ YES
+
+
+
+
+
+ 9404
+
+
+ YES
+
+
+
+
+
+ 9405
+
+
+
+
+ 9392
+
+
+ YES
+
+
+
+
+
+ 9406
+
+
+ YES
+
+
+
+
+
+ 9407
+
+
+
+
+ 9397
+
+
+ YES
+
+
+
+
+
+ 9400
+
+
+
+
+ 9396
+
+
+ YES
+
+
+
+
+
+ 9401
+
+
+
+
+ 9395
+
+
+ YES
+
+
+
+
+
+ 9402
+
+
+
+
+ 9394
+
+
+ YES
+
+
+
+
+
+ 9403
+
+
+
+
+ 9408
+
+
+
+
+ 9409
+
+
+
+
+ 9424
+
+
+ YES
+
+
+
+
+
+ 9425
+
+
+
+
+ 7857
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8301
+
+
+
+
+ 7858
+
+
+
+
+ 7859
+
+
+
+
+ 7860
+
+
+
+
+ 7861
+
+
+
+
+ 7862
+
+
+
+
+ 9633
+
+
+ YES
+
+
+
+
+
+ 7880
+
+
+ YES
+
+
+
+
+
+ 7881
+
+
+
+
+ 9634
+
+
+ YES
+
+
+
+
+
+
+
+ 7866
+
+
+ YES
+
+
+
+
+
+ 7867
+
+
+
+
+ 7863
+
+
+ YES
+
+
+
+
+
+ 7864
+
+
+
+
+ 9525
+
+
+ YES
+
+
+
+
+
+ 9526
+
+
+
+
+ 7875
+
+
+ YES
+
+
+
+
+
+ 7876
+
+
+
+
+ 7871
+
+
+ YES
+
+
+
+
+
+ 7872
+
+
+
+
+ 7873
+
+
+ YES
+
+
+
+
+
+ 7874
+
+
+
+
+ 7879
+
+
+
+
+ 9635
+
+
+
+
+ 9636
+
+
+
+
+ 9637
+
+
+
+
+ 9638
+
+
+
+
+ 9639
+
+
+
+
+ 9640
+
+
+
+
+ 9641
+
+
+
+
+ 9642
+
+
+ YES
+
+
+
+
+
+ 9643
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9644
+
+
+
+
+ 9645
+
+
+
+
+ 9646
+
+
+
+
+ 9647
+
+
+
+
+ 9648
+
+
+
+
+ 9649
+
+
+
+
+ 9650
+
+
+
+
+ 9651
+
+
+
+
+ 9652
+
+
+
+
+ 9653
+
+
+
+
+ 9654
+
+
+
+
+ 9655
+
+
+
+
+ 9656
+
+
+
+
+ 9657
+
+
+
+
+ 9658
+
+
+
+
+ 9677
+
+
+
+
+
+
+ YES
+
+ YES
+ -1.IBPluginDependency
+ -2.IBPluginDependency
+ -3.IBPluginDependency
+ 1034.IBPluginDependency
+ 1035.IBPluginDependency
+ 1036.IBPluginDependency
+ 1037.IBPluginDependency
+ 1038.IBPluginDependency
+ 1039.IBPluginDependency
+ 1040.IBPluginDependency
+ 1041.IBPluginDependency
+ 1113.IBPluginDependency
+ 1114.IBPluginDependency
+ 1115.IBPluginDependency
+ 1118.IBPluginDependency
+ 1119.IBPluginDependency
+ 112.IBPluginDependency
+ 1120.IBPluginDependency
+ 124.IBPluginDependency
+ 125.IBEditorWindowLastContentRect
+ 125.IBPluginDependency
+ 126.IBPluginDependency
+ 129.IBPluginDependency
+ 1298.IBEditorWindowLastContentRect
+ 1298.IBPluginDependency
+ 1299.IBAttributePlaceholdersKey
+ 1299.IBPluginDependency
+ 1299.IBViewBoundsToFrameTransform
+ 130.IBPluginDependency
+ 1300.IBPluginDependency
+ 131.IBPluginDependency
+ 134.IBPluginDependency
+ 136.IBPluginDependency
+ 143.IBPluginDependency
+ 144.IBPluginDependency
+ 145.IBPluginDependency
+ 149.IBPluginDependency
+ 150.IBPluginDependency
+ 1507.IBAttributePlaceholdersKey
+ 1507.IBPluginDependency
+ 1508.IBPluginDependency
+ 1509.IBEditorWindowLastContentRect
+ 1509.IBPluginDependency
+ 1510.IBPluginDependency
+ 1511.IBPluginDependency
+ 1512.IBPluginDependency
+ 1525.IBAttributePlaceholdersKey
+ 1525.IBPluginDependency
+ 1526.IBPluginDependency
+ 1527.IBEditorWindowLastContentRect
+ 1527.IBPluginDependency
+ 1528.IBPluginDependency
+ 1529.IBPluginDependency
+ 1530.IBPluginDependency
+ 1531.IBPluginDependency
+ 1532.IBPluginDependency
+ 1538.IBPluginDependency
+ 1538.IBViewBoundsToFrameTransform
+ 1541.IBPluginDependency
+ 1541.IBViewBoundsToFrameTransform
+ 1542.IBPluginDependency
+ 1543.IBEditorWindowLastContentRect
+ 1543.IBPluginDependency
+ 1544.IBPluginDependency
+ 1545.IBPluginDependency
+ 1577.IBAttributePlaceholdersKey
+ 1577.IBPluginDependency
+ 1578.IBPluginDependency
+ 1579.IBNumberFormatterBehaviorMetadataKey
+ 1579.IBNumberFormatterLocalizesFormatMetadataKey
+ 1579.IBNumberFormatterSampleNumberKey
+ 1579.IBPluginDependency
+ 1580.IBPluginDependency
+ 1581.IBPluginDependency
+ 1584.IBEditorWindowLastContentRect
+ 1584.IBPluginDependency
+ 1615.IBAttributePlaceholdersKey
+ 1615.IBPluginDependency
+ 1615.IBViewBoundsToFrameTransform
+ 1616.IBPluginDependency
+ 1619.IBPluginDependency
+ 1620.IBPluginDependency
+ 1621.IBPluginDependency
+ 1626.IBAttributePlaceholdersKey
+ 1626.IBPluginDependency
+ 1626.IBViewBoundsToFrameTransform
+ 1627.IBPluginDependency
+ 1628.IBEditorWindowLastContentRect
+ 1628.IBPluginDependency
+ 1629.IBPluginDependency
+ 1630.IBPluginDependency
+ 1631.IBPluginDependency
+ 1634.IBPluginDependency
+ 1634.IBViewBoundsToFrameTransform
+ 1635.IBPluginDependency
+ 1636.IBPluginDependency
+ 1637.IBPluginDependency
+ 1638.IBPluginDependency
+ 1639.IBPluginDependency
+ 1640.IBPluginDependency
+ 1641.IBPluginDependency
+ 1643.IBPluginDependency
+ 1646.IBPluginDependency
+ 1647.IBPluginDependency
+ 1650.IBPluginDependency
+ 1650.IBViewBoundsToFrameTransform
+ 1651.IBPluginDependency
+ 1679.IBPluginDependency
+ 1679.designableToolbarItemIdentifier
+ 1679.toolbarItem.selectable
+ 1680.IBPluginDependency
+ 1680.designableToolbarItemIdentifier
+ 1680.toolbarItem.selectable
+ 1681.IBPluginDependency
+ 1681.designableToolbarItemIdentifier
+ 1681.toolbarItem.selectable
+ 1682.IBPluginDependency
+ 1721.IBPluginDependency
+ 1855.IBPluginDependency
+ 1856.IBEditorWindowLastContentRect
+ 1856.IBPluginDependency
+ 1856.IBWindowTemplateEditedContentRect
+ 1856.NSWindowTemplate.visibleAtLaunch
+ 1857.IBPluginDependency
+ 1858.IBPluginDependency
+ 1859.IBPluginDependency
+ 19.IBPluginDependency
+ 1976.IBPluginDependency
+ 1977.IBPluginDependency
+ 1978.IBPluginDependency
+ 1979.IBPluginDependency
+ 1980.IBPluginDependency
+ 1981.IBPluginDependency
+ 1982.IBPluginDependency
+ 1983.IBPluginDependency
+ 1986.IBPluginDependency
+ 1987.IBPluginDependency
+ 1988.IBPluginDependency
+ 1998.IBPluginDependency
+ 1999.IBPluginDependency
+ 2000.IBNumberFormatterBehaviorMetadataKey
+ 2000.IBNumberFormatterLocalizesFormatMetadataKey
+ 2000.IBPluginDependency
+ 2095.IBPluginDependency
+ 2098.IBPluginDependency
+ 2154.IBPluginDependency
+ 2155.IBPluginDependency
+ 2246.IBPluginDependency
+ 2246.designableToolbarItemIdentifier
+ 2246.toolbarItem.selectable
+ 2248.IBEditorWindowLastContentRect
+ 2248.IBPluginDependency
+ 2250.IBPluginDependency
+ 2253.IBAttributePlaceholdersKey
+ 2253.IBPluginDependency
+ 2254.IBPluginDependency
+ 2257.IBPluginDependency
+ 2258.IBPluginDependency
+ 2262.IBNumberFormatterBehaviorMetadataKey
+ 2262.IBNumberFormatterLocalizesFormatMetadataKey
+ 2262.IBPluginDependency
+ 2265.IBPluginDependency
+ 2266.IBPluginDependency
+ 2287.IBPluginDependency
+ 2288.IBPluginDependency
+ 2289.IBPluginDependency
+ 2290.IBPluginDependency
+ 2291.IBPluginDependency
+ 2292.IBPluginDependency
+ 2293.IBPluginDependency
+ 2294.IBEditorWindowLastContentRect
+ 2294.IBPluginDependency
+ 2297.IBAttributePlaceholdersKey
+ 2297.IBPluginDependency
+ 2298.IBAttributePlaceholdersKey
+ 2298.IBPluginDependency
+ 2299.IBPluginDependency
+ 23.IBPluginDependency
+ 2327.IBPluginDependency
+ 2328.IBPluginDependency
+ 2329.IBAttributePlaceholdersKey
+ 2329.IBPluginDependency
+ 2330.IBAttributePlaceholdersKey
+ 2330.IBPluginDependency
+ 2331.IBPluginDependency
+ 2332.IBAttributePlaceholdersKey
+ 2332.IBPluginDependency
+ 2339.IBEditorWindowLastContentRect
+ 2339.IBPluginDependency
+ 2340.IBPluginDependency
+ 2340.designableToolbarItemIdentifier
+ 2340.toolbarItem.selectable
+ 2341.IBPluginDependency
+ 2342.IBPluginDependency
+ 2343.IBPluginDependency
+ 2344.IBPluginDependency
+ 2345.IBAttributePlaceholdersKey
+ 2345.IBPluginDependency
+ 2346.IBPluginDependency
+ 2347.IBAttributePlaceholdersKey
+ 2347.IBPluginDependency
+ 2348.IBPluginDependency
+ 2349.IBPluginDependency
+ 2350.IBPluginDependency
+ 2353.IBPluginDependency
+ 2354.IBPluginDependency
+ 2355.IBPluginDependency
+ 2356.IBPluginDependency
+ 2357.IBPluginDependency
+ 2358.IBPluginDependency
+ 2359.IBPluginDependency
+ 236.IBPluginDependency
+ 2360.IBPluginDependency
+ 2361.IBPluginDependency
+ 2362.IBPluginDependency
+ 2363.IBAttributePlaceholdersKey
+ 2363.IBPluginDependency
+ 2364.IBPluginDependency
+ 2365.IBAttributePlaceholdersKey
+ 2365.IBPluginDependency
+ 2366.IBPluginDependency
+ 2367.IBAttributePlaceholdersKey
+ 2367.IBPluginDependency
+ 2368.IBPluginDependency
+ 2369.IBAttributePlaceholdersKey
+ 2369.IBPluginDependency
+ 2370.IBPluginDependency
+ 2371.IBAttributePlaceholdersKey
+ 2371.IBPluginDependency
+ 2372.IBPluginDependency
+ 2373.IBPluginDependency
+ 2374.IBPluginDependency
+ 2375.IBPluginDependency
+ 2376.IBPluginDependency
+ 2377.IBPluginDependency
+ 2378.IBPluginDependency
+ 2382.IBPluginDependency
+ 2383.IBEditorWindowLastContentRect
+ 2383.IBPluginDependency
+ 2384.IBPluginDependency
+ 2385.IBPluginDependency
+ 2386.IBPluginDependency
+ 2387.IBPluginDependency
+ 2388.IBPluginDependency
+ 2389.IBPluginDependency
+ 239.IBPluginDependency
+ 2390.IBPluginDependency
+ 2391.IBPluginDependency
+ 2392.IBPluginDependency
+ 2393.IBPluginDependency
+ 2394.IBPluginDependency
+ 2395.IBPluginDependency
+ 2396.IBPluginDependency
+ 2397.IBPluginDependency
+ 2398.IBPluginDependency
+ 2399.IBPluginDependency
+ 24.IBEditorWindowLastContentRect
+ 24.IBPluginDependency
+ 2427.IBAttributePlaceholdersKey
+ 2427.IBPluginDependency
+ 2428.IBPluginDependency
+ 2429.IBAttributePlaceholdersKey
+ 2429.IBPluginDependency
+ 2430.IBPluginDependency
+ 2431.IBPluginDependency
+ 2432.IBPluginDependency
+ 2433.IBEditorWindowLastContentRect
+ 2433.IBPluginDependency
+ 2434.IBAttributePlaceholdersKey
+ 2434.IBPluginDependency
+ 2435.IBAttributePlaceholdersKey
+ 2435.IBPluginDependency
+ 2436.IBAttributePlaceholdersKey
+ 2436.IBPluginDependency
+ 2437.IBPluginDependency
+ 2438.IBAttributePlaceholdersKey
+ 2438.IBPluginDependency
+ 2439.IBAttributePlaceholdersKey
+ 2439.IBPluginDependency
+ 2440.IBPluginDependency
+ 2482.IBPluginDependency
+ 2483.IBPluginDependency
+ 2518.IBPluginDependency
+ 2519.IBPluginDependency
+ 2553.IBPluginDependency
+ 2556.IBPluginDependency
+ 2565.IBAttributePlaceholdersKey
+ 2565.IBPluginDependency
+ 2566.IBPluginDependency
+ 2604.IBPluginDependency
+ 2609.IBPluginDependency
+ 2610.IBPluginDependency
+ 2653.IBPluginDependency
+ 2789.IBPluginDependency
+ 2789.IBWindowTemplateEditedContentRect
+ 2789.NSWindowTemplate.visibleAtLaunch
+ 2789.windowTemplate.hasMinSize
+ 2789.windowTemplate.minSize
+ 2790.IBPluginDependency
+ 2793.IBPluginDependency
+ 2794.IBPluginDependency
+ 2799.IBPluginDependency
+ 2800.IBPluginDependency
+ 2803.IBPluginDependency
+ 2804.IBPluginDependency
+ 2807.IBPluginDependency
+ 2808.IBPluginDependency
+ 2809.IBPluginDependency
+ 2810.IBPluginDependency
+ 2811.IBPluginDependency
+ 2812.IBPluginDependency
+ 2813.IBPluginDependency
+ 2814.IBPluginDependency
+ 2815.IBPluginDependency
+ 2816.IBPluginDependency
+ 2817.IBPluginDependency
+ 2818.IBPluginDependency
+ 2819.IBPluginDependency
+ 2820.IBPluginDependency
+ 2847.IBPluginDependency
+ 2847.IBWindowTemplateEditedContentRect
+ 2847.NSWindowTemplate.visibleAtLaunch
+ 2848.IBPluginDependency
+ 2863.IBPluginDependency
+ 2864.IBPluginDependency
+ 2865.IBPluginDependency
+ 2866.IBPluginDependency
+ 2867.IBPluginDependency
+ 2868.IBPluginDependency
+ 2869.IBPluginDependency
+ 2870.IBPluginDependency
+ 2871.IBPluginDependency
+ 2872.IBPluginDependency
+ 2873.IBPluginDependency
+ 2874.IBPluginDependency
+ 2875.IBPluginDependency
+ 2876.IBPluginDependency
+ 2877.IBPluginDependency
+ 2878.IBPluginDependency
+ 2894.IBPluginDependency
+ 2895.IBPluginDependency
+ 2896.IBPluginDependency
+ 2897.IBPluginDependency
+ 29.IBEditorWindowLastContentRect
+ 29.IBPluginDependency
+ 2900.IBPluginDependency
+ 2901.IBPluginDependency
+ 2902.IBPluginDependency
+ 2903.IBPluginDependency
+ 295.IBPluginDependency
+ 2954.IBPluginDependency
+ 2955.IBPluginDependency
+ 296.IBEditorWindowLastContentRect
+ 296.IBPluginDependency
+ 297.IBPluginDependency
+ 298.IBPluginDependency
+ 3015.IBPluginDependency
+ 3042.IBPluginDependency
+ 3059.IBPluginDependency
+ 3060.IBPluginDependency
+ 3061.IBPluginDependency
+ 3062.IBPluginDependency
+ 3063.IBPluginDependency
+ 3063.IBViewBoundsToFrameTransform
+ 3146.IBPluginDependency
+ 3148.IBPluginDependency
+ 3204.IBPluginDependency
+ 3205.IBEditorWindowLastContentRect
+ 3205.IBPluginDependency
+ 3206.IBPluginDependency
+ 3207.IBPluginDependency
+ 3208.IBPluginDependency
+ 3209.IBPluginDependency
+ 3210.IBPluginDependency
+ 3211.IBPluginDependency
+ 3213.IBPluginDependency
+ 3214.IBPluginDependency
+ 3456.IBPluginDependency
+ 3456.IBWindowTemplateEditedContentRect
+ 3456.NSWindowTemplate.visibleAtLaunch
+ 3457.IBPluginDependency
+ 3458.IBPluginDependency
+ 3459.IBPluginDependency
+ 3460.IBPluginDependency
+ 3461.IBPluginDependency
+ 3462.IBPluginDependency
+ 3463.IBPluginDependency
+ 3464.IBPluginDependency
+ 3465.IBPluginDependency
+ 3471.IBPluginDependency
+ 3472.IBPluginDependency
+ 3480.IBPluginDependency
+ 3481.IBPluginDependency
+ 3482.IBPluginDependency
+ 3488.IBEditorWindowLastContentRect
+ 3488.IBPluginDependency
+ 3488.IBWindowTemplateEditedContentRect
+ 3488.NSWindowTemplate.visibleAtLaunch
+ 3489.IBPluginDependency
+ 3496.IBPluginDependency
+ 3497.IBPluginDependency
+ 3498.IBPluginDependency
+ 3499.IBPluginDependency
+ 3501.IBPluginDependency
+ 3507.IBPluginDependency
+ 3508.IBPluginDependency
+ 3509.IBPluginDependency
+ 3516.IBPluginDependency
+ 3517.IBPluginDependency
+ 3520.IBPluginDependency
+ 3522.IBPluginDependency
+ 3523.IBPluginDependency
+ 3644.IBPluginDependency
+ 3648.IBPluginDependency
+ 3648.IBViewBoundsToFrameTransform
+ 3649.IBPluginDependency
+ 3650.IBPluginDependency
+ 3651.IBPluginDependency
+ 3652.IBPluginDependency
+ 3653.IBPluginDependency
+ 3654.IBPluginDependency
+ 3655.IBPluginDependency
+ 3656.IBPluginDependency
+ 3657.IBPluginDependency
+ 3658.IBPluginDependency
+ 3659.IBPluginDependency
+ 3660.IBPluginDependency
+ 3661.IBPluginDependency
+ 3662.IBPluginDependency
+ 3663.IBPluginDependency
+ 3664.IBPluginDependency
+ 3665.IBPluginDependency
+ 3666.IBPluginDependency
+ 3667.IBPluginDependency
+ 3709.IBPluginDependency
+ 3712.IBEditorWindowLastContentRect
+ 3712.IBPluginDependency
+ 3712.IBWindowTemplateEditedContentRect
+ 3712.NSWindowTemplate.visibleAtLaunch
+ 3713.IBPluginDependency
+ 3714.IBAttributePlaceholdersKey
+ 3714.IBPluginDependency
+ 3715.IBPluginDependency
+ 3716.IBPluginDependency
+ 3717.IBPluginDependency
+ 3718.IBPluginDependency
+ 3719.IBAttributePlaceholdersKey
+ 3719.IBPluginDependency
+ 3720.IBAttributePlaceholdersKey
+ 3720.IBPluginDependency
+ 3721.IBPluginDependency
+ 3722.IBPluginDependency
+ 3723.IBAttributePlaceholdersKey
+ 3723.IBPluginDependency
+ 3724.IBAttributePlaceholdersKey
+ 3724.IBPluginDependency
+ 3725.IBPluginDependency
+ 3732.IBAttributePlaceholdersKey
+ 3732.IBPluginDependency
+ 3733.IBPluginDependency
+ 3736.IBAttributePlaceholdersKey
+ 3736.IBPluginDependency
+ 3737.IBPluginDependency
+ 3738.IBPluginDependency
+ 3739.IBPluginDependency
+ 3740.IBPluginDependency
+ 3741.IBNumberFormatterBehaviorMetadataKey
+ 3741.IBNumberFormatterLocalizesFormatMetadataKey
+ 3741.IBPluginDependency
+ 3742.IBPluginDependency
+ 3747.IBPluginDependency
+ 3748.IBPluginDependency
+ 3749.IBPluginDependency
+ 3751.IBPluginDependency
+ 3752.IBPluginDependency
+ 3771.IBAttributePlaceholdersKey
+ 3771.IBPluginDependency
+ 3772.IBPluginDependency
+ 3773.IBAttributePlaceholdersKey
+ 3773.IBPluginDependency
+ 3774.IBPluginDependency
+ 3775.IBAttributePlaceholdersKey
+ 3775.IBPluginDependency
+ 3776.IBPluginDependency
+ 3777.IBAttributePlaceholdersKey
+ 3777.IBPluginDependency
+ 3777.IBViewBoundsToFrameTransform
+ 3778.IBPluginDependency
+ 3779.IBAttributePlaceholdersKey
+ 3779.IBPluginDependency
+ 3779.IBViewBoundsToFrameTransform
+ 3780.IBPluginDependency
+ 3781.IBNumberFormatterBehaviorMetadataKey
+ 3781.IBNumberFormatterLocalizesFormatMetadataKey
+ 3781.IBPluginDependency
+ 3782.IBPluginDependency
+ 3782.IBViewBoundsToFrameTransform
+ 3783.IBPluginDependency
+ 3784.IBPluginDependency
+ 3784.IBViewBoundsToFrameTransform
+ 3786.IBPluginDependency
+ 3786.IBViewBoundsToFrameTransform
+ 3787.IBPluginDependency
+ 3788.IBPluginDependency
+ 3789.IBPluginDependency
+ 3790.IBEditorWindowLastContentRect
+ 3790.IBPluginDependency
+ 3790.IBWindowTemplateEditedContentRect
+ 3790.NSWindowTemplate.visibleAtLaunch
+ 3791.IBPluginDependency
+ 3793.IBPluginDependency
+ 3793.IBViewBoundsToFrameTransform
+ 3794.IBPluginDependency
+ 3798.IBPluginDependency
+ 3798.IBViewBoundsToFrameTransform
+ 3799.IBPluginDependency
+ 3799.IBViewBoundsToFrameTransform
+ 3800.IBAttributePlaceholdersKey
+ 3800.IBPluginDependency
+ 3800.IBViewBoundsToFrameTransform
+ 3801.IBAttributePlaceholdersKey
+ 3801.IBPluginDependency
+ 3801.IBViewBoundsToFrameTransform
+ 3802.IBAttributePlaceholdersKey
+ 3802.IBPluginDependency
+ 3802.IBViewBoundsToFrameTransform
+ 3803.IBAttributePlaceholdersKey
+ 3803.IBPluginDependency
+ 3803.IBViewBoundsToFrameTransform
+ 3804.IBAttributePlaceholdersKey
+ 3804.IBPluginDependency
+ 3804.IBViewBoundsToFrameTransform
+ 3805.IBPluginDependency
+ 3806.IBPluginDependency
+ 3807.IBPluginDependency
+ 3808.IBPluginDependency
+ 3809.IBPluginDependency
+ 3810.IBNumberFormatterBehaviorMetadataKey
+ 3810.IBNumberFormatterLocalizesFormatMetadataKey
+ 3810.IBPluginDependency
+ 3811.IBPluginDependency
+ 3837.IBPluginDependency
+ 3838.IBPluginDependency
+ 3838.IBViewBoundsToFrameTransform
+ 3839.IBAttributePlaceholdersKey
+ 3839.IBPluginDependency
+ 3840.IBAttributePlaceholdersKey
+ 3840.IBPluginDependency
+ 3841.IBPluginDependency
+ 3843.IBAttributePlaceholdersKey
+ 3843.IBPluginDependency
+ 3843.IBViewBoundsToFrameTransform
+ 3844.IBPluginDependency
+ 3845.IBPluginDependency
+ 3846.IBAttributePlaceholdersKey
+ 3846.IBPluginDependency
+ 3847.IBAttributePlaceholdersKey
+ 3847.IBPluginDependency
+ 3849.IBPluginDependency
+ 3849.IBViewBoundsToFrameTransform
+ 3850.IBPluginDependency
+ 3885.IBPluginDependency
+ 3885.IBViewBoundsToFrameTransform
+ 3886.IBAttributePlaceholdersKey
+ 3886.IBPluginDependency
+ 3886.IBViewBoundsToFrameTransform
+ 3887.IBPluginDependency
+ 3888.IBAttributePlaceholdersKey
+ 3888.IBPluginDependency
+ 3888.IBViewBoundsToFrameTransform
+ 3889.IBPluginDependency
+ 3890.IBEditorWindowLastContentRect
+ 3890.IBPluginDependency
+ 3891.IBAttributePlaceholdersKey
+ 3891.IBPluginDependency
+ 3892.IBAttributePlaceholdersKey
+ 3892.IBPluginDependency
+ 3893.IBAttributePlaceholdersKey
+ 3893.IBPluginDependency
+ 3894.IBAttributePlaceholdersKey
+ 3894.IBPluginDependency
+ 3896.IBPluginDependency
+ 3896.IBViewBoundsToFrameTransform
+ 3897.IBPluginDependency
+ 3899.IBPluginDependency
+ 3899.IBViewBoundsToFrameTransform
+ 3900.IBAttributePlaceholdersKey
+ 3900.IBPluginDependency
+ 3900.IBViewBoundsToFrameTransform
+ 3901.IBPluginDependency
+ 3935.IBPluginDependency
+ 3936.IBEditorWindowLastContentRect
+ 3936.IBPluginDependency
+ 3937.IBPluginDependency
+ 3938.IBPluginDependency
+ 3939.IBPluginDependency
+ 3959.IBPluginDependency
+ 3965.IBPluginDependency
+ 3966.IBAttributePlaceholdersKey
+ 3966.IBPluginDependency
+ 3967.IBAttributePlaceholdersKey
+ 3967.IBPluginDependency
+ 3968.IBPluginDependency
+ 3969.IBAttributePlaceholdersKey
+ 3969.IBPluginDependency
+ 3992.IBPluginDependency
+ 3993.IBPluginDependency
+ 3994.IBAttributePlaceholdersKey
+ 3994.IBPluginDependency
+ 3995.IBPluginDependency
+ 3996.IBEditorWindowLastContentRect
+ 3996.IBPluginDependency
+ 3997.IBAttributePlaceholdersKey
+ 3997.IBPluginDependency
+ 3998.IBAttributePlaceholdersKey
+ 3998.IBPluginDependency
+ 4001.IBPluginDependency
+ 4002.IBAttributePlaceholdersKey
+ 4002.IBPluginDependency
+ 4003.IBAttributePlaceholdersKey
+ 4003.IBPluginDependency
+ 4004.IBPluginDependency
+ 4024.IBPluginDependency
+ 4027.IBEditorWindowLastContentRect
+ 4027.IBPluginDependency
+ 4027.IBWindowTemplateEditedContentRect
+ 4027.NSWindowTemplate.visibleAtLaunch
+ 4028.IBPluginDependency
+ 4029.IBPluginDependency
+ 4030.IBAttributePlaceholdersKey
+ 4030.IBPluginDependency
+ 4031.IBPluginDependency
+ 4032.IBPluginDependency
+ 4033.IBAttributePlaceholdersKey
+ 4033.IBPluginDependency
+ 4034.IBPluginDependency
+ 4035.IBAttributePlaceholdersKey
+ 4035.IBPluginDependency
+ 4036.IBPluginDependency
+ 4037.IBAttributePlaceholdersKey
+ 4037.IBPluginDependency
+ 4038.IBPluginDependency
+ 4039.IBPluginDependency
+ 4040.IBPluginDependency
+ 4041.IBPluginDependency
+ 4043.IBAttributePlaceholdersKey
+ 4043.IBPluginDependency
+ 4044.IBPluginDependency
+ 4045.IBAttributePlaceholdersKey
+ 4045.IBPluginDependency
+ 4046.IBPluginDependency
+ 4047.IBPluginDependency
+ 4048.IBAttributePlaceholdersKey
+ 4048.IBPluginDependency
+ 4049.IBPluginDependency
+ 4050.IBAttributePlaceholdersKey
+ 4050.IBPluginDependency
+ 4051.IBPluginDependency
+ 4053.IBEditorWindowLastContentRect
+ 4053.IBPluginDependency
+ 4054.IBPluginDependency
+ 4059.IBPluginDependency
+ 4059.IBViewBoundsToFrameTransform
+ 4060.IBPluginDependency
+ 4062.IBPluginDependency
+ 4066.IBPluginDependency
+ 4067.IBPluginDependency
+ 4069.IBAttributePlaceholdersKey
+ 4069.IBPluginDependency
+ 4070.IBAttributePlaceholdersKey
+ 4070.IBPluginDependency
+ 4071.IBPluginDependency
+ 4072.IBPluginDependency
+ 4073.IBPluginDependency
+ 4074.IBPluginDependency
+ 4075.IBPluginDependency
+ 4076.IBPluginDependency
+ 4078.IBPluginDependency
+ 4079.IBPluginDependency
+ 4080.IBPluginDependency
+ 4081.IBPluginDependency
+ 4082.IBPluginDependency
+ 4083.IBPluginDependency
+ 4084.IBPluginDependency
+ 4085.IBPluginDependency
+ 4086.IBPluginDependency
+ 4087.IBPluginDependency
+ 4088.IBPluginDependency
+ 4089.IBPluginDependency
+ 4090.IBPluginDependency
+ 4091.IBPluginDependency
+ 4092.IBPluginDependency
+ 4093.IBPluginDependency
+ 4094.IBPluginDependency
+ 4095.IBPluginDependency
+ 4096.IBPluginDependency
+ 4097.IBPluginDependency
+ 4098.IBPluginDependency
+ 4099.IBPluginDependency
+ 4100.IBPluginDependency
+ 4101.IBPluginDependency
+ 4102.IBPluginDependency
+ 4103.IBPluginDependency
+ 4104.IBPluginDependency
+ 4105.IBPluginDependency
+ 4106.IBPluginDependency
+ 4107.IBPluginDependency
+ 4109.IBPluginDependency
+ 4110.IBPluginDependency
+ 4111.IBPluginDependency
+ 4112.IBPluginDependency
+ 4113.IBPluginDependency
+ 4114.IBPluginDependency
+ 4115.IBPluginDependency
+ 4116.IBPluginDependency
+ 4179.IBPluginDependency
+ 4180.IBPluginDependency
+ 4181.IBEditorWindowLastContentRect
+ 4181.IBPluginDependency
+ 4181.IBWindowTemplateEditedContentRect
+ 4181.NSWindowTemplate.visibleAtLaunch
+ 4182.IBPluginDependency
+ 4191.IBAttributePlaceholdersKey
+ 4191.IBPluginDependency
+ 4192.IBAttributePlaceholdersKey
+ 4192.IBPluginDependency
+ 4193.IBPluginDependency
+ 4194.IBPluginDependency
+ 4195.IBPluginDependency
+ 4196.IBPluginDependency
+ 4197.IBPluginDependency
+ 4198.IBPluginDependency
+ 4199.IBPluginDependency
+ 4200.IBPluginDependency
+ 4201.IBPluginDependency
+ 4202.IBPluginDependency
+ 4203.IBPluginDependency
+ 4204.IBPluginDependency
+ 4205.IBPluginDependency
+ 4206.IBPluginDependency
+ 4207.IBPluginDependency
+ 4208.IBPluginDependency
+ 4209.IBPluginDependency
+ 4210.IBPluginDependency
+ 4211.IBPluginDependency
+ 4212.IBPluginDependency
+ 4213.IBPluginDependency
+ 4214.IBPluginDependency
+ 4215.IBPluginDependency
+ 4216.IBPluginDependency
+ 4217.IBPluginDependency
+ 4218.IBPluginDependency
+ 4219.IBPluginDependency
+ 4220.IBPluginDependency
+ 4221.IBPluginDependency
+ 4222.IBPluginDependency
+ 4223.IBPluginDependency
+ 4224.IBPluginDependency
+ 4225.IBPluginDependency
+ 4226.IBPluginDependency
+ 4227.IBPluginDependency
+ 4228.IBPluginDependency
+ 4229.IBPluginDependency
+ 4230.IBPluginDependency
+ 4231.IBPluginDependency
+ 4232.IBPluginDependency
+ 4233.IBPluginDependency
+ 4234.IBPluginDependency
+ 4240.IBPluginDependency
+ 4241.IBPluginDependency
+ 4275.IBPluginDependency
+ 4276.IBPluginDependency
+ 4277.IBPluginDependency
+ 4278.IBPluginDependency
+ 4559.IBPluginDependency
+ 4560.IBPluginDependency
+ 4561.IBPluginDependency
+ 4562.IBPluginDependency
+ 4565.IBPluginDependency
+ 4574.IBPluginDependency
+ 4575.IBPluginDependency
+ 4576.IBPluginDependency
+ 4577.IBPluginDependency
+ 4578.IBPluginDependency
+ 4580.IBPluginDependency
+ 4581.IBPluginDependency
+ 4582.IBPluginDependency
+ 4583.IBPluginDependency
+ 4583.IBViewBoundsToFrameTransform
+ 4584.IBPluginDependency
+ 4585.IBEditorWindowLastContentRect
+ 4585.IBPluginDependency
+ 4586.IBPluginDependency
+ 4587.IBPluginDependency
+ 4588.IBAttributePlaceholdersKey
+ 4588.IBPluginDependency
+ 4589.IBPluginDependency
+ 4590.IBAttributePlaceholdersKey
+ 4590.IBPluginDependency
+ 4593.IBPluginDependency
+ 4594.IBPluginDependency
+ 4597.IBPluginDependency
+ 4598.IBPluginDependency
+ 4599.IBPluginDependency
+ 4600.IBPluginDependency
+ 4601.IBAttributePlaceholdersKey
+ 4601.IBPluginDependency
+ 4602.IBPluginDependency
+ 4603.IBPluginDependency
+ 4604.IBPluginDependency
+ 4605.IBPluginDependency
+ 4606.IBPluginDependency
+ 4607.IBPluginDependency
+ 4610.IBPluginDependency
+ 4632.IBPluginDependency
+ 4633.IBPluginDependency
+ 4634.IBPluginDependency
+ 4635.IBPluginDependency
+ 4636.IBPluginDependency
+ 4637.IBPluginDependency
+ 4639.IBPluginDependency
+ 4640.IBPluginDependency
+ 4647.IBPluginDependency
+ 4656.IBPluginDependency
+ 4660.IBPluginDependency
+ 4661.IBPluginDependency
+ 4662.IBPluginDependency
+ 4663.IBPluginDependency
+ 4664.IBPluginDependency
+ 4665.IBPluginDependency
+ 4673.IBPluginDependency
+ 4693.IBPluginDependency
+ 4694.IBPluginDependency
+ 4697.IBPluginDependency
+ 4711.IBPluginDependency
+ 4715.IBPluginDependency
+ 4731.IBPluginDependency
+ 4745.IBPluginDependency
+ 4746.IBPluginDependency
+ 4778.IBPluginDependency
+ 4792.IBPluginDependency
+ 4795.IBPluginDependency
+ 4796.IBPluginDependency
+ 4797.IBPluginDependency
+ 4798.IBPluginDependency
+ 4799.IBPluginDependency
+ 4800.IBPluginDependency
+ 4801.IBPluginDependency
+ 4802.IBPluginDependency
+ 4809.IBPluginDependency
+ 4810.IBPluginDependency
+ 4811.IBPluginDependency
+ 4812.IBPluginDependency
+ 4814.IBAttributePlaceholdersKey
+ 4814.IBPluginDependency
+ 4815.IBPluginDependency
+ 4817.IBPluginDependency
+ 4818.IBPluginDependency
+ 4822.IBAttributePlaceholdersKey
+ 4822.IBPluginDependency
+ 4823.IBPluginDependency
+ 4850.IBPluginDependency
+ 4851.IBPluginDependency
+ 4858.IBPluginDependency
+ 4859.IBPluginDependency
+ 4860.IBPluginDependency
+ 4861.IBPluginDependency
+ 4862.IBPluginDependency
+ 4863.IBPluginDependency
+ 4864.IBPluginDependency
+ 4865.IBPluginDependency
+ 4866.IBPluginDependency
+ 4867.IBPluginDependency
+ 4868.IBPluginDependency
+ 4869.IBPluginDependency
+ 4871.IBPluginDependency
+ 4872.IBPluginDependency
+ 4873.IBPluginDependency
+ 4874.IBPluginDependency
+ 4876.IBPluginDependency
+ 4877.IBPluginDependency
+ 4878.IBPluginDependency
+ 4879.IBPluginDependency
+ 4880.IBPluginDependency
+ 4887.IBPluginDependency
+ 4888.IBPluginDependency
+ 4889.IBPluginDependency
+ 4890.IBPluginDependency
+ 4891.IBPluginDependency
+ 4892.IBPluginDependency
+ 4899.IBPluginDependency
+ 490.IBPluginDependency
+ 4900.IBPluginDependency
+ 4901.IBPluginDependency
+ 4902.IBPluginDependency
+ 4903.IBAttributePlaceholdersKey
+ 4903.IBPluginDependency
+ 4904.IBAttributePlaceholdersKey
+ 4904.IBPluginDependency
+ 4906.IBPluginDependency
+ 4907.IBPluginDependency
+ 4908.IBPluginDependency
+ 4909.IBPluginDependency
+ 491.IBEditorWindowLastContentRect
+ 491.IBPluginDependency
+ 4910.IBAttributePlaceholdersKey
+ 4910.IBPluginDependency
+ 4911.IBPluginDependency
+ 4912.IBEditorWindowLastContentRect
+ 4912.IBPluginDependency
+ 4913.IBPluginDependency
+ 4914.IBPluginDependency
+ 4916.IBPluginDependency
+ 492.IBPluginDependency
+ 494.IBPluginDependency
+ 4947.IBPluginDependency
+ 5.IBPluginDependency
+ 5003.IBPluginDependency
+ 5003.IBViewBoundsToFrameTransform
+ 5004.IBPluginDependency
+ 5005.IBPluginDependency
+ 5006.IBPluginDependency
+ 5007.IBPluginDependency
+ 5008.IBPluginDependency
+ 5009.IBPluginDependency
+ 5066.IBPluginDependency
+ 5067.IBPluginDependency
+ 5068.IBAttributePlaceholdersKey
+ 5068.IBPluginDependency
+ 5069.IBPluginDependency
+ 5080.IBEditorWindowLastContentRect
+ 5080.IBPluginDependency
+ 5080.IBWindowTemplateEditedContentRect
+ 5080.NSWindowTemplate.visibleAtLaunch
+ 5080.windowTemplate.hasMinSize
+ 5080.windowTemplate.minSize
+ 5081.IBPluginDependency
+ 5082.IBPluginDependency
+ 5083.IBPluginDependency
+ 5084.IBPluginDependency
+ 5085.IBPluginDependency
+ 5086.IBPluginDependency
+ 5087.IBPluginDependency
+ 5088.IBPluginDependency
+ 5089.IBPluginDependency
+ 5097.IBPluginDependency
+ 5098.IBPluginDependency
+ 5099.IBPluginDependency
+ 5100.IBPluginDependency
+ 5101.IBPluginDependency
+ 5102.IBPluginDependency
+ 5103.IBPluginDependency
+ 5104.IBPluginDependency
+ 5105.IBPluginDependency
+ 5106.IBPluginDependency
+ 5107.IBPluginDependency
+ 5111.IBPluginDependency
+ 5112.IBPluginDependency
+ 5115.IBPluginDependency
+ 5127.IBPluginDependency
+ 5128.IBPluginDependency
+ 5133.IBPluginDependency
+ 5134.IBPluginDependency
+ 5135.IBPluginDependency
+ 5136.IBPluginDependency
+ 5140.IBPluginDependency
+ 5141.IBPluginDependency
+ 5168.IBPluginDependency
+ 5169.IBPluginDependency
+ 5171.IBPluginDependency
+ 5171.IBViewBoundsToFrameTransform
+ 5172.IBPluginDependency
+ 5173.IBPluginDependency
+ 5174.IBPluginDependency
+ 5175.IBPluginDependency
+ 5176.IBPluginDependency
+ 5177.IBPluginDependency
+ 5178.IBPluginDependency
+ 5179.IBPluginDependency
+ 5186.IBPluginDependency
+ 5188.IBAttributePlaceholdersKey
+ 5188.IBPluginDependency
+ 5189.IBPluginDependency
+ 5193.IBNumberFormatterBehaviorMetadataKey
+ 5193.IBNumberFormatterLocalizesFormatMetadataKey
+ 5193.IBPluginDependency
+ 5329.IBPluginDependency
+ 534.IBPluginDependency
+ 535.IBPluginDependency
+ 538.IBPluginDependency
+ 539.IBEditorWindowLastContentRect
+ 539.IBPluginDependency
+ 541.IBPluginDependency
+ 5419.IBPluginDependency
+ 542.IBEditorWindowLastContentRect
+ 542.IBPluginDependency
+ 5420.IBPluginDependency
+ 5421.IBPluginDependency
+ 5427.IBAttributePlaceholdersKey
+ 5427.IBPluginDependency
+ 5450.IBPluginDependency
+ 56.IBPluginDependency
+ 5648.IBPluginDependency
+ 5649.IBPluginDependency
+ 5651.IBEditorWindowLastContentRect
+ 5651.IBPluginDependency
+ 5651.IBWindowTemplateEditedContentRect
+ 5651.NSWindowTemplate.visibleAtLaunch
+ 5652.IBPluginDependency
+ 5653.IBPluginDependency
+ 5654.IBAttributePlaceholdersKey
+ 5654.IBPluginDependency
+ 5658.IBPluginDependency
+ 5659.IBPluginDependency
+ 5660.IBPluginDependency
+ 5661.IBPluginDependency
+ 5665.IBPluginDependency
+ 5666.IBPluginDependency
+ 5667.IBPluginDependency
+ 5668.IBPluginDependency
+ 5669.IBPluginDependency
+ 5670.IBPluginDependency
+ 5671.IBPluginDependency
+ 5672.IBPluginDependency
+ 5673.IBPluginDependency
+ 5674.IBPluginDependency
+ 5675.IBPluginDependency
+ 5676.IBPluginDependency
+ 5677.IBPluginDependency
+ 5678.IBPluginDependency
+ 5679.IBPluginDependency
+ 5680.IBPluginDependency
+ 5681.IBPluginDependency
+ 5682.IBPluginDependency
+ 5683.IBPluginDependency
+ 5684.IBPluginDependency
+ 5685.IBPluginDependency
+ 5686.IBPluginDependency
+ 5687.IBPluginDependency
+ 5688.IBPluginDependency
+ 5689.IBPluginDependency
+ 57.IBEditorWindowLastContentRect
+ 57.IBPluginDependency
+ 5702.IBPluginDependency
+ 5713.IBPluginDependency
+ 575.IBPluginDependency
+ 576.IBEditorWindowLastContentRect
+ 576.IBPluginDependency
+ 58.IBPluginDependency
+ 5933.IBPluginDependency
+ 5934.IBPluginDependency
+ 5935.IBPluginDependency
+ 5936.IBPluginDependency
+ 5937.IBPluginDependency
+ 5938.IBPluginDependency
+ 5939.IBPluginDependency
+ 594.IBPluginDependency
+ 5942.IBPluginDependency
+ 596.IBPluginDependency
+ 5963.IBPluginDependency
+ 607.IBPluginDependency
+ 608.IBEditorWindowLastContentRect
+ 608.IBPluginDependency
+ 6126.IBPluginDependency
+ 6127.IBPluginDependency
+ 6128.IBAttributePlaceholdersKey
+ 6128.IBPluginDependency
+ 6129.IBAttributePlaceholdersKey
+ 6129.IBPluginDependency
+ 6130.IBPluginDependency
+ 6131.IBPluginDependency
+ 6132.IBPluginDependency
+ 6133.IBAttributePlaceholdersKey
+ 6133.IBPluginDependency
+ 6134.IBAttributePlaceholdersKey
+ 6134.IBPluginDependency
+ 6135.IBPluginDependency
+ 6159.IBAttributePlaceholdersKey
+ 6159.IBPluginDependency
+ 6159.IBViewBoundsToFrameTransform
+ 6160.IBPluginDependency
+ 6161.IBAttributePlaceholdersKey
+ 6161.IBPluginDependency
+ 6161.IBViewBoundsToFrameTransform
+ 6162.IBPluginDependency
+ 6168.IBPluginDependency
+ 6169.IBEditorWindowLastContentRect
+ 6169.IBPluginDependency
+ 6170.IBPluginDependency
+ 6171.IBPluginDependency
+ 6172.IBEditorWindowLastContentRect
+ 6172.IBPluginDependency
+ 6173.IBPluginDependency
+ 6174.IBPluginDependency
+ 6177.IBPluginDependency
+ 6180.IBPluginDependency
+ 6182.IBPluginDependency
+ 6183.IBPluginDependency
+ 6184.IBPluginDependency
+ 6185.IBAttributePlaceholdersKey
+ 6185.IBPluginDependency
+ 6186.IBAttributePlaceholdersKey
+ 6186.IBPluginDependency
+ 6187.IBPluginDependency
+ 6188.IBPluginDependency
+ 6189.IBPluginDependency
+ 6190.IBAttributePlaceholdersKey
+ 6190.IBPluginDependency
+ 6191.IBAttributePlaceholdersKey
+ 6191.IBPluginDependency
+ 6233.IBAttributePlaceholdersKey
+ 6233.IBPluginDependency
+ 6234.IBAttributePlaceholdersKey
+ 6234.IBPluginDependency
+ 6238.IBPluginDependency
+ 627.IBEditorWindowLastContentRect
+ 627.IBPluginDependency
+ 627.IBWindowTemplateEditedContentRect
+ 627.NSWindowTemplate.visibleAtLaunch
+ 628.IBPluginDependency
+ 629.IBEditorWindowLastContentRect
+ 629.IBPluginDependency
+ 6295.IBPluginDependency
+ 6295.IBWindowTemplateEditedContentRect
+ 6295.NSWindowTemplate.visibleAtLaunch
+ 6295.windowTemplate.hasMaxSize
+ 6295.windowTemplate.hasMinSize
+ 6295.windowTemplate.maxSize
+ 6295.windowTemplate.minSize
+ 6296.IBPluginDependency
+ 634.IBPluginDependency
+ 635.IBPluginDependency
+ 6352.IBPluginDependency
+ 6353.IBPluginDependency
+ 6354.IBPluginDependency
+ 6355.IBPluginDependency
+ 6356.IBPluginDependency
+ 6357.IBPluginDependency
+ 6358.IBPluginDependency
+ 6359.IBPluginDependency
+ 6360.IBPluginDependency
+ 6361.IBPluginDependency
+ 6362.IBPluginDependency
+ 6363.IBPluginDependency
+ 6364.IBPluginDependency
+ 6365.IBPluginDependency
+ 6366.IBPluginDependency
+ 6368.IBPluginDependency
+ 6369.IBPluginDependency
+ 6374.IBPluginDependency
+ 6376.IBPluginDependency
+ 6377.IBPluginDependency
+ 6378.IBPluginDependency
+ 6379.IBPluginDependency
+ 6380.IBPluginDependency
+ 6381.IBPluginDependency
+ 6382.IBPluginDependency
+ 6383.IBPluginDependency
+ 6384.IBPluginDependency
+ 6385.IBPluginDependency
+ 6386.IBPluginDependency
+ 6387.IBPluginDependency
+ 6388.IBPluginDependency
+ 6389.IBPluginDependency
+ 6390.IBPluginDependency
+ 6391.IBPluginDependency
+ 6392.IBPluginDependency
+ 6393.IBPluginDependency
+ 6394.IBPluginDependency
+ 6395.IBPluginDependency
+ 6396.IBPluginDependency
+ 6397.IBPluginDependency
+ 6398.IBPluginDependency
+ 6399.IBPluginDependency
+ 6400.IBPluginDependency
+ 6401.IBPluginDependency
+ 6402.IBPluginDependency
+ 6405.IBPluginDependency
+ 6406.IBPluginDependency
+ 6407.IBPluginDependency
+ 6408.IBPluginDependency
+ 6413.IBPluginDependency
+ 6414.IBPluginDependency
+ 6415.IBPluginDependency
+ 6418.IBPluginDependency
+ 6419.IBPluginDependency
+ 6420.IBPluginDependency
+ 6421.IBPluginDependency
+ 6422.IBPluginDependency
+ 6423.IBPluginDependency
+ 6424.IBPluginDependency
+ 6425.IBPluginDependency
+ 6426.IBPluginDependency
+ 6427.IBPluginDependency
+ 6428.IBPluginDependency
+ 6429.IBPluginDependency
+ 6430.IBEditorWindowLastContentRect
+ 6430.IBPluginDependency
+ 6431.IBPluginDependency
+ 6432.IBPluginDependency
+ 6433.IBPluginDependency
+ 6434.IBPluginDependency
+ 6435.IBPluginDependency
+ 6436.IBPluginDependency
+ 6437.IBPluginDependency
+ 6438.IBPluginDependency
+ 6440.IBPluginDependency
+ 6441.IBPluginDependency
+ 6451.IBPluginDependency
+ 6484.IBPluginDependency
+ 6485.IBPluginDependency
+ 6486.IBPluginDependency
+ 6487.IBPluginDependency
+ 6488.IBPluginDependency
+ 6489.IBPluginDependency
+ 6491.IBPluginDependency
+ 6492.IBPluginDependency
+ 6493.IBPluginDependency
+ 6494.IBPluginDependency
+ 6496.IBPluginDependency
+ 6497.IBPluginDependency
+ 6498.IBPluginDependency
+ 6499.IBPluginDependency
+ 6611.IBPluginDependency
+ 6612.IBPluginDependency
+ 6617.IBPluginDependency
+ 6617.IBViewBoundsToFrameTransform
+ 6618.IBAttributePlaceholdersKey
+ 6618.IBPluginDependency
+ 6619.IBPluginDependency
+ 6622.IBPluginDependency
+ 6622.IBViewBoundsToFrameTransform
+ 6623.IBAttributePlaceholdersKey
+ 6623.IBPluginDependency
+ 6624.IBPluginDependency
+ 6627.IBAttributePlaceholdersKey
+ 6627.IBPluginDependency
+ 6628.IBPluginDependency
+ 6630.IBAttributePlaceholdersKey
+ 6630.IBPluginDependency
+ 6631.IBPluginDependency
+ 6634.IBAttributePlaceholdersKey
+ 6634.IBPluginDependency
+ 6651.IBPluginDependency
+ 6652.IBPluginDependency
+ 6931.IBPluginDependency
+ 6998.IBPluginDependency
+ 6999.IBPluginDependency
+ 7002.IBPluginDependency
+ 7014.IBEditorWindowLastContentRect
+ 7014.IBPluginDependency
+ 7128.IBPluginDependency
+ 7129.IBPluginDependency
+ 7130.IBPluginDependency
+ 7131.IBPluginDependency
+ 7132.IBPluginDependency
+ 7133.IBPluginDependency
+ 7134.IBPluginDependency
+ 7135.IBPluginDependency
+ 7136.IBPluginDependency
+ 7137.IBPluginDependency
+ 7138.IBPluginDependency
+ 7139.IBPluginDependency
+ 714.IBEditorWindowLastContentRect
+ 714.IBPluginDependency
+ 7140.IBPluginDependency
+ 7141.IBPluginDependency
+ 7142.IBPluginDependency
+ 715.IBPluginDependency
+ 7168.IBPluginDependency
+ 7169.IBPluginDependency
+ 7171.IBEditorWindowLastContentRect
+ 7171.IBPluginDependency
+ 7171.IBWindowTemplateEditedContentRect
+ 7171.NSWindowTemplate.visibleAtLaunch
+ 7172.IBPluginDependency
+ 7173.IBEditorWindowLastContentRect
+ 7173.IBPluginDependency
+ 7173.IBWindowTemplateEditedContentRect
+ 7173.NSWindowTemplate.visibleAtLaunch
+ 7174.IBPluginDependency
+ 7175.IBEditorWindowLastContentRect
+ 7175.IBPluginDependency
+ 7175.IBWindowTemplateEditedContentRect
+ 7175.NSWindowTemplate.visibleAtLaunch
+ 7176.IBPluginDependency
+ 7179.IBEditorWindowLastContentRect
+ 7179.IBPluginDependency
+ 7179.IBWindowTemplateEditedContentRect
+ 7179.NSWindowTemplate.visibleAtLaunch
+ 7180.IBPluginDependency
+ 7182.IBPluginDependency
+ 7183.IBPluginDependency
+ 7184.IBPluginDependency
+ 7185.IBPluginDependency
+ 7186.IBAttributePlaceholdersKey
+ 7186.IBPluginDependency
+ 7187.IBPluginDependency
+ 7188.IBAttributePlaceholdersKey
+ 7188.IBPluginDependency
+ 7189.IBAttributePlaceholdersKey
+ 7189.IBPluginDependency
+ 7190.IBAttributePlaceholdersKey
+ 7190.IBPluginDependency
+ 7191.IBPluginDependency
+ 7192.IBPluginDependency
+ 72.IBPluginDependency
+ 7210.IBPluginDependency
+ 7211.IBPluginDependency
+ 7212.IBPluginDependency
+ 7213.IBPluginDependency
+ 7214.IBPluginDependency
+ 7215.IBPluginDependency
+ 7216.IBPluginDependency
+ 7217.IBPluginDependency
+ 7218.IBPluginDependency
+ 7219.IBPluginDependency
+ 7220.IBPluginDependency
+ 7221.IBPluginDependency
+ 7222.IBPluginDependency
+ 7223.IBPluginDependency
+ 7224.IBPluginDependency
+ 7225.IBEditorWindowLastContentRect
+ 7225.IBPluginDependency
+ 7225.IBWindowTemplateEditedContentRect
+ 7225.NSWindowTemplate.visibleAtLaunch
+ 7226.IBPluginDependency
+ 7227.IBPluginDependency
+ 7228.IBPluginDependency
+ 7229.IBPluginDependency
+ 7230.IBPluginDependency
+ 7231.IBPluginDependency
+ 7232.IBPluginDependency
+ 7233.IBPluginDependency
+ 7234.IBPluginDependency
+ 7235.IBPluginDependency
+ 7236.IBPluginDependency
+ 7237.IBPluginDependency
+ 7238.IBPluginDependency
+ 7239.IBPluginDependency
+ 7240.IBPluginDependency
+ 7241.IBPluginDependency
+ 7266.IBPluginDependency
+ 7267.IBPluginDependency
+ 7268.IBPluginDependency
+ 7269.IBPluginDependency
+ 7270.IBPluginDependency
+ 7271.IBPluginDependency
+ 7272.IBPluginDependency
+ 7273.IBPluginDependency
+ 7274.IBPluginDependency
+ 7275.IBPluginDependency
+ 7276.IBPluginDependency
+ 7277.IBPluginDependency
+ 7278.IBPluginDependency
+ 7279.IBPluginDependency
+ 7280.IBPluginDependency
+ 7285.IBPluginDependency
+ 7286.IBPluginDependency
+ 7287.IBPluginDependency
+ 7288.IBPluginDependency
+ 7289.IBPluginDependency
+ 7290.IBPluginDependency
+ 7291.IBPluginDependency
+ 7292.IBPluginDependency
+ 7293.IBPluginDependency
+ 7293.IBViewBoundsToFrameTransform
+ 7294.IBNumberFormatterBehaviorMetadataKey
+ 7294.IBNumberFormatterLocalizesFormatMetadataKey
+ 7294.IBPluginDependency
+ 7295.IBNumberFormatterBehaviorMetadataKey
+ 7295.IBNumberFormatterLocalizesFormatMetadataKey
+ 7295.IBPluginDependency
+ 7301.IBPluginDependency
+ 7301.IBViewBoundsToFrameTransform
+ 7302.IBPluginDependency
+ 7305.IBPluginDependency
+ 7305.IBViewBoundsToFrameTransform
+ 7308.IBPluginDependency
+ 7309.IBPluginDependency
+ 7312.IBPluginDependency
+ 7313.IBPluginDependency
+ 7316.IBPluginDependency
+ 7317.IBPluginDependency
+ 7320.IBPluginDependency
+ 7353.IBPluginDependency
+ 7354.IBPluginDependency
+ 7355.IBPluginDependency
+ 7358.IBPluginDependency
+ 7358.IBViewBoundsToFrameTransform
+ 7359.IBPluginDependency
+ 7392.IBPluginDependency
+ 7392.IBViewBoundsToFrameTransform
+ 7393.IBPluginDependency
+ 7395.IBPluginDependency
+ 7395.IBViewBoundsToFrameTransform
+ 7396.IBPluginDependency
+ 7398.IBPluginDependency
+ 7399.IBPluginDependency
+ 74.IBPluginDependency
+ 7401.IBPluginDependency
+ 7402.IBPluginDependency
+ 7404.IBPluginDependency
+ 7405.IBPluginDependency
+ 7433.IBPluginDependency
+ 7434.IBPluginDependency
+ 7436.IBPluginDependency
+ 7437.IBPluginDependency
+ 7439.IBPluginDependency
+ 7440.IBPluginDependency
+ 7442.IBPluginDependency
+ 7442.IBViewBoundsToFrameTransform
+ 7443.IBPluginDependency
+ 7445.IBPluginDependency
+ 7445.IBViewBoundsToFrameTransform
+ 7446.IBPluginDependency
+ 7449.IBEditorWindowLastContentRect
+ 7449.IBPluginDependency
+ 7449.IBWindowTemplateEditedContentRect
+ 7449.NSWindowTemplate.visibleAtLaunch
+ 7450.IBPluginDependency
+ 7451.IBPluginDependency
+ 7452.IBPluginDependency
+ 7454.IBPluginDependency
+ 7455.IBPluginDependency
+ 7456.IBPluginDependency
+ 7457.IBPluginDependency
+ 7458.IBPluginDependency
+ 7459.IBPluginDependency
+ 7460.IBPluginDependency
+ 7461.IBPluginDependency
+ 7462.IBPluginDependency
+ 7463.IBPluginDependency
+ 7464.IBPluginDependency
+ 7465.IBNumberFormatterBehaviorMetadataKey
+ 7465.IBNumberFormatterLocalizesFormatMetadataKey
+ 7465.IBPluginDependency
+ 7466.IBPluginDependency
+ 7467.IBPluginDependency
+ 7468.IBPluginDependency
+ 7469.IBPluginDependency
+ 7470.IBPluginDependency
+ 7471.IBPluginDependency
+ 7472.IBPluginDependency
+ 7473.IBPluginDependency
+ 7474.IBPluginDependency
+ 7486.IBPluginDependency
+ 7487.IBPluginDependency
+ 7488.IBPluginDependency
+ 7489.IBPluginDependency
+ 75.IBPluginDependency
+ 7515.IBPluginDependency
+ 7515.IBWindowTemplateEditedContentRect
+ 7515.NSWindowTemplate.visibleAtLaunch
+ 7515.windowTemplate.hasMinSize
+ 7515.windowTemplate.minSize
+ 7516.IBPluginDependency
+ 7517.IBPluginDependency
+ 7518.IBPluginDependency
+ 7519.IBPluginDependency
+ 7520.IBPluginDependency
+ 7521.IBPluginDependency
+ 7522.IBPluginDependency
+ 7525.IBPluginDependency
+ 7526.IBPluginDependency
+ 7528.IBPluginDependency
+ 7531.IBPluginDependency
+ 7537.IBPluginDependency
+ 7540.IBPluginDependency
+ 7541.IBPluginDependency
+ 7542.IBPluginDependency
+ 7543.IBPluginDependency
+ 7544.IBPluginDependency
+ 7545.IBPluginDependency
+ 7546.IBPluginDependency
+ 7551.IBPluginDependency
+ 7552.IBPluginDependency
+ 7553.IBPluginDependency
+ 7554.IBPluginDependency
+ 7555.IBPluginDependency
+ 7556.IBPluginDependency
+ 7583.IBPluginDependency
+ 7584.IBPluginDependency
+ 7594.IBPluginDependency
+ 7595.IBPluginDependency
+ 7596.IBPluginDependency
+ 7597.IBPluginDependency
+ 7598.IBAttributePlaceholdersKey
+ 7598.IBPluginDependency
+ 7599.IBAttributePlaceholdersKey
+ 7599.IBPluginDependency
+ 7600.IBAttributePlaceholdersKey
+ 7600.IBPluginDependency
+ 7601.IBAttributePlaceholdersKey
+ 7601.IBPluginDependency
+ 7602.IBPluginDependency
+ 7603.IBPluginDependency
+ 7604.IBAttributePlaceholdersKey
+ 7604.IBPluginDependency
+ 7605.IBPluginDependency
+ 7606.IBPluginDependency
+ 7607.IBEditorWindowLastContentRect
+ 7607.IBPluginDependency
+ 7610.IBAttributePlaceholdersKey
+ 7610.IBPluginDependency
+ 7612.IBPluginDependency
+ 7624.IBPluginDependency
+ 7625.IBPluginDependency
+ 7666.CustomClassName
+ 7666.IBPluginDependency
+ 7707.IBEditorWindowLastContentRect
+ 7707.IBPluginDependency
+ 7707.IBWindowTemplateEditedContentRect
+ 7707.NSWindowTemplate.visibleAtLaunch
+ 7708.IBPluginDependency
+ 7715.IBPluginDependency
+ 7716.IBPluginDependency
+ 7725.IBPluginDependency
+ 7726.IBPluginDependency
+ 7729.IBPluginDependency
+ 7730.IBPluginDependency
+ 7740.IBPluginDependency
+ 7759.IBPluginDependency
+ 7760.IBPluginDependency
+ 7761.IBPluginDependency
+ 7762.IBPluginDependency
+ 7765.IBNumberFormatterBehaviorMetadataKey
+ 7765.IBNumberFormatterLocalizesFormatMetadataKey
+ 7765.IBPluginDependency
+ 7766.IBPluginDependency
+ 7767.IBPluginDependency
+ 7771.IBPluginDependency
+ 7772.IBEditorWindowLastContentRect
+ 7772.IBPluginDependency
+ 7773.IBPluginDependency
+ 7774.IBPluginDependency
+ 7775.IBPluginDependency
+ 7776.IBPluginDependency
+ 7777.IBPluginDependency
+ 7778.IBPluginDependency
+ 7779.IBPluginDependency
+ 7780.IBPluginDependency
+ 7781.IBPluginDependency
+ 7792.IBAttributePlaceholdersKey
+ 7792.IBPluginDependency
+ 7793.IBPluginDependency
+ 7794.IBNumberFormatterBehaviorMetadataKey
+ 7794.IBNumberFormatterLocalizesFormatMetadataKey
+ 7794.IBNumberFormatterSampleNumberKey
+ 7794.IBPluginDependency
+ 7802.IBAttributePlaceholdersKey
+ 7802.IBPluginDependency
+ 7803.IBPluginDependency
+ 7804.IBPluginDependency
+ 7805.IBPluginDependency
+ 7806.IBPluginDependency
+ 7807.IBPluginDependency
+ 7808.IBPluginDependency
+ 7809.IBPluginDependency
+ 7810.IBPluginDependency
+ 7811.IBPluginDependency
+ 7812.IBPluginDependency
+ 7813.IBPluginDependency
+ 7817.IBEditorWindowLastContentRect
+ 7817.IBPluginDependency
+ 7817.IBWindowTemplateEditedContentRect
+ 7817.NSWindowTemplate.visibleAtLaunch
+ 7818.IBPluginDependency
+ 7820.IBPluginDependency
+ 7821.IBPluginDependency
+ 7822.IBPluginDependency
+ 7823.IBPluginDependency
+ 7824.IBPluginDependency
+ 7825.IBPluginDependency
+ 7826.IBPluginDependency
+ 7827.IBPluginDependency
+ 7828.IBPluginDependency
+ 7829.IBPluginDependency
+ 783.IBPluginDependency
+ 7830.IBPluginDependency
+ 7831.IBPluginDependency
+ 7836.IBPluginDependency
+ 7837.IBPluginDependency
+ 7838.IBPluginDependency
+ 7839.IBPluginDependency
+ 784.IBEditorWindowLastContentRect
+ 784.IBPluginDependency
+ 7840.IBNumberFormatterBehaviorMetadataKey
+ 7840.IBNumberFormatterLocalizesFormatMetadataKey
+ 7840.IBPluginDependency
+ 7843.IBAttributePlaceholdersKey
+ 7843.IBPluginDependency
+ 7844.IBPluginDependency
+ 7845.IBAttributePlaceholdersKey
+ 7845.IBPluginDependency
+ 7846.IBPluginDependency
+ 7847.IBPluginDependency
+ 7848.IBPluginDependency
+ 785.IBPluginDependency
+ 7855.IBEditorWindowLastContentRect
+ 7855.IBPluginDependency
+ 7855.IBWindowTemplateEditedContentRect
+ 7855.NSWindowTemplate.visibleAtLaunch
+ 7856.IBPluginDependency
+ 7857.IBPluginDependency
+ 7857.IBViewBoundsToFrameTransform
+ 7858.IBPluginDependency
+ 7859.IBPluginDependency
+ 7860.IBPluginDependency
+ 7861.IBPluginDependency
+ 7862.IBAttributePlaceholdersKey
+ 7862.IBPluginDependency
+ 7863.IBPluginDependency
+ 7863.IBViewBoundsToFrameTransform
+ 7864.IBPluginDependency
+ 7866.IBAttributePlaceholdersKey
+ 7866.IBPluginDependency
+ 7866.IBViewBoundsToFrameTransform
+ 7867.IBPluginDependency
+ 787.IBPluginDependency
+ 7871.IBAttributePlaceholdersKey
+ 7871.IBPluginDependency
+ 7871.IBViewBoundsToFrameTransform
+ 7872.IBPluginDependency
+ 7873.IBAttributePlaceholdersKey
+ 7873.IBPluginDependency
+ 7873.IBViewBoundsToFrameTransform
+ 7874.IBPluginDependency
+ 7875.IBPluginDependency
+ 7875.IBViewBoundsToFrameTransform
+ 7876.IBPluginDependency
+ 7879.IBPluginDependency
+ 7879.IBViewBoundsToFrameTransform
+ 788.IBEditorWindowLastContentRect
+ 788.IBPluginDependency
+ 7880.IBPluginDependency
+ 7880.IBViewBoundsToFrameTransform
+ 7881.IBPluginDependency
+ 7886.IBPluginDependency
+ 789.IBPluginDependency
+ 7899.IBPluginDependency
+ 79.IBPluginDependency
+ 794.IBEditorWindowLastContentRect
+ 794.IBPluginDependency
+ 794.IBWindowTemplateEditedContentRect
+ 794.NSWindowTemplate.visibleAtLaunch
+ 795.IBAttributePlaceholdersKey
+ 795.IBPluginDependency
+ 796.IBEditorWindowLastContentRect
+ 796.IBPluginDependency
+ 796.IBWindowTemplateEditedContentRect
+ 796.NSWindowTemplate.visibleAtLaunch
+ 797.IBPluginDependency
+ 7971.IBPluginDependency
+ 7971.IBViewBoundsToFrameTransform
+ 7972.IBPluginDependency
+ 7972.IBViewBoundsToFrameTransform
+ 7973.IBPluginDependency
+ 7974.IBPluginDependency
+ 7978.IBPluginDependency
+ 7978.IBViewBoundsToFrameTransform
+ 7987.IBPluginDependency
+ 7988.IBPluginDependency
+ 7989.IBEditorWindowLastContentRect
+ 7989.IBPluginDependency
+ 7993.IBPluginDependency
+ 7994.IBPluginDependency
+ 7995.IBPluginDependency
+ 7996.IBPluginDependency
+ 7997.IBPluginDependency
+ 7998.IBPluginDependency
+ 80.IBPluginDependency
+ 8003.IBPluginDependency
+ 8009.IBPluginDependency
+ 8009.IBViewBoundsToFrameTransform
+ 8012.IBPluginDependency
+ 8013.IBPluginDependency
+ 8014.IBPluginDependency
+ 8015.IBPluginDependency
+ 8016.IBPluginDependency
+ 8021.IBPluginDependency
+ 8022.IBPluginDependency
+ 8023.IBPluginDependency
+ 8024.IBPluginDependency
+ 8025.IBPluginDependency
+ 8030.IBPluginDependency
+ 8030.IBViewBoundsToFrameTransform
+ 8031.IBPluginDependency
+ 8031.IBViewBoundsToFrameTransform
+ 8032.IBPluginDependency
+ 8032.IBViewBoundsToFrameTransform
+ 8033.IBPluginDependency
+ 8034.IBPluginDependency
+ 8043.IBPluginDependency
+ 8044.IBPluginDependency
+ 8045.IBAttributePlaceholdersKey
+ 8045.IBPluginDependency
+ 8046.IBPluginDependency
+ 8047.IBNumberFormatterBehaviorMetadataKey
+ 8047.IBNumberFormatterLocalizesFormatMetadataKey
+ 8047.IBPluginDependency
+ 8048.IBPluginDependency
+ 8049.IBPluginDependency
+ 8056.IBPluginDependency
+ 8057.IBPluginDependency
+ 8058.IBAttributePlaceholdersKey
+ 8058.IBPluginDependency
+ 8059.IBPluginDependency
+ 8060.IBPluginDependency
+ 8061.IBPluginDependency
+ 8066.IBNumberFormatterBehaviorMetadataKey
+ 8066.IBNumberFormatterLocalizesFormatMetadataKey
+ 8066.IBPluginDependency
+ 8075.IBPluginDependency
+ 8076.IBPluginDependency
+ 8077.IBPluginDependency
+ 8078.IBPluginDependency
+ 8084.IBPluginDependency
+ 81.IBEditorWindowLastContentRect
+ 81.IBPluginDependency
+ 8134.IBEditorWindowLastContentRect
+ 8134.IBPluginDependency
+ 8134.IBWindowTemplateEditedContentRect
+ 8134.NSWindowTemplate.visibleAtLaunch
+ 8135.IBPluginDependency
+ 8136.IBPluginDependency
+ 8137.IBPluginDependency
+ 8138.IBPluginDependency
+ 8139.IBPluginDependency
+ 8140.IBPluginDependency
+ 8141.IBPluginDependency
+ 8142.IBPluginDependency
+ 8143.IBPluginDependency
+ 8144.IBPluginDependency
+ 8145.IBPluginDependency
+ 8146.IBPluginDependency
+ 8147.IBPluginDependency
+ 8148.IBPluginDependency
+ 8149.IBPluginDependency
+ 8150.IBPluginDependency
+ 8151.IBPluginDependency
+ 8152.IBPluginDependency
+ 8153.IBPluginDependency
+ 8154.IBPluginDependency
+ 8155.IBPluginDependency
+ 8156.IBPluginDependency
+ 8157.IBPluginDependency
+ 8158.IBPluginDependency
+ 8159.IBPluginDependency
+ 8160.IBPluginDependency
+ 8161.IBPluginDependency
+ 8162.IBPluginDependency
+ 8164.IBPluginDependency
+ 8181.IBPluginDependency
+ 8182.IBPluginDependency
+ 8183.IBPluginDependency
+ 8184.IBPluginDependency
+ 8185.IBPluginDependency
+ 8186.IBPluginDependency
+ 8188.IBPluginDependency
+ 8188.IBViewBoundsToFrameTransform
+ 8189.IBPluginDependency
+ 8194.IBPluginDependency
+ 8194.IBViewBoundsToFrameTransform
+ 8195.IBPluginDependency
+ 823.IBPluginDependency
+ 824.IBPluginDependency
+ 8245.IBPluginDependency
+ 8246.IBEditorWindowLastContentRect
+ 8246.IBPluginDependency
+ 825.IBPluginDependency
+ 8253.IBPluginDependency
+ 8254.IBPluginDependency
+ 8255.IBPluginDependency
+ 8256.IBPluginDependency
+ 8257.IBPluginDependency
+ 8258.IBPluginDependency
+ 8259.IBPluginDependency
+ 826.IBPluginDependency
+ 8260.IBPluginDependency
+ 8261.IBPluginDependency
+ 8262.IBPluginDependency
+ 8263.IBPluginDependency
+ 8265.IBPluginDependency
+ 8268.IBPluginDependency
+ 8269.IBPluginDependency
+ 827.IBPluginDependency
+ 828.IBPluginDependency
+ 829.IBPluginDependency
+ 8295.IBPluginDependency
+ 83.IBPluginDependency
+ 830.IBPluginDependency
+ 8302.IBAttributePlaceholdersKey
+ 8302.IBPluginDependency
+ 8302.IBViewBoundsToFrameTransform
+ 8303.IBPluginDependency
+ 8307.IBPluginDependency
+ 8308.IBPluginDependency
+ 8308.IBViewBoundsToFrameTransform
+ 8309.IBPluginDependency
+ 831.IBPluginDependency
+ 8310.IBPluginDependency
+ 8316.IBPluginDependency
+ 832.IBPluginDependency
+ 8322.IBAttributePlaceholdersKey
+ 8322.IBPluginDependency
+ 8322.IBViewBoundsToFrameTransform
+ 8323.IBPluginDependency
+ 833.IBPluginDependency
+ 8331.IBEditorWindowLastContentRect
+ 8331.IBPluginDependency
+ 8331.IBWindowTemplateEditedContentRect
+ 8331.NSWindowTemplate.visibleAtLaunch
+ 8332.IBPluginDependency
+ 8333.IBPluginDependency
+ 8333.IBViewBoundsToFrameTransform
+ 8334.IBPluginDependency
+ 8335.IBPluginDependency
+ 8336.IBPluginDependency
+ 8338.IBPluginDependency
+ 834.IBPluginDependency
+ 8341.IBPluginDependency
+ 8343.IBPluginDependency
+ 8343.IBViewBoundsToFrameTransform
+ 8344.IBPluginDependency
+ 8344.IBViewBoundsToFrameTransform
+ 8345.IBAttributePlaceholdersKey
+ 8345.IBPluginDependency
+ 8345.IBViewBoundsToFrameTransform
+ 8346.IBPluginDependency
+ 835.IBPluginDependency
+ 8352.IBPluginDependency
+ 8354.IBPluginDependency
+ 8356.IBPluginDependency
+ 836.IBPluginDependency
+ 8363.IBPluginDependency
+ 8363.IBViewBoundsToFrameTransform
+ 8364.IBPluginDependency
+ 8365.IBPluginDependency
+ 8365.IBViewBoundsToFrameTransform
+ 8366.IBEditorWindowLastContentRect
+ 8366.IBPluginDependency
+ 8366.IBViewBoundsToFrameTransform
+ 8367.IBPluginDependency
+ 8367.IBViewBoundsToFrameTransform
+ 8368.IBPluginDependency
+ 8369.IBEditorWindowLastContentRect
+ 8369.IBPluginDependency
+ 8369.IBViewBoundsToFrameTransform
+ 8377.IBPluginDependency
+ 8377.IBViewBoundsToFrameTransform
+ 8378.IBPluginDependency
+ 8379.IBEditorWindowLastContentRect
+ 8379.IBPluginDependency
+ 8380.IBPluginDependency
+ 8381.IBPluginDependency
+ 8382.IBPluginDependency
+ 8383.IBPluginDependency
+ 8384.IBPluginDependency
+ 8385.IBPluginDependency
+ 8386.IBPluginDependency
+ 8387.IBPluginDependency
+ 8387.IBViewBoundsToFrameTransform
+ 8388.IBPluginDependency
+ 8402.IBEditorWindowLastContentRect
+ 8402.IBPluginDependency
+ 8402.IBViewBoundsToFrameTransform
+ 8405.IBEditorWindowLastContentRect
+ 8405.IBPluginDependency
+ 8405.IBViewBoundsToFrameTransform
+ 8408.IBEditorWindowLastContentRect
+ 8408.IBPluginDependency
+ 8408.IBViewBoundsToFrameTransform
+ 8409.IBPluginDependency
+ 8409.IBViewBoundsToFrameTransform
+ 8410.IBPluginDependency
+ 8411.IBPluginDependency
+ 8411.IBViewBoundsToFrameTransform
+ 8412.IBPluginDependency
+ 8413.IBPluginDependency
+ 8413.IBViewBoundsToFrameTransform
+ 8414.IBPluginDependency
+ 8415.IBPluginDependency
+ 8415.IBViewBoundsToFrameTransform
+ 8416.IBPluginDependency
+ 8427.IBPluginDependency
+ 8427.IBViewBoundsToFrameTransform
+ 8428.IBEditorWindowLastContentRect
+ 8428.IBPluginDependency
+ 8428.IBViewBoundsToFrameTransform
+ 843.IBPluginDependency
+ 844.IBPluginDependency
+ 8445.IBEditorWindowLastContentRect
+ 8445.IBPluginDependency
+ 8445.IBViewBoundsToFrameTransform
+ 8446.IBPluginDependency
+ 8446.IBViewBoundsToFrameTransform
+ 8447.IBPluginDependency
+ 8448.IBEditorWindowLastContentRect
+ 8448.IBPluginDependency
+ 8448.IBViewBoundsToFrameTransform
+ 845.IBPluginDependency
+ 845.IBViewBoundsToFrameTransform
+ 8451.IBEditorWindowLastContentRect
+ 8451.IBPluginDependency
+ 8451.IBViewBoundsToFrameTransform
+ 8454.IBEditorWindowLastContentRect
+ 8454.IBPluginDependency
+ 8454.IBViewBoundsToFrameTransform
+ 8455.IBPluginDependency
+ 8455.IBViewBoundsToFrameTransform
+ 8456.IBPluginDependency
+ 8457.IBPluginDependency
+ 8457.IBViewBoundsToFrameTransform
+ 8458.IBPluginDependency
+ 846.IBPluginDependency
+ 8477.IBPluginDependency
+ 8477.IBViewBoundsToFrameTransform
+ 8478.IBPluginDependency
+ 8499.IBPluginDependency
+ 8499.IBViewBoundsToFrameTransform
+ 850.IBPluginDependency
+ 8500.IBPluginDependency
+ 8501.IBAttributePlaceholdersKey
+ 8501.IBPluginDependency
+ 8501.IBViewBoundsToFrameTransform
+ 8502.IBPluginDependency
+ 8512.IBPluginDependency
+ 8512.IBViewBoundsToFrameTransform
+ 8513.IBPluginDependency
+ 8514.IBPluginDependency
+ 8515.IBPluginDependency
+ 8517.IBPluginDependency
+ 8518.IBPluginDependency
+ 8519.IBPluginDependency
+ 8523.IBPluginDependency
+ 8525.IBPluginDependency
+ 8525.IBViewBoundsToFrameTransform
+ 8526.IBPluginDependency
+ 8527.IBPluginDependency
+ 8535.IBPluginDependency
+ 855.IBPluginDependency
+ 8552.IBEditorWindowLastContentRect
+ 8552.IBPluginDependency
+ 8552.IBViewBoundsToFrameTransform
+ 8553.IBPluginDependency
+ 8553.IBViewBoundsToFrameTransform
+ 8554.IBPluginDependency
+ 8557.IBPluginDependency
+ 8557.IBViewBoundsToFrameTransform
+ 8558.IBPluginDependency
+ 8558.IBViewBoundsToFrameTransform
+ 8559.IBPluginDependency
+ 8559.IBViewBoundsToFrameTransform
+ 8560.IBPluginDependency
+ 8561.IBPluginDependency
+ 8568.IBPluginDependency
+ 8568.IBViewBoundsToFrameTransform
+ 8569.IBPluginDependency
+ 8569.IBViewBoundsToFrameTransform
+ 8570.IBPluginDependency
+ 8571.IBPluginDependency
+ 8571.IBViewBoundsToFrameTransform
+ 8572.IBPluginDependency
+ 8575.IBPluginDependency
+ 8575.IBViewBoundsToFrameTransform
+ 8576.IBPluginDependency
+ 8578.IBPluginDependency
+ 8578.IBViewBoundsToFrameTransform
+ 8579.IBPluginDependency
+ 8596.IBEditorWindowLastContentRect
+ 8596.IBPluginDependency
+ 8596.IBWindowTemplateEditedContentRect
+ 8596.NSWindowTemplate.visibleAtLaunch
+ 8597.IBPluginDependency
+ 8598.IBPluginDependency
+ 8598.IBViewBoundsToFrameTransform
+ 8599.IBPluginDependency
+ 8608.IBPluginDependency
+ 8608.IBViewBoundsToFrameTransform
+ 8609.IBPluginDependency
+ 861.IBEditorWindowLastContentRect
+ 861.IBPluginDependency
+ 861.IBWindowTemplateEditedContentRect
+ 861.NSWindowTemplate.visibleAtLaunch
+ 8610.IBPluginDependency
+ 8610.IBViewBoundsToFrameTransform
+ 8611.IBPluginDependency
+ 8612.IBPluginDependency
+ 8612.IBViewBoundsToFrameTransform
+ 862.IBPluginDependency
+ 8635.IBNumberFormatterBehaviorMetadataKey
+ 8635.IBNumberFormatterLocalizesFormatMetadataKey
+ 8635.IBNumberFormatterSampleNumberKey
+ 8635.IBPluginDependency
+ 8638.IBPluginDependency
+ 8638.IBViewBoundsToFrameTransform
+ 8639.IBPluginDependency
+ 8639.IBViewBoundsToFrameTransform
+ 8640.IBPluginDependency
+ 8641.IBPluginDependency
+ 865.IBPluginDependency
+ 8653.IBPluginDependency
+ 8653.IBViewBoundsToFrameTransform
+ 8654.IBPluginDependency
+ 8655.IBPluginDependency
+ 8655.IBViewBoundsToFrameTransform
+ 8656.IBPluginDependency
+ 866.IBPluginDependency
+ 8660.IBPluginDependency
+ 8660.IBViewBoundsToFrameTransform
+ 8661.IBPluginDependency
+ 8663.IBPluginDependency
+ 8663.IBViewBoundsToFrameTransform
+ 8664.IBPluginDependency
+ 8667.IBPluginDependency
+ 8667.IBViewBoundsToFrameTransform
+ 8668.IBPluginDependency
+ 8677.IBPluginDependency
+ 8677.IBViewBoundsToFrameTransform
+ 8678.IBPluginDependency
+ 8679.IBPluginDependency
+ 8679.IBViewBoundsToFrameTransform
+ 8680.IBPluginDependency
+ 8681.IBPluginDependency
+ 8681.IBViewBoundsToFrameTransform
+ 8682.IBPluginDependency
+ 8687.IBPluginDependency
+ 8687.IBViewBoundsToFrameTransform
+ 8688.IBPluginDependency
+ 8688.IBViewBoundsToFrameTransform
+ 8689.IBPluginDependency
+ 8689.IBViewBoundsToFrameTransform
+ 8690.IBPluginDependency
+ 8691.IBPluginDependency
+ 8692.IBPluginDependency
+ 8706.IBPluginDependency
+ 8706.IBViewBoundsToFrameTransform
+ 8707.IBPluginDependency
+ 8718.IBPluginDependency
+ 8718.IBViewBoundsToFrameTransform
+ 8719.IBPluginDependency
+ 872.IBPluginDependency
+ 8722.IBPluginDependency
+ 8722.IBViewBoundsToFrameTransform
+ 8723.IBPluginDependency
+ 8724.IBPluginDependency
+ 8724.IBViewBoundsToFrameTransform
+ 8725.IBPluginDependency
+ 8727.IBPluginDependency
+ 8727.IBViewBoundsToFrameTransform
+ 8730.IBPluginDependency
+ 8730.IBViewBoundsToFrameTransform
+ 8731.IBPluginDependency
+ 8735.IBPluginDependency
+ 8735.IBViewBoundsToFrameTransform
+ 8736.IBPluginDependency
+ 8739.IBPluginDependency
+ 8740.IBPluginDependency
+ 8741.IBPluginDependency
+ 8741.IBViewBoundsToFrameTransform
+ 8742.IBPluginDependency
+ 8742.IBViewBoundsToFrameTransform
+ 8743.IBPluginDependency
+ 8744.IBPluginDependency
+ 8746.IBPluginDependency
+ 8746.IBViewBoundsToFrameTransform
+ 8747.IBPluginDependency
+ 875.IBPluginDependency
+ 8758.IBPluginDependency
+ 876.IBPluginDependency
+ 877.IBPluginDependency
+ 878.IBPluginDependency
+ 879.IBPluginDependency
+ 880.IBPluginDependency
+ 883.IBPluginDependency
+ 884.IBPluginDependency
+ 885.IBPluginDependency
+ 886.IBPluginDependency
+ 887.IBPluginDependency
+ 888.IBPluginDependency
+ 889.IBPluginDependency
+ 890.IBPluginDependency
+ 897.IBPluginDependency
+ 8975.IBPluginDependency
+ 8976.IBPluginDependency
+ 8978.IBPluginDependency
+ 8979.IBPluginDependency
+ 898.IBPluginDependency
+ 899.IBPluginDependency
+ 8991.IBEditorWindowLastContentRect
+ 8991.IBPluginDependency
+ 8991.IBWindowTemplateEditedContentRect
+ 8991.NSWindowTemplate.visibleAtLaunch
+ 8992.IBPluginDependency
+ 8993.IBAttributePlaceholdersKey
+ 8993.IBPluginDependency
+ 8993.IBViewBoundsToFrameTransform
+ 8994.IBPluginDependency
+ 8995.IBAttributePlaceholdersKey
+ 8995.IBPluginDependency
+ 8995.IBViewBoundsToFrameTransform
+ 8996.IBPluginDependency
+ 8997.IBAttributePlaceholdersKey
+ 8997.IBPluginDependency
+ 8997.IBViewBoundsToFrameTransform
+ 8998.IBPluginDependency
+ 900.IBPluginDependency
+ 9001.IBAttributePlaceholdersKey
+ 9001.IBPluginDependency
+ 9001.IBViewBoundsToFrameTransform
+ 9002.IBPluginDependency
+ 9007.IBPluginDependency
+ 901.IBPluginDependency
+ 9019.IBAttributePlaceholdersKey
+ 9019.IBPluginDependency
+ 9019.IBViewBoundsToFrameTransform
+ 902.IBPluginDependency
+ 9020.IBPluginDependency
+ 903.IBPluginDependency
+ 9032.IBPluginDependency
+ 9032.IBViewBoundsToFrameTransform
+ 9033.IBPluginDependency
+ 9034.IBPluginDependency
+ 9034.IBViewBoundsToFrameTransform
+ 9035.IBPluginDependency
+ 9036.IBPluginDependency
+ 9037.IBPluginDependency
+ 9039.IBPluginDependency
+ 9039.IBViewBoundsToFrameTransform
+ 904.IBPluginDependency
+ 9040.IBPluginDependency
+ 9041.IBPluginDependency
+ 9041.IBViewBoundsToFrameTransform
+ 9042.IBPluginDependency
+ 9042.IBViewBoundsToFrameTransform
+ 9043.IBPluginDependency
+ 9043.IBViewBoundsToFrameTransform
+ 9044.IBPluginDependency
+ 9044.IBViewBoundsToFrameTransform
+ 9045.IBPluginDependency
+ 9045.IBViewBoundsToFrameTransform
+ 9046.IBPluginDependency
+ 9046.IBViewBoundsToFrameTransform
+ 9047.IBPluginDependency
+ 9047.IBViewBoundsToFrameTransform
+ 9049.IBPluginDependency
+ 9049.IBViewBoundsToFrameTransform
+ 905.IBPluginDependency
+ 9050.IBPluginDependency
+ 9050.IBViewBoundsToFrameTransform
+ 9051.IBPluginDependency
+ 9051.IBViewBoundsToFrameTransform
+ 9052.IBPluginDependency
+ 9053.IBPluginDependency
+ 9055.IBPluginDependency
+ 9057.IBPluginDependency
+ 9058.IBPluginDependency
+ 9059.IBPluginDependency
+ 906.IBPluginDependency
+ 9060.IBPluginDependency
+ 9061.IBPluginDependency
+ 9062.IBPluginDependency
+ 9063.IBPluginDependency
+ 907.IBPluginDependency
+ 9071.IBPluginDependency
+ 9071.IBViewBoundsToFrameTransform
+ 9072.IBPluginDependency
+ 9072.IBViewBoundsToFrameTransform
+ 9075.IBPluginDependency
+ 9075.IBViewBoundsToFrameTransform
+ 9076.IBPluginDependency
+ 908.IBPluginDependency
+ 9083.IBPluginDependency
+ 9084.IBPluginDependency
+ 9085.IBPluginDependency
+ 9086.IBPluginDependency
+ 9087.IBPluginDependency
+ 9087.IBViewBoundsToFrameTransform
+ 9088.IBPluginDependency
+ 9089.IBPluginDependency
+ 9089.IBViewBoundsToFrameTransform
+ 909.IBPluginDependency
+ 9090.IBPluginDependency
+ 9094.IBNumberFormatterBehaviorMetadataKey
+ 9094.IBNumberFormatterLocalizesFormatMetadataKey
+ 9094.IBPluginDependency
+ 9095.IBNumberFormatterBehaviorMetadataKey
+ 9095.IBNumberFormatterLocalizesFormatMetadataKey
+ 9095.IBPluginDependency
+ 910.IBPluginDependency
+ 9104.IBEditorWindowLastContentRect
+ 9104.IBPluginDependency
+ 9104.IBWindowTemplateEditedContentRect
+ 9104.NSWindowTemplate.visibleAtLaunch
+ 9105.IBPluginDependency
+ 9106.IBPluginDependency
+ 9106.IBViewBoundsToFrameTransform
+ 9107.IBPluginDependency
+ 9109.IBPluginDependency
+ 9109.IBViewBoundsToFrameTransform
+ 911.IBPluginDependency
+ 9110.IBPluginDependency
+ 9112.IBPluginDependency
+ 9112.IBViewBoundsToFrameTransform
+ 9113.IBPluginDependency
+ 9113.IBViewBoundsToFrameTransform
+ 9114.IBPluginDependency
+ 9115.IBPluginDependency
+ 912.IBPluginDependency
+ 9129.IBPluginDependency
+ 913.IBPluginDependency
+ 9131.IBPluginDependency
+ 9133.IBPluginDependency
+ 9135.IBPluginDependency
+ 9137.IBPluginDependency
+ 9138.IBPluginDependency
+ 9139.IBPluginDependency
+ 914.IBPluginDependency
+ 9140.IBPluginDependency
+ 9144.IBPluginDependency
+ 9146.IBPluginDependency
+ 9148.IBPluginDependency
+ 9150.IBPluginDependency
+ 9152.IBAttributePlaceholdersKey
+ 9152.IBPluginDependency
+ 9152.IBViewBoundsToFrameTransform
+ 9153.IBPluginDependency
+ 9156.IBAttributePlaceholdersKey
+ 9156.IBPluginDependency
+ 9156.IBViewBoundsToFrameTransform
+ 9157.IBPluginDependency
+ 9184.IBAttributePlaceholdersKey
+ 9184.IBPluginDependency
+ 9184.IBViewBoundsToFrameTransform
+ 9185.IBPluginDependency
+ 9185.IBViewBoundsToFrameTransform
+ 9186.IBPluginDependency
+ 9187.IBPluginDependency
+ 9188.IBEditorWindowLastContentRect
+ 9188.IBPluginDependency
+ 9195.IBPluginDependency
+ 92.IBPluginDependency
+ 9206.IBPluginDependency
+ 9208.IBPluginDependency
+ 9209.IBPluginDependency
+ 9210.IBPluginDependency
+ 9211.IBPluginDependency
+ 9236.IBPluginDependency
+ 9236.IBViewBoundsToFrameTransform
+ 9237.IBAttributePlaceholdersKey
+ 9237.IBPluginDependency
+ 9237.IBViewBoundsToFrameTransform
+ 9238.IBPluginDependency
+ 924.IBPluginDependency
+ 925.IBPluginDependency
+ 9257.IBAttributePlaceholdersKey
+ 9257.IBPluginDependency
+ 9257.IBViewBoundsToFrameTransform
+ 9258.IBPluginDependency
+ 9259.IBAttributePlaceholdersKey
+ 9259.IBPluginDependency
+ 926.IBPluginDependency
+ 9260.IBAttributePlaceholdersKey
+ 9260.IBPluginDependency
+ 9261.IBPluginDependency
+ 9262.IBPluginDependency
+ 9263.IBEditorWindowLastContentRect
+ 9263.IBPluginDependency
+ 9264.IBPluginDependency
+ 9265.IBPluginDependency
+ 9266.IBEditorWindowLastContentRect
+ 9266.IBPluginDependency
+ 9267.IBPluginDependency
+ 9269.IBPluginDependency
+ 927.IBPluginDependency
+ 9270.IBPluginDependency
+ 9271.IBPluginDependency
+ 9272.IBPluginDependency
+ 9273.IBPluginDependency
+ 9274.IBPluginDependency
+ 9276.IBAttributePlaceholdersKey
+ 9276.IBPluginDependency
+ 9276.IBViewBoundsToFrameTransform
+ 9277.IBPluginDependency
+ 9278.IBPluginDependency
+ 9278.IBViewBoundsToFrameTransform
+ 9279.IBPluginDependency
+ 9279.IBViewBoundsToFrameTransform
+ 928.IBPluginDependency
+ 9280.IBAttributePlaceholdersKey
+ 9280.IBPluginDependency
+ 9280.IBViewBoundsToFrameTransform
+ 9281.IBPluginDependency
+ 9282.IBPluginDependency
+ 9282.IBViewBoundsToFrameTransform
+ 9283.IBPluginDependency
+ 9284.IBPluginDependency
+ 9285.IBPluginDependency
+ 929.IBPluginDependency
+ 9290.IBPluginDependency
+ 9290.IBViewBoundsToFrameTransform
+ 9291.IBPluginDependency
+ 9292.IBPluginDependency
+ 9292.IBViewBoundsToFrameTransform
+ 9293.IBPluginDependency
+ 9294.IBEditorWindowLastContentRect
+ 9294.IBPluginDependency
+ 9295.IBPluginDependency
+ 9296.IBPluginDependency
+ 9297.IBPluginDependency
+ 9299.IBPluginDependency
+ 930.IBPluginDependency
+ 9300.IBPluginDependency
+ 9301.IBPluginDependency
+ 9302.IBPluginDependency
+ 931.IBPluginDependency
+ 932.IBPluginDependency
+ 933.IBPluginDependency
+ 934.IBPluginDependency
+ 935.IBPluginDependency
+ 936.IBPluginDependency
+ 937.IBPluginDependency
+ 938.IBPluginDependency
+ 9389.IBEditorWindowLastContentRect
+ 9389.IBPluginDependency
+ 9389.IBWindowTemplateEditedContentRect
+ 9389.NSWindowTemplate.visibleAtLaunch
+ 939.IBPluginDependency
+ 9390.IBPluginDependency
+ 9392.IBPluginDependency
+ 9392.IBViewBoundsToFrameTransform
+ 9393.IBPluginDependency
+ 9393.IBViewBoundsToFrameTransform
+ 9394.IBPluginDependency
+ 9394.IBViewBoundsToFrameTransform
+ 9395.IBPluginDependency
+ 9395.IBViewBoundsToFrameTransform
+ 9396.IBPluginDependency
+ 9396.IBViewBoundsToFrameTransform
+ 9397.IBPluginDependency
+ 9397.IBViewBoundsToFrameTransform
+ 940.IBPluginDependency
+ 9400.IBPluginDependency
+ 9401.IBPluginDependency
+ 9402.IBPluginDependency
+ 9403.IBPluginDependency
+ 9404.IBPluginDependency
+ 9405.IBNumberFormatterBehaviorMetadataKey
+ 9405.IBNumberFormatterLocalizesFormatMetadataKey
+ 9405.IBPluginDependency
+ 9406.IBPluginDependency
+ 9407.IBNumberFormatterBehaviorMetadataKey
+ 9407.IBNumberFormatterLocalizesFormatMetadataKey
+ 9407.IBPluginDependency
+ 9408.IBPluginDependency
+ 9409.IBPluginDependency
+ 941.IBPluginDependency
+ 942.IBPluginDependency
+ 9424.IBPluginDependency
+ 9424.IBViewBoundsToFrameTransform
+ 9425.IBPluginDependency
+ 943.IBPluginDependency
+ 944.IBPluginDependency
+ 945.IBPluginDependency
+ 946.IBPluginDependency
+ 947.IBPluginDependency
+ 948.IBPluginDependency
+ 949.IBPluginDependency
+ 950.IBPluginDependency
+ 951.IBPluginDependency
+ 952.IBPluginDependency
+ 9525.IBPluginDependency
+ 9525.IBViewBoundsToFrameTransform
+ 9526.IBPluginDependency
+ 953.IBPluginDependency
+ 954.IBPluginDependency
+ 955.IBPluginDependency
+ 956.IBPluginDependency
+ 957.IBPluginDependency
+ 958.IBPluginDependency
+ 959.IBPluginDependency
+ 960.IBPluginDependency
+ 961.IBPluginDependency
+ 962.IBPluginDependency
+ 963.IBPluginDependency
+ 9633.IBPluginDependency
+ 9633.IBViewBoundsToFrameTransform
+ 9634.IBPluginDependency
+ 9634.IBViewBoundsToFrameTransform
+ 9635.IBPluginDependency
+ 9636.IBPluginDependency
+ 9637.IBPluginDependency
+ 9638.IBPluginDependency
+ 9639.IBPluginDependency
+ 964.IBPluginDependency
+ 9640.IBPluginDependency
+ 9641.IBPluginDependency
+ 9642.IBPluginDependency
+ 9643.IBEditorWindowLastContentRect
+ 9643.IBPluginDependency
+ 9644.IBPluginDependency
+ 9645.IBPluginDependency
+ 9646.IBPluginDependency
+ 9647.IBPluginDependency
+ 9648.IBPluginDependency
+ 9649.IBPluginDependency
+ 965.IBPluginDependency
+ 9650.IBPluginDependency
+ 9651.IBPluginDependency
+ 9652.IBPluginDependency
+ 9653.IBPluginDependency
+ 9654.IBPluginDependency
+ 9655.IBPluginDependency
+ 9656.IBPluginDependency
+ 9657.IBPluginDependency
+ 9658.IBPluginDependency
+ 966.IBPluginDependency
+ 967.IBPluginDependency
+ 9677.IBPluginDependency
+ 9677.IBViewBoundsToFrameTransform
+ 968.IBPluginDependency
+ 969.IBPluginDependency
+ 970.IBPluginDependency
+ 971.IBPluginDependency
+ 977.IBPluginDependency
+ 978.IBPluginDependency
+ 979.IBPluginDependency
+ 980.IBPluginDependency
+
+
+ YES
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{807, 773}, {143, 23}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{629, 434}, {520, 422}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwmgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default size for new DS display views.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1014, 761}, {126, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default rotation for new DS display views.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{989, 796}, {126, 113}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDioAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDiIAAwhAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1061, 976}, {196, 93}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ The default rotation for new DS display views. A custom rotation angle may be entered here. (The angle must be between 0º and 360º.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{461, 155}, {489, 437}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ InitialTabViewItem
+
+ InitialTabViewItem
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBUAAAw9IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default pixel scaler for new DS display views, producing a variety of visual effects. CPU usage is dependent on which scaler is used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJwAAw5MAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{640, 111}, {151, 363}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCbAAAw6IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCbAAAw6+AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ Input
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ General
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ Display
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1227, 664}, {213, 198}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1227, 664}, {213, 198}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ Sound
+
+ {{419, 539}, {400, 373}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default sound volume.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1022, 901}, {132, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show both DS screens by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show only the DS touch screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the sound and eliminates the harsh sounding harmonics, but also causes a significant loss of sound detail, especially in the high-end. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Excellent sound quality, producing the best balance between smoothness and sound detail. Neglible CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{578, 247}, {554, 373}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ Emulation
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Greatly increases emulation accuracy, which improves the compatibility for most ROMs. This setting has a very high impact on overall emulation performance. Disabling this setting may dramatically improve performance, but may also cause some ROMs to stop working and cause other ROMs to show erratic behavior.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes more features available to the emulated hardware, but may affect ROM compatibility. May incur CPU usage, depending on which BIOS options are used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the BIOS to use the ARM processor SWI routines. This is required for some ROMs to work properly. May CPU usage, depending on if the ROM uses the ARM SWIs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Prevents the Delay SWI from running. This may reduce the SWI-related CPU usage for some ROMs, but may also affect ROM compatibility.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses an external firmware image, overriding the internally emulated firmware. To change your firmware settings, you must do so through the emulated environment.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1164, 492}, {160, 293}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{990, 763}, {194, 73}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no sound interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the advanced SPU emulation engine, which improves the accuracy of the emulated sound. This option provides a richer audio experience. Medium CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{571, 529}, {204, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Lowest latency and lowest CPU usage sound synchronization method that is compatible with the advanced SPU emulation engine. However, this method causes sound distortion as emulation speed decreases below normal, and causes sound detail loss as emulation speed increases above normal. Very low latency. Very low CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pitch bends the sound depending on the emulation speed. Provides extremely smooth sound, but only when emulation speed is faster than normal. Medium latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Provides smooth sound at all emulation speeds, but with some added latency. High latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Has the lowest latency of all the sound synchronization methods, but is not compatible with the advanced SPU emulation engine. Neglible latency. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the use of more complex sound synchronization methods.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Upon emulator execution, starts the firmware instead of the ROM. This will allow you access to some of the emulated hardware features. To boot from firmware, an external firmware image and both BIOS images must be loaded.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{888, 368}, {700, 399}}
+
+
+ {700, 250}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1156, 396}, {380, 200}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{744, 820}, {512, 20}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{995, 772}, {307, 363}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDNgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{439, 683}, {151, 153}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1241, 208}, {335, 163}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 141}, {640, 480}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 141}, {640, 480}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAw7kAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{33, 628}, {288, 511}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{33, 628}, {288, 511}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the advanced SPU emulation engine, which improves the accuracy of the emulated sound. This option provides a richer audio experience. Medium CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the sound and eliminates the harsh sounding harmonics, but also causes a significant loss of sound detail, especially in the high-end. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Has the lowest latency of all the sound synchronization methods, but is not compatible with the advanced SPU emulation engine. Neglible latency. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the use of more complex sound synchronization methods.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Excellent sound quality, producing the best balance between smoothness and sound detail. Neglible CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the current sound volume.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render textures onto 3D surfaces. When not set, all 3D surfaces will be solid colored (usually white). May slightly reduce CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAweAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOQAAwgAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwywAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABCsAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDhzSAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{503, 395}, {301, 467}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{503, 395}, {301, 467}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAwgwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUKAAABC5gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwfAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVwAAwgQAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwsQAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwpwAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwmgAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render textures onto 3D surfaces. When not set, all 3D surfaces will be solid colored (usually white). May slightly reduce CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAweAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwowAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Disables 3D rendering. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME's internal software 3D rendering engine. Has the best 3D emulation accuracy. Very high CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default 3D rendering engine for new DS display views.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDTwAAw7MAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables 3D rendering. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME's internal software 3D rendering engine. Has the best 3D emulation accuracy. Very high CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCFAAAw7GAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABD8AAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwu4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default number of processing threads that DeSmuME will use for 3D rendering. This is an option for advanced users. For most cases, it's best to keep this set to Automatic.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLQAAwnAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{797, 414}, {166, 143}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME automatically chooses the best number of rendering threads based on your hardware.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on the same thread as the core emulation thread by default. Best performance option for single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on two separate threads by default. May improve 3D performance on multiprocessor machines, but slightly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on four separate threads by default. May improve 3D performance on multiprocessor machines, but significantly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwmQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUKAAABDjYAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwpoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1081, 1073}, {132, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Lowest latency and lowest CPU usage sound synchronization method that is compatible with the advanced SPU emulation engine. However, this method causes sound distortion as emulation speed decreases below normal, and causes sound detail loss as emulation speed increases above normal. Very low latency. Very low CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pitch bends the sound depending on the emulation speed. Provides extremely smooth sound, but only when emulation speed is faster than normal. Medium latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Provides smooth sound at all emulation speeds, but with some added latency. High latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default audio output engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1055, 1057}, {220, 43}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables audio output. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Native audio output engine for Mac OS X. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables audio output. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Native audio output engine for Mac OS X. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 285}, {286, 522}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 285}, {286, 522}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Greatly increases emulation accuracy, which improves the compatibility for most ROMs. This setting has a very high impact on overall emulation performance. Disabling this setting may dramatically improve performance, but may also cause some ROMs to stop working and cause other ROMs to show erratic behavior.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes more features available to the emulated hardware, but may affect ROM compatibility. May incur CPU usage, depending on which BIOS options are used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the BIOS to use the ARM processor SWI routines. This is required for some ROMs to work properly. May incur CPU usage, depending on if the ROM uses the ARM SWIs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Prevents the Delay SWI from running. This may reduce the SWI-related CPU usage for some ROMs, but may also affect ROM compatibility.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses an external firmware image, overriding the internally emulated firmware. To change your firmware settings, you must do so through the emulated environment.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Upon emulator execution, starts the firmware instead of the ROM. This will allow you access to some of the emulated hardware features. To boot from firmware, an external firmware image and both BIOS images must be loaded.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 299}, {260, 328}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMAAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Nicknames should be a maximum of 10 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Messages should be a maximum of 26 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{126, 670}, {305, 315}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{126, 670}, {305, 315}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Nicknames should be a maximum of 10 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Messages should be a maximum of 26 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCmAAAw9QAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{63, 775}, {320, 290}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ All addresses start with 0x02. Enter the last 6 digits of the address here in hexadecimal format.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enter the numeric value to write to the target address.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Select the memory size of the target address in bytes.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Shows/hides the address search drawer.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Resets the memory address search.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Searches the DS memory for all addresses that currently carry the search value.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Searches the DS memory for any addresses which match the comparative search criteria.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1061, 723}, {261, 113}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{831, 704}, {198, 37}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABC6gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Immediately writes the value once to the target address.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{0, 729}, {500, 416}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{0, 729}, {500, 416}}
+
+
+ {500, 272}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABBgAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Whenever DeSmuME needs to determine a ROM's save type, use the ADVANsCEne database to determine the save type before using the internal autodetect algorithm.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{756, 530}, {64, 6}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{756, 510}, {64, 6}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show only the main DS screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 269}, {550, 450}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 269}, {550, 450}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ InitialTabViewItem
+
+ InitialTabViewItem
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{622, 653}, {203, 183}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{865, 762}, {253, 373}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{934, 753}, {224, 83}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the classic interpreter engine to emulate the ARM7 and ARM9 CPUs by default. It features very high compatibility with most configurations, as well as high accuracy with most ROMs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the dynarec engine to emulate the ARM7 and ARM9 CPUs by default. It features far superior performance to the interpreter engine, but is not compatible with all configurations. Also, some ROMs may not work or may show erratic behavior when using this engine. (This feature is not available on a PowerPC-based Mac.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses the classic interpreter engine to emulate the ARM7 and ARM9 CPUs. It features very high compatibility with most configurations, as well as high accuracy with most ROMs. [Changes to the CPU emulation engine will only take effect after a ROM is loaded or after the emulator is reset.]
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses the dynarec engine to emulate the ARM7 and ARM9 CPUs. It features far superior performance to the interpreter engine, but is not compatible with all configurations. Also, some ROMs may not work or may show erratic behavior when using this engine. (This feature is not available on a PowerPC-based Mac.) [Changes to the CPU emulation engine will only take effect after a ROM is loaded or after the emulator is reset.]
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enable to use vertical sync on the video output. This setting eliminates screen tearing, but may also reduce the video frame rate.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAxC9AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enable to use vertical sync on the video output by default. This setting eliminates screen tearing, but may also reduce the video frame rate.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAw8QAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1081, 1033}, {123, 43}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1081, 1013}, {178, 43}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ If the display orientation is vertical, the main screen will be arranged above the touch screen by default. If the display layout is horizontal, the main screen will be arranged left of the touch screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ If the display orientation is vertical, the touch screen will be arranged above the main screen by default. If the display layout is horizontal, the touch screen will be arranged left of the main screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Arranges the DS screens where one screen is to the left of the other screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Arranges the DS screens where one screen is above the other screen by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ OpenGL-based 3D rendering engine. Some 3D objects may have better looking texturing, but 3D emulation is less accurate overall. Low CPU usage. However, it requires the usage of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ OpenGL-based 3D rendering engine. Some 3D objects may have better looking texturing, but 3D emulation is less accurate overall. Low CPU usage. However, it requires the usage of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{711, 700}, {400, 100}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{711, 700}, {400, 100}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{603, 800}, {616, 0}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{962, 321}, {580, 592}}
+
+
+
+ {580, 592}
+ {580, 592}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{331, 164}, {580, 567}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDNwAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the edges of 3D objects using multisample antialiasing (MSAA). No CPU usage. However, it requires additional VRAM from your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUPAgABCKAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the edges of 3D objects using multisample antialiasing (MSAA) by default. No CPU usage. However, it requires additional VRAM from your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes emulation timing more accurate, but may reduce ROM compatibility. Enabling this setting may improve 3D rendering performance.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes emulation timing more accurate, but may reduce ROM compatibility. Enabling this setting may improve 3D rendering performance.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on eight separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{487, 361}, {640, 495}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{709, 350}, {328, 434}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{784, 552}, {350, 263}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{784, 552}, {350, 263}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{84, 906}, {350, 125}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{84, 906}, {350, 125}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{310, 589}, {620, 267}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{310, 589}, {620, 267}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{789, 354}, {516, 283}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{789, 354}, {516, 283}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Predefined noise samples that simulate sounds like speaking into the microphone. (Some games, such as "The Legend of Zelda: Spirit Tracks," work especially well with this.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Randomly generated white noise that simulates sounds like blowing into the microphone.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Generated pure sine wave tone. Can be adjusted for frequency.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Predefined samples loaded from an audio file. (Whenever the Microphone command is deactivated, sample reading will be reset to the beginning of the file.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{105, 883}, {350, 125}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{105, 883}, {350, 125}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABCYAAAA
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD/wAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDcAAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw0IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDzwAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEAAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw3UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw4KAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{21, 940}, {467, 160}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{21, 940}, {467, 160}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{996, 161}, {620, 442}}
+
+
+ {620, 180}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Saves the current configuration to the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Deletes the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Replaces the current configuration with the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renames the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Shows the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{925, 1037}, {265, 33}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Creates a new profile using the current configuration.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ InputProfileController
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{147, 847}, {452, 115}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{147, 847}, {452, 115}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1081, 903}, {118, 133}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ The default separation for new DS display views. A custom gap percentage may be entered here. (The gap percentage must be between 0% and 200%.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default screen separation for new DS display views. (A value of 100% will create a gap between the screens that has the same relative distance as a hardware DS.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{585, 535}, {441, 133}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{585, 535}, {441, 133}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1081, 933}, {136, 163}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the screen separation to 0%, which removes any gap between the screens.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the screen separation to 100%, which creates a gap between the screens that has the same relative distance as a hardware DS.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{246, 388}, {640, 303}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{246, 388}, {640, 303}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwzYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Standard Retail Memory Card + ROM
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADCtgAAwmgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Choose a directory where the R4 device stores its data.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD+AAAwhgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sends a SLOT-1 eject IRQ. The emulator will then detect that no device is inserted into SLOT-1.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwngAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Resets the emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCRAAAwogAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwvQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUHwAABC6AAAA
+
+ {{1081, 1013}, {70, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwlgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 530}, {194, 241}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{343, 530}, {194, 241}}
+
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1236, 149}, {204, 713}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1236, 149}, {204, 713}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGQAABBgAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCSAAAwjAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwjAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{728, 569}, {223, 223}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOPgABDo4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGgAABDzQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABClgAAw+UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABB6AAAw+CAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Changes the maximum instruction block size for the dynamic recompiler. Larger values improve performance, but may reduce emulation accuracy. (The block size must be between 1 and 100.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Changes the default maximum instruction block size for the dynamic recompiler. Larger values improve performance, but may reduce emulation accuracy. (The block size must be between 1 and 100.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{780, 672}, {322, 463}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 478}, {173, 339}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 478}, {173, 339}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUNnAABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOKAABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1385, 603}, {132, 363}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBqAAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwgQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When checked, the ROM data is only loaded as needed. When unchecked, all of the ROM data is completely preloaded into RAM before use.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwpwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{509, 91}, {640, 448}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{509, 91}, {640, 448}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAw9UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUNXAABCzAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUBAAABAgAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Applies the selected SLOT-2 device's settings.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABEBIAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwlgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABBgAAAA
+
+ {{895, 623}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwgwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{876, 169}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwvAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{882, 323}, {366, 123}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{552, 661}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{882, 704}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{895, 262}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw5UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAw4iAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDjwAAw3cAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUONAABDPwAAA
+
+ {{1090, 687}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{911, 632}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwycAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1193, 722}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAwxYAAA
+
+ {{1184, 327}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{910, 193}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMRAABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUJwAABClgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwsgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAw3YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw4MAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{917, 616}, {400, 320}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwy4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AcIwAABDLAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCsgAAw4YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDjYAAwz8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUFAAABC1gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCsgAAw5UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwsYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOwAAwsYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGgAABCzAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{672, 478}, {350, 240}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{672, 478}, {350, 240}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwzsAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFSEAwfgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{326, 250}, {580, 588}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{326, 250}, {580, 588}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMuAABBMAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABCvgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDcAAAwqIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEAAAwqIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUJMAABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC+gAAwywAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC+AAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw18AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwsYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwsYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCngAAw1AAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCpAAAwzcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDrgAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDHgAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCqgAAw00AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw0gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDg4AAwqYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDIQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw28AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw0gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADCSAAAwq4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCZAAAwiwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUKQAABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{307, 552}, {254, 262}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{307, 552}, {254, 262}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Execute
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAAAAAAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Frame Advance
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABB+AAAwqgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Reset
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDYgAAw6YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Frame Jump
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC+AAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pause
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAAAAAAAwqgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDQgAAw5KAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwowAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDQgAAw4iAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCFAAAwkQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABB4AAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXwAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABChgAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC1AAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOQAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwrAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwrAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKQAAwqYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUFgAABDRAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUFgAABCsAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCdAAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwgAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCbAAAwYAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{820, 748}, {300, 108}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{820, 748}, {300, 108}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw3gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwggAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDwAAwr4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCPAAAwr4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, fragment colors will be sampled using an alternate algorithm. This may fix certain graphical glitches, such as the text in some Atlus games like Etrian Odyssey III.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBqAAAwpAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, fragment colors will be sampled using an alternate algorithm. This may fix certain graphical glitches, such as the text in some Atlus games like Etrian Odyssey III.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAwuLSAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default output filter for new DS display views. No CPU usage. The use of any output filter (other than Nearest Neighbor and Bilinear) requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJwAAw6CAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCbAAAw70AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{644, 315}, {235, 123}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUDAAABChAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the video. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by certain filters. No CPU usage, but requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, filters will prefer to run on the GPU if possible. Otherwise, filters will prefer to run on the CPU if possible.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKAAAw68AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on 16 separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on 32 separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1385, 983}, {134, 23}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1385, 863}, {235, 123}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, filters will prefer to run on the GPU if possible. Otherwise, filters will prefer to run on the CPU if possible.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAxDYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABEIwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABD9QAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the video. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by certain filters. No CPU usage, but requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAw1UAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwWAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwxcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{636, 598}, {138, 122}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{848, 607}, {290, 119}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{848, 607}, {290, 119}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDPgAAwpgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDPgAAwsoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEwAAwpIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEwAAwsQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwpYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwsgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCrgAAwhwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOPgABC9gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOPgABDUQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{951, 299}, {160, 293}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMhAABDBAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ YES
+
+
+ YES
+
+
+
+
+ YES
+
+
+ YES
+
+
+
+ 9704
+
+
+
+ YES
+
+ AppDelegate
+ NSObject
+
+ YES
+
+ YES
+ bugReport:
+ launchForums:
+ launchWebsite:
+ supportRequest:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ bugReport:
+ launchForums:
+ launchWebsite:
+ supportRequest:
+
+
+ YES
+
+ bugReport:
+ id
+
+
+ launchForums:
+ id
+
+
+ launchWebsite:
+ id
+
+
+ supportRequest:
+ id
+
+
+
+
+ YES
+
+ YES
+ aboutWindowController
+ boxARMBinaries
+ boxFileSystem
+ boxGeneralInfo
+ boxMisc
+ boxTitles
+ cdsCoreController
+ cdsSoundController
+ cheatListWindow
+ cheatWindowController
+ emuControlController
+ inputDeviceListController
+ inputManager
+ inputPrefsView
+ mLoadStateSlot
+ mSaveStateSlot
+ migrationDelegate
+ prefGeneralView
+ prefWindow
+ prefWindowController
+ romInfoPanelController
+ slot2Window
+ troubleshootingWindow
+
+
+ YES
+ NSObjectController
+ NSBox
+ NSBox
+ NSBox
+ NSBox
+ NSBox
+ NSObjectController
+ NSObjectController
+ NSWindow
+ NSObjectController
+ NSObjectController
+ NSArrayController
+ InputManager
+ InputPrefsView
+ NSMenu
+ NSMenu
+ FileMigrationDelegate
+ NSView
+ NSWindow
+ NSObjectController
+ NSObjectController
+ NSWindow
+ NSWindow
+
+
+
+ YES
+
+ YES
+ aboutWindowController
+ boxARMBinaries
+ boxFileSystem
+ boxGeneralInfo
+ boxMisc
+ boxTitles
+ cdsCoreController
+ cdsSoundController
+ cheatListWindow
+ cheatWindowController
+ emuControlController
+ inputDeviceListController
+ inputManager
+ inputPrefsView
+ mLoadStateSlot
+ mSaveStateSlot
+ migrationDelegate
+ prefGeneralView
+ prefWindow
+ prefWindowController
+ romInfoPanelController
+ slot2Window
+ troubleshootingWindow
+
+
+ YES
+
+ aboutWindowController
+ NSObjectController
+
+
+ boxARMBinaries
+ NSBox
+
+
+ boxFileSystem
+ NSBox
+
+
+ boxGeneralInfo
+ NSBox
+
+
+ boxMisc
+ NSBox
+
+
+ boxTitles
+ NSBox
+
+
+ cdsCoreController
+ NSObjectController
+
+
+ cdsSoundController
+ NSObjectController
+
+
+ cheatListWindow
+ NSWindow
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ emuControlController
+ NSObjectController
+
+
+ inputDeviceListController
+ NSArrayController
+
+
+ inputManager
+ InputManager
+
+
+ inputPrefsView
+ InputPrefsView
+
+
+ mLoadStateSlot
+ NSMenu
+
+
+ mSaveStateSlot
+ NSMenu
+
+
+ migrationDelegate
+ FileMigrationDelegate
+
+
+ prefGeneralView
+ NSView
+
+
+ prefWindow
+ NSWindow
+
+
+ prefWindowController
+ NSObjectController
+
+
+ romInfoPanelController
+ NSObjectController
+
+
+ slot2Window
+ NSWindow
+
+
+ troubleshootingWindow
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/appDelegate.h
+
+
+
+ CheatWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ addToList:
+ applyConfiguration:
+ closeCheatDatabaseSheet:
+ removeFromList:
+ resetSearch:
+ runComparativeSearch:
+ runExactValueSearch:
+ selectAllCheatsInDatabase:
+ selectCheatSearchStyle:
+ selectCheatType:
+ selectNoneCheatsInDatabase:
+ setInternalCheatValue:
+ viewDatabase:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ addToList:
+ applyConfiguration:
+ closeCheatDatabaseSheet:
+ removeFromList:
+ resetSearch:
+ runComparativeSearch:
+ runExactValueSearch:
+ selectAllCheatsInDatabase:
+ selectCheatSearchStyle:
+ selectCheatType:
+ selectNoneCheatsInDatabase:
+ setInternalCheatValue:
+ viewDatabase:
+
+
+ YES
+
+ addToList:
+ id
+
+
+ applyConfiguration:
+ id
+
+
+ closeCheatDatabaseSheet:
+ id
+
+
+ removeFromList:
+ id
+
+
+ resetSearch:
+ id
+
+
+ runComparativeSearch:
+ id
+
+
+ runExactValueSearch:
+ id
+
+
+ selectAllCheatsInDatabase:
+ id
+
+
+ selectCheatSearchStyle:
+ id
+
+
+ selectCheatType:
+ id
+
+
+ selectNoneCheatsInDatabase:
+ id
+
+
+ setInternalCheatValue:
+ id
+
+
+ viewDatabase:
+ id
+
+
+
+
+ YES
+
+ YES
+ cheatConfigBox
+ cheatDatabaseController
+ cheatDatabaseSheet
+ cheatListController
+ cheatListTable
+ cheatSearchListController
+ cheatSearchListTable
+ cheatSearchView
+ cheatSelectedItemController
+ cheatWindowController
+ searchField
+ viewConfigureActionReplayCheat
+ viewConfigureCodeBreakerCheat
+ viewConfigureInternalCheat
+ viewConfigureNoSelection
+ viewSearchComparativeContinue
+ viewSearchComparativeStart
+ viewSearchExactValue
+ viewSearchNoSelection
+ window
+
+
+ YES
+ NSBox
+ NSArrayController
+ NSWindow
+ NSArrayController
+ NSTableView
+ NSArrayController
+ NSTableView
+ NSView
+ NSObjectController
+ NSObjectController
+ NSSearchField
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cheatConfigBox
+ cheatDatabaseController
+ cheatDatabaseSheet
+ cheatListController
+ cheatListTable
+ cheatSearchListController
+ cheatSearchListTable
+ cheatSearchView
+ cheatSelectedItemController
+ cheatWindowController
+ searchField
+ viewConfigureActionReplayCheat
+ viewConfigureCodeBreakerCheat
+ viewConfigureInternalCheat
+ viewConfigureNoSelection
+ viewSearchComparativeContinue
+ viewSearchComparativeStart
+ viewSearchExactValue
+ viewSearchNoSelection
+ window
+
+
+ YES
+
+ cheatConfigBox
+ NSBox
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatDatabaseSheet
+ NSWindow
+
+
+ cheatListController
+ NSArrayController
+
+
+ cheatListTable
+ NSTableView
+
+
+ cheatSearchListController
+ NSArrayController
+
+
+ cheatSearchListTable
+ NSTableView
+
+
+ cheatSearchView
+ NSView
+
+
+ cheatSelectedItemController
+ NSObjectController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ searchField
+ NSSearchField
+
+
+ viewConfigureActionReplayCheat
+ NSView
+
+
+ viewConfigureCodeBreakerCheat
+ NSView
+
+
+ viewConfigureInternalCheat
+ NSView
+
+
+ viewConfigureNoSelection
+ NSView
+
+
+ viewSearchComparativeContinue
+ NSView
+
+
+ viewSearchComparativeStart
+ NSView
+
+
+ viewSearchExactValue
+ NSView
+
+
+ viewSearchNoSelection
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/cheatWindowDelegate.h
+
+
+
+ DisplayPreviewView
+ NSView
+
+ IBProjectSource
+ userinterface/preferencesWindowDelegate.h
+
+
+
+ DisplayView
+ NSView
+
+ IBProjectSource
+ userinterface/DisplayWindowController.h
+
+
+
+ DisplayWindowController
+ NSWindowController
+
+ YES
+
+ YES
+ changeCoreSpeed:
+ changeDisplayGap:
+ changeDisplayMode:
+ changeDisplayOrder:
+ changeDisplayOrientation:
+ changeRotation:
+ changeRotationRelative:
+ changeScale:
+ changeVideoOutputFilter:
+ changeVideoPixelScaler:
+ changeVolume:
+ copy:
+ openRom:
+ reset:
+ saveScreenshotAs:
+ toggleExecutePause:
+ toggleFullScreenDisplay:
+ toggleKeepMinDisplaySizeAtNormal:
+ toggleStatusBar:
+ toggleVideoSourceDeposterize:
+ writeDefaultsDisplayGap:
+ writeDefaultsDisplayRotation:
+ writeDefaultsDisplayVideoSettings:
+ writeDefaultsHUDSettings:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ changeCoreSpeed:
+ changeDisplayGap:
+ changeDisplayMode:
+ changeDisplayOrder:
+ changeDisplayOrientation:
+ changeRotation:
+ changeRotationRelative:
+ changeScale:
+ changeVideoOutputFilter:
+ changeVideoPixelScaler:
+ changeVolume:
+ copy:
+ openRom:
+ reset:
+ saveScreenshotAs:
+ toggleExecutePause:
+ toggleFullScreenDisplay:
+ toggleKeepMinDisplaySizeAtNormal:
+ toggleStatusBar:
+ toggleVideoSourceDeposterize:
+ writeDefaultsDisplayGap:
+ writeDefaultsDisplayRotation:
+ writeDefaultsDisplayVideoSettings:
+ writeDefaultsHUDSettings:
+
+
+ YES
+
+ changeCoreSpeed:
+ id
+
+
+ changeDisplayGap:
+ id
+
+
+ changeDisplayMode:
+ id
+
+
+ changeDisplayOrder:
+ id
+
+
+ changeDisplayOrientation:
+ id
+
+
+ changeRotation:
+ id
+
+
+ changeRotationRelative:
+ id
+
+
+ changeScale:
+ id
+
+
+ changeVideoOutputFilter:
+ id
+
+
+ changeVideoPixelScaler:
+ id
+
+
+ changeVolume:
+ id
+
+
+ copy:
+ id
+
+
+ openRom:
+ id
+
+
+ reset:
+ id
+
+
+ saveScreenshotAs:
+ id
+
+
+ toggleExecutePause:
+ id
+
+
+ toggleFullScreenDisplay:
+ id
+
+
+ toggleKeepMinDisplaySizeAtNormal:
+ id
+
+
+ toggleStatusBar:
+ id
+
+
+ toggleVideoSourceDeposterize:
+ id
+
+
+ writeDefaultsDisplayGap:
+ id
+
+
+ writeDefaultsDisplayRotation:
+ id
+
+
+ writeDefaultsDisplayVideoSettings:
+ id
+
+
+ writeDefaultsHUDSettings:
+ id
+
+
+
+
+ YES
+
+ YES
+ saveScreenshotPanelAccessoryView
+ view
+
+
+ YES
+ NSView
+ DisplayView
+
+
+
+ YES
+
+ YES
+ saveScreenshotPanelAccessoryView
+ view
+
+
+ YES
+
+ saveScreenshotPanelAccessoryView
+ NSView
+
+
+ view
+ DisplayView
+
+
+
+
+
+
+ EmuControllerDelegate
+ NSObject
+
+ YES
+
+ YES
+ autoholdSet:
+ changeAudioEngine:
+ changeCoreEmuFlags:
+ changeCoreSpeed:
+ changeFirmwareSettings:
+ changeRomSaveType:
+ changeSpuAdvancedLogic:
+ changeSpuInterpolationMode:
+ changeSpuSyncMethod:
+ changeSpuSyncMode:
+ changeVolume:
+ chooseSlot1R4Directory:
+ closeRom:
+ closeSheet:
+ coreExecute:
+ corePause:
+ exportRomSave:
+ frameAdvance:
+ frameJump:
+ importRomSave:
+ loadEmuSaveStateSlot:
+ loadRecentRom:
+ newDisplayWindow:
+ openEmuSaveState:
+ openReplay:
+ openRom:
+ recordReplay:
+ reset:
+ revealGameDataFolderInFinder:
+ revealRomInFinder:
+ revertEmuSaveState:
+ saveEmuSaveState:
+ saveEmuSaveStateAs:
+ saveEmuSaveStateSlot:
+ slot1Eject:
+ stopReplay:
+ toggleAllDisplays:
+ toggleAutoFrameSkip:
+ toggleCheats:
+ toggleExecutePause:
+ toggleGDBStubActivate:
+ toggleGPUState:
+ toggleSpeedLimiter:
+ writeDefaults3DRenderingSettings:
+ writeDefaultsEmulationSettings:
+ writeDefaultsSlot1Settings:
+ writeDefaultsSoundSettings:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ autoholdSet:
+ changeAudioEngine:
+ changeCoreEmuFlags:
+ changeCoreSpeed:
+ changeFirmwareSettings:
+ changeRomSaveType:
+ changeSpuAdvancedLogic:
+ changeSpuInterpolationMode:
+ changeSpuSyncMethod:
+ changeSpuSyncMode:
+ changeVolume:
+ chooseSlot1R4Directory:
+ closeRom:
+ closeSheet:
+ coreExecute:
+ corePause:
+ exportRomSave:
+ frameAdvance:
+ frameJump:
+ importRomSave:
+ loadEmuSaveStateSlot:
+ loadRecentRom:
+ newDisplayWindow:
+ openEmuSaveState:
+ openReplay:
+ openRom:
+ recordReplay:
+ reset:
+ revealGameDataFolderInFinder:
+ revealRomInFinder:
+ revertEmuSaveState:
+ saveEmuSaveState:
+ saveEmuSaveStateAs:
+ saveEmuSaveStateSlot:
+ slot1Eject:
+ stopReplay:
+ toggleAllDisplays:
+ toggleAutoFrameSkip:
+ toggleCheats:
+ toggleExecutePause:
+ toggleGDBStubActivate:
+ toggleGPUState:
+ toggleSpeedLimiter:
+ writeDefaults3DRenderingSettings:
+ writeDefaultsEmulationSettings:
+ writeDefaultsSlot1Settings:
+ writeDefaultsSoundSettings:
+
+
+ YES
+
+ autoholdSet:
+ id
+
+
+ changeAudioEngine:
+ id
+
+
+ changeCoreEmuFlags:
+ id
+
+
+ changeCoreSpeed:
+ id
+
+
+ changeFirmwareSettings:
+ id
+
+
+ changeRomSaveType:
+ id
+
+
+ changeSpuAdvancedLogic:
+ id
+
+
+ changeSpuInterpolationMode:
+ id
+
+
+ changeSpuSyncMethod:
+ id
+
+
+ changeSpuSyncMode:
+ id
+
+
+ changeVolume:
+ id
+
+
+ chooseSlot1R4Directory:
+ id
+
+
+ closeRom:
+ id
+
+
+ closeSheet:
+ id
+
+
+ coreExecute:
+ id
+
+
+ corePause:
+ id
+
+
+ exportRomSave:
+ id
+
+
+ frameAdvance:
+ id
+
+
+ frameJump:
+ id
+
+
+ importRomSave:
+ id
+
+
+ loadEmuSaveStateSlot:
+ id
+
+
+ loadRecentRom:
+ id
+
+
+ newDisplayWindow:
+ id
+
+
+ openEmuSaveState:
+ id
+
+
+ openReplay:
+ id
+
+
+ openRom:
+ id
+
+
+ recordReplay:
+ id
+
+
+ reset:
+ id
+
+
+ revealGameDataFolderInFinder:
+ id
+
+
+ revealRomInFinder:
+ id
+
+
+ revertEmuSaveState:
+ id
+
+
+ saveEmuSaveState:
+ id
+
+
+ saveEmuSaveStateAs:
+ id
+
+
+ saveEmuSaveStateSlot:
+ id
+
+
+ slot1Eject:
+ id
+
+
+ stopReplay:
+ id
+
+
+ toggleAllDisplays:
+ id
+
+
+ toggleAutoFrameSkip:
+ id
+
+
+ toggleCheats:
+ id
+
+
+ toggleExecutePause:
+ id
+
+
+ toggleGDBStubActivate:
+ id
+
+
+ toggleGPUState:
+ id
+
+
+ toggleSpeedLimiter:
+ id
+
+
+ writeDefaults3DRenderingSettings:
+ id
+
+
+ writeDefaultsEmulationSettings:
+ id
+
+
+ writeDefaultsSlot1Settings:
+ id
+
+
+ writeDefaultsSoundSettings:
+ id
+
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cdsSoundController
+ cheatDatabaseController
+ cheatListController
+ cheatWindowController
+ cheatWindowDelegate
+ executionControlWindow
+ exportRomSavePanelAccessoryView
+ firmwarePanelController
+ inputManager
+ romInfoPanelController
+ saveFileMigrationSheet
+ saveStatePrecloseSheet
+ slot1ManagerWindow
+ slot2WindowController
+
+
+ YES
+ NSObjectController
+ NSObjectController
+ NSArrayController
+ NSArrayController
+ NSObjectController
+ CheatWindowDelegate
+ NSWindow
+ NSView
+ NSObjectController
+ InputManager
+ NSObjectController
+ NSWindow
+ NSWindow
+ NSWindow
+ NSObjectController
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cdsSoundController
+ cheatDatabaseController
+ cheatListController
+ cheatWindowController
+ cheatWindowDelegate
+ executionControlWindow
+ exportRomSavePanelAccessoryView
+ firmwarePanelController
+ inputManager
+ romInfoPanelController
+ saveFileMigrationSheet
+ saveStatePrecloseSheet
+ slot1ManagerWindow
+ slot2WindowController
+
+
+ YES
+
+ cdsCoreController
+ NSObjectController
+
+
+ cdsSoundController
+ NSObjectController
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatListController
+ NSArrayController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ cheatWindowDelegate
+ CheatWindowDelegate
+
+
+ executionControlWindow
+ NSWindow
+
+
+ exportRomSavePanelAccessoryView
+ NSView
+
+
+ firmwarePanelController
+ NSObjectController
+
+
+ inputManager
+ InputManager
+
+
+ romInfoPanelController
+ NSObjectController
+
+
+ saveFileMigrationSheet
+ NSWindow
+
+
+ saveStatePrecloseSheet
+ NSWindow
+
+
+ slot1ManagerWindow
+ NSWindow
+
+
+ slot2WindowController
+ NSObjectController
+
+
+
+
+ IBProjectSource
+ userinterface/EmuControllerDelegate.h
+
+
+
+ FileMigrationDelegate
+ NSObject
+
+ YES
+
+ YES
+ handleChoice:
+ selectAll:
+ selectNone:
+ updateAndShowWindow:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ handleChoice:
+ selectAll:
+ selectNone:
+ updateAndShowWindow:
+
+
+ YES
+
+ handleChoice:
+ id
+
+
+ selectAll:
+ id
+
+
+ selectNone:
+ id
+
+
+ updateAndShowWindow:
+ id
+
+
+
+
+ YES
+
+ YES
+ fileListController
+ window
+
+
+ YES
+ NSArrayController
+ NSWindow
+
+
+
+ YES
+
+ YES
+ fileListController
+ window
+
+
+ YES
+
+ fileListController
+ NSArrayController
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/FileMigrationDelegate.h
+
+
+
+ InputManager
+ NSObject
+
+ YES
+
+ YES
+ emuControl
+ hidInputTarget
+
+
+ YES
+ EmuControllerDelegate
+ id
+
+
+
+ YES
+
+ YES
+ emuControl
+ hidInputTarget
+
+
+ YES
+
+ emuControl
+ EmuControllerDelegate
+
+
+ hidInputTarget
+ id
+
+
+
+
+ IBProjectSource
+ userinterface/InputManager.h
+
+
+
+ InputPrefsView
+ NSView
+
+ YES
+
+ YES
+ audioFileChoose:
+ audioFileChooseNone:
+ changeSpeed:
+ closeProfileRenameSheet:
+ closeProfileSheet:
+ closeSettingsSheet:
+ profileApply:
+ profileDelete:
+ profileNew:
+ profileRename:
+ profileSave:
+ profileSelect:
+ profileView:
+ removeInput:
+ setInputAdd:
+ showSettingsSheet:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ audioFileChoose:
+ audioFileChooseNone:
+ changeSpeed:
+ closeProfileRenameSheet:
+ closeProfileSheet:
+ closeSettingsSheet:
+ profileApply:
+ profileDelete:
+ profileNew:
+ profileRename:
+ profileSave:
+ profileSelect:
+ profileView:
+ removeInput:
+ setInputAdd:
+ showSettingsSheet:
+
+
+ YES
+
+ audioFileChoose:
+ id
+
+
+ audioFileChooseNone:
+ id
+
+
+ changeSpeed:
+ id
+
+
+ closeProfileRenameSheet:
+ id
+
+
+ closeProfileSheet:
+ id
+
+
+ closeSettingsSheet:
+ id
+
+
+ profileApply:
+ id
+
+
+ profileDelete:
+ id
+
+
+ profileNew:
+ id
+
+
+ profileRename:
+ id
+
+
+ profileSave:
+ id
+
+
+ profileSelect:
+ id
+
+
+ profileView:
+ id
+
+
+ removeInput:
+ id
+
+
+ setInputAdd:
+ id
+
+
+ showSettingsSheet:
+ id
+
+
+
+
+ YES
+
+ YES
+ inputManager
+ inputPrefOutlineView
+ inputProfileController
+ inputProfileMenu
+ inputProfileNextButton
+ inputProfilePreviousButton
+ inputProfileRenameSheet
+ inputProfileSheet
+ inputSettingsController
+ inputSettingsGPUState
+ inputSettingsLoadStateSlot
+ inputSettingsMicrophone
+ inputSettingsNDSInput
+ inputSettingsPaddleController
+ inputSettingsSaveStateSlot
+ inputSettingsSetSpeedLimit
+ inputSettingsTouch
+ prefWindow
+
+
+ YES
+ InputManager
+ NSOutlineView
+ InputProfileController
+ NSPopUpButton
+ NSButton
+ NSButton
+ NSWindow
+ NSWindow
+ NSObjectController
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+
+
+
+ YES
+
+ YES
+ inputManager
+ inputPrefOutlineView
+ inputProfileController
+ inputProfileMenu
+ inputProfileNextButton
+ inputProfilePreviousButton
+ inputProfileRenameSheet
+ inputProfileSheet
+ inputSettingsController
+ inputSettingsGPUState
+ inputSettingsLoadStateSlot
+ inputSettingsMicrophone
+ inputSettingsNDSInput
+ inputSettingsPaddleController
+ inputSettingsSaveStateSlot
+ inputSettingsSetSpeedLimit
+ inputSettingsTouch
+ prefWindow
+
+
+ YES
+
+ inputManager
+ InputManager
+
+
+ inputPrefOutlineView
+ NSOutlineView
+
+
+ inputProfileController
+ InputProfileController
+
+
+ inputProfileMenu
+ NSPopUpButton
+
+
+ inputProfileNextButton
+ NSButton
+
+
+ inputProfilePreviousButton
+ NSButton
+
+
+ inputProfileRenameSheet
+ NSWindow
+
+
+ inputProfileSheet
+ NSWindow
+
+
+ inputSettingsController
+ NSObjectController
+
+
+ inputSettingsGPUState
+ NSWindow
+
+
+ inputSettingsLoadStateSlot
+ NSWindow
+
+
+ inputSettingsMicrophone
+ NSWindow
+
+
+ inputSettingsNDSInput
+ NSWindow
+
+
+ inputSettingsPaddleController
+ NSWindow
+
+
+ inputSettingsSaveStateSlot
+ NSWindow
+
+
+ inputSettingsSetSpeedLimit
+ NSWindow
+
+
+ inputSettingsTouch
+ NSWindow
+
+
+ prefWindow
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/inputPrefsView.h
+
+
+
+ InputProfileController
+ NSObjectController
+
+ YES
+
+ YES
+ inputManager
+ profileOutlineView
+
+
+ YES
+ InputManager
+ NSOutlineView
+
+
+
+ YES
+
+ YES
+ inputManager
+ profileOutlineView
+
+
+ YES
+
+ inputManager
+ InputManager
+
+
+ profileOutlineView
+ NSOutlineView
+
+
+
+
+ IBProjectSource
+ userinterface/InputProfileController.h
+
+
+
+ PreferencesWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ changePrefView:
+ chooseARM7BiosImage:
+ chooseARM9BiosImage:
+ chooseAdvansceneDatabase:
+ chooseCheatDatabase:
+ chooseFirmwareImage:
+ chooseRomForAutoload:
+ closeFirmwareConfigSheet:
+ configureInternalFirmware:
+ selectDisplayRotation:
+ selectOutputFilter:
+ selectPixelScaler:
+ selectSPUSyncMethod:
+ selectSPUSyncMode:
+ selectVideoFilterType:
+ setUseBilinear:
+ updateFiltersPreferGPU:
+ updateSourceDeposterize:
+ updateVolumeIcon:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ changePrefView:
+ chooseARM7BiosImage:
+ chooseARM9BiosImage:
+ chooseAdvansceneDatabase:
+ chooseCheatDatabase:
+ chooseFirmwareImage:
+ chooseRomForAutoload:
+ closeFirmwareConfigSheet:
+ configureInternalFirmware:
+ selectDisplayRotation:
+ selectOutputFilter:
+ selectPixelScaler:
+ selectSPUSyncMethod:
+ selectSPUSyncMode:
+ selectVideoFilterType:
+ setUseBilinear:
+ updateFiltersPreferGPU:
+ updateSourceDeposterize:
+ updateVolumeIcon:
+
+
+ YES
+
+ changePrefView:
+ id
+
+
+ chooseARM7BiosImage:
+ id
+
+
+ chooseARM9BiosImage:
+ id
+
+
+ chooseAdvansceneDatabase:
+ id
+
+
+ chooseCheatDatabase:
+ id
+
+
+ chooseFirmwareImage:
+ id
+
+
+ chooseRomForAutoload:
+ id
+
+
+ closeFirmwareConfigSheet:
+ id
+
+
+ configureInternalFirmware:
+ id
+
+
+ selectDisplayRotation:
+ id
+
+
+ selectOutputFilter:
+ id
+
+
+ selectPixelScaler:
+ id
+
+
+ selectSPUSyncMethod:
+ id
+
+
+ selectSPUSyncMode:
+ id
+
+
+ selectVideoFilterType:
+ id
+
+
+ setUseBilinear:
+ id
+
+
+ updateFiltersPreferGPU:
+ id
+
+
+ updateSourceDeposterize:
+ id
+
+
+ updateVolumeIcon:
+ id
+
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cheatDatabaseController
+ cheatWindowController
+ displayRotationField
+ displayRotationMenu
+ displayRotationMenuCustomItem
+ emuController
+ firmwareConfigSheet
+ prefWindowController
+ previewView
+ spuSyncMethodMenu
+ toolbar
+ viewDisplay
+ viewEmulation
+ viewGeneral
+ viewInput
+ viewSound
+ window
+
+
+ YES
+ NSObjectController
+ NSArrayController
+ NSObjectController
+ NSTextField
+ NSPopUpButton
+ NSMenuItem
+ NSObjectController
+ NSWindow
+ NSObjectController
+ DisplayPreviewView
+ NSPopUpButton
+ NSToolbar
+ NSView
+ NSView
+ NSView
+ InputPrefsView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cheatDatabaseController
+ cheatWindowController
+ displayRotationField
+ displayRotationMenu
+ displayRotationMenuCustomItem
+ emuController
+ firmwareConfigSheet
+ prefWindowController
+ previewView
+ spuSyncMethodMenu
+ toolbar
+ viewDisplay
+ viewEmulation
+ viewGeneral
+ viewInput
+ viewSound
+ window
+
+
+ YES
+
+ cdsCoreController
+ NSObjectController
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ displayRotationField
+ NSTextField
+
+
+ displayRotationMenu
+ NSPopUpButton
+
+
+ displayRotationMenuCustomItem
+ NSMenuItem
+
+
+ emuController
+ NSObjectController
+
+
+ firmwareConfigSheet
+ NSWindow
+
+
+ prefWindowController
+ NSObjectController
+
+
+ previewView
+ DisplayPreviewView
+
+
+ spuSyncMethodMenu
+ NSPopUpButton
+
+
+ toolbar
+ NSToolbar
+
+
+ viewDisplay
+ NSView
+
+
+ viewEmulation
+ NSView
+
+
+ viewGeneral
+ NSView
+
+
+ viewInput
+ InputPrefsView
+
+
+ viewSound
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+
+
+ Slot2WindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ applySettings:
+ chooseGbaCartridgePath:
+ chooseGbaSRamPath:
+ chooseMPCFPath:
+ clearSRamPath:
+ showInputPreferences:
+ testRumble:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ applySettings:
+ chooseGbaCartridgePath:
+ chooseGbaSRamPath:
+ chooseMPCFPath:
+ clearSRamPath:
+ showInputPreferences:
+ testRumble:
+
+
+ YES
+
+ applySettings:
+ id
+
+
+ chooseGbaCartridgePath:
+ id
+
+
+ chooseGbaSRamPath:
+ id
+
+
+ chooseMPCFPath:
+ id
+
+
+ clearSRamPath:
+ id
+
+
+ showInputPreferences:
+ id
+
+
+ testRumble:
+ id
+
+
+
+
+ YES
+
+ YES
+ deviceListController
+ deviceListTable
+ deviceSettingsBox
+ mpcfFileSearchMenu
+ prefWindowDelegate
+ viewAuto
+ viewCompactFlash
+ viewGBACartridge
+ viewGuitarGrip
+ viewMemoryExpansionPack
+ viewNoSelection
+ viewNone
+ viewPaddleController
+ viewPassME
+ viewPiano
+ viewRumblePak
+ viewUnsupported
+ window
+
+
+ YES
+ NSArrayController
+ NSTableView
+ NSBox
+ NSPopUpButton
+ PreferencesWindowDelegate
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ deviceListController
+ deviceListTable
+ deviceSettingsBox
+ mpcfFileSearchMenu
+ prefWindowDelegate
+ viewAuto
+ viewCompactFlash
+ viewGBACartridge
+ viewGuitarGrip
+ viewMemoryExpansionPack
+ viewNoSelection
+ viewNone
+ viewPaddleController
+ viewPassME
+ viewPiano
+ viewRumblePak
+ viewUnsupported
+ window
+
+
+ YES
+
+ deviceListController
+ NSArrayController
+
+
+ deviceListTable
+ NSTableView
+
+
+ deviceSettingsBox
+ NSBox
+
+
+ mpcfFileSearchMenu
+ NSPopUpButton
+
+
+ prefWindowDelegate
+ PreferencesWindowDelegate
+
+
+ viewAuto
+ NSView
+
+
+ viewCompactFlash
+ NSView
+
+
+ viewGBACartridge
+ NSView
+
+
+ viewGuitarGrip
+ NSView
+
+
+ viewMemoryExpansionPack
+ NSView
+
+
+ viewNoSelection
+ NSView
+
+
+ viewNone
+ NSView
+
+
+ viewPaddleController
+ NSView
+
+
+ viewPassME
+ NSView
+
+
+ viewPiano
+ NSView
+
+
+ viewRumblePak
+ NSView
+
+
+ viewUnsupported
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/Slot2WindowDelegate.h
+
+
+
+ TroubleshootingWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ backForm:
+ continueToFinalForm:
+ copyInfoToPasteboard:
+ copyRomInfoToTextFields:
+ goToWebpage:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ backForm:
+ continueToFinalForm:
+ copyInfoToPasteboard:
+ copyRomInfoToTextFields:
+ goToWebpage:
+
+
+ YES
+
+ backForm:
+ id
+
+
+ continueToFinalForm:
+ id
+
+
+ copyInfoToPasteboard:
+ id
+
+
+ copyRomInfoToTextFields:
+ id
+
+
+ goToWebpage:
+ id
+
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ emuControlController
+ romInfoController
+ troubleshootingWindowController
+ viewBugReport
+ viewFinishedForm
+ viewSupportRequest
+ window
+
+
+ YES
+ NSObjectController
+ NSObjectController
+ NSObjectController
+ NSObjectController
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ emuControlController
+ romInfoController
+ troubleshootingWindowController
+ viewBugReport
+ viewFinishedForm
+ viewSupportRequest
+ window
+
+
+ YES
+
+ cdsCoreController
+ NSObjectController
+
+
+ emuControlController
+ NSObjectController
+
+
+ romInfoController
+ NSObjectController
+
+
+ troubleshootingWindowController
+ NSObjectController
+
+
+ viewBugReport
+ NSView
+
+
+ viewFinishedForm
+ NSView
+
+
+ viewSupportRequest
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/troubleshootingWindowDelegate.h
+
+
+
+
+ YES
+
+ NSActionCell
+ NSCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSActionCell.h
+
+
+
+ NSApplication
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplication.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplicationScripting.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSColorPanel.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSHelpManager.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPageLayout.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserInterfaceItemSearching.h
+
+
+
+ NSArrayController
+ NSObjectController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSArrayController.h
+
+
+
+ NSBox
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBox.h
+
+
+
+ NSBrowser
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBrowser.h
+
+
+
+ NSButton
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButton.h
+
+
+
+ NSButtonCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButtonCell.h
+
+
+
+ NSCell
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSCell.h
+
+
+
+ NSControl
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSControl.h
+
+
+
+ NSController
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSController.h
+
+
+
+ NSDatePicker
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDatePicker.h
+
+
+
+ NSDatePickerCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDatePickerCell.h
+
+
+
+ NSDocumentController
+ NSObject
+
+ YES
+
+ YES
+ clearRecentDocuments:
+ newDocument:
+ openDocument:
+ saveAllDocuments:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ clearRecentDocuments:
+ newDocument:
+ openDocument:
+ saveAllDocuments:
+
+
+ YES
+
+ clearRecentDocuments:
+ id
+
+
+ newDocument:
+ id
+
+
+ openDocument:
+ id
+
+
+ saveAllDocuments:
+ id
+
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDocumentController.h
+
+
+
+ NSDrawer
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDrawer.h
+
+
+
+ NSFormatter
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFormatter.h
+
+
+
+ NSImageCell
+ NSCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSImageCell.h
+
+
+
+ NSImageView
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSImageView.h
+
+
+
+ NSMatrix
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMatrix.h
+
+
+
+ NSMenu
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenu.h
+
+
+
+ NSMenuItem
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItem.h
+
+
+
+ NSMenuItemCell
+ NSButtonCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItemCell.h
+
+
+
+ NSMovieView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMovieView.h
+
+
+
+ NSNumberFormatter
+ NSFormatter
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSNumberFormatter.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSAccessibility.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDictionaryController.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDragging.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontPanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSKeyValueBinding.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSNibLoading.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSOutlineView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPasteboard.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSavePanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSToolbarItem.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSError.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFileManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueObserving.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyedArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObject.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObjectScripting.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSPortCoder.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSRunLoop.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptObjectSpecifiers.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptWhoseTests.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSThread.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURL.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLConnection.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLDownload.h
+
+
+
+ NSObjectController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSObjectController.h
+
+
+
+ NSOutlineView
+ NSTableView
+
+
+
+ NSPanel
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPanel.h
+
+
+
+ NSPopUpButton
+ NSButton
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButton.h
+
+
+
+ NSPopUpButtonCell
+ NSMenuItemCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButtonCell.h
+
+
+
+ NSProgressIndicator
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSProgressIndicator.h
+
+
+
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSInterfaceStyle.h
+
+
+
+ NSResponder
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSResponder.h
+
+
+
+ NSScrollView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScrollView.h
+
+
+
+ NSScroller
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScroller.h
+
+
+
+ NSSearchField
+ NSTextField
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSearchField.h
+
+
+
+ NSSearchFieldCell
+ NSTextFieldCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSearchFieldCell.h
+
+
+
+ NSSlider
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSlider.h
+
+
+
+ NSSliderCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSliderCell.h
+
+
+
+ NSStepper
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSStepper.h
+
+
+
+ NSStepperCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSStepperCell.h
+
+
+
+ NSTabView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTabView.h
+
+
+
+ NSTabViewItem
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTabViewItem.h
+
+
+
+ NSTableColumn
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableColumn.h
+
+
+
+ NSTableHeaderView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableHeaderView.h
+
+
+
+ NSTableView
+ NSControl
+
+
+
+ NSText
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSText.h
+
+
+
+ NSTextField
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextField.h
+
+
+
+ NSTextFieldCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextFieldCell.h
+
+
+
+ NSTextView
+ NSText
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextView.h
+
+
+
+ NSToolbar
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSToolbar.h
+
+
+
+ NSToolbarItem
+ NSObject
+
+
+
+ NSUserDefaultsController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserDefaultsController.h
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSClipView.h
+
+
+
+ NSView
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSRulerView.h
+
+
+
+ NSView
+ NSResponder
+
+
+
+ NSWindow
+
+
+
+ NSWindow
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindow.h
+
+
+
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowScripting.h
+
+
+
+ NSWindowController
+ NSResponder
+
+ showWindow:
+ id
+
+
+ showWindow:
+
+ showWindow:
+ id
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowController.h
+
+
+
+
+ 0
+ IBCocoaFramework
+
+ com.apple.InterfaceBuilder.CocoaPlugin.macosx
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin.macosx
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3
+
+
+ YES
+ ../../DeSmuME (XCode 3).xcodeproj
+ 3
+
+ YES
+
+ YES
+ ColorSwatch_Blue_16x16
+ ColorSwatch_Brown_16x16
+ ColorSwatch_DarkBlue_16x16
+ ColorSwatch_DarkGreen_16x16
+ ColorSwatch_DarkPurple_16x16
+ ColorSwatch_Gray_16x16
+ ColorSwatch_Green_16x16
+ ColorSwatch_LimeGreen_16x16
+ ColorSwatch_Magenta_16x16
+ ColorSwatch_Orange_16x16
+ ColorSwatch_Pink_16x16
+ ColorSwatch_Red_16x16
+ ColorSwatch_SeaGreen_16x16
+ ColorSwatch_Turquoise_16x16
+ ColorSwatch_Violet_16x16
+ ColorSwatch_Yellow_16x16
+ Icon_ActionReplay_32x32
+ Icon_CodeBreaker_128x128
+ Icon_DeSmuME_32x32
+ Icon_Emulation_420x420
+ Icon_Execute_420x420
+ Icon_FrameAdvance_420x420
+ Icon_FrameJump_420x420
+ Icon_Input_420x420
+ Icon_Pause_420x420
+ Icon_Reset_420x420
+ Icon_ShowHUD_420x420
+ Icon_Speaker_420x420
+ Icon_VolumeFull_16x16
+ Image_GuitarGrip
+ Image_MemoryExpansionPak
+ Image_PaddleController
+ Image_PassME
+ Image_Piano
+ NSActionTemplate
+ NSAddTemplate
+ NSApplicationIcon
+ NSMenuCheckmark
+ NSMenuMixedState
+ NSPreferencesGeneral
+ NSRadioButton
+ NSRemoveTemplate
+ NSSwitch
+
+
+ YES
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {32, 32}
+ {128, 128}
+ {32, 32}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {20, 20}
+ {421, 339}
+ {360, 136}
+ {698, 479}
+ {111.60000000000001, 85.600000000000009}
+ {515, 457}
+ {14, 14}
+ {8, 8}
+ {512, 512}
+ {11, 11}
+ {10, 3}
+ {32, 32}
+ {16, 15}
+ {8, 8}
+ {15, 15}
+
+
+
diff --git a/desmume/src/cocoa/userinterface/preferencesWindowDelegate.h b/desmume/src/cocoa/userinterface/preferencesWindowDelegate.h
index 54ee9189f..a45bc6f3b 100644
--- a/desmume/src/cocoa/userinterface/preferencesWindowDelegate.h
+++ b/desmume/src/cocoa/userinterface/preferencesWindowDelegate.h
@@ -17,10 +17,29 @@
*/
#import
+#import
#import "inputPrefsView.h"
@class CocoaVideoFilter;
+class OGLImage;
+@interface DisplayPreviewView : NSView
+{
+ OGLImage *oglImage;
+ NSOpenGLContext *context;
+ CGLContextObj cglDisplayContext;
+
+ bool isPreviewImageLoaded;
+}
+
+@property (assign) BOOL filtersPreferGPU;
+@property (assign) BOOL sourceDeposterize;
+@property (assign) NSInteger pixelScaler;
+@property (assign) NSInteger outputFilter;
+
+@end
+
+#pragma mark -
#if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
@interface PreferencesWindowDelegate : NSObject
@@ -55,9 +74,7 @@
NSImage *iconVolumeMute;
NSPopUpButton *spuSyncMethodMenu;
- NSImageView *previewImageView;
- CocoaVideoFilter *videoFilter;
- CocoaVideoFilter *bilinearVideoFilter;
+ DisplayPreviewView *previewView;
NSMutableDictionary *bindings;
}
@@ -82,7 +99,7 @@
@property (readonly) IBOutlet NSTextField *displayRotationField;
@property (readonly) IBOutlet NSPopUpButton *spuSyncMethodMenu;
-@property (readonly) IBOutlet NSImageView *previewImageView;
+@property (readonly) IBOutlet DisplayPreviewView *previewView;
@property (readonly) NSMutableDictionary *bindings;
@@ -98,8 +115,10 @@
- (IBAction) selectDisplayRotation:(id)sender;
- (void) updateDisplayRotationMenu:(double)displayRotation;
-- (IBAction) setUseBilinear:(id)sender;
-- (IBAction) selectVideoFilterType:(id)sender;
+- (IBAction) updateFiltersPreferGPU:(id)sender;
+- (IBAction) updateSourceDeposterize:(id)sender;
+- (IBAction) selectOutputFilter:(id)sender;
+- (IBAction) selectPixelScaler:(id)sender;
- (IBAction) updateVolumeIcon:(id)sender;
- (IBAction) selectSPUSyncMode:(id)sender;
@@ -116,8 +135,6 @@
- (void) didEndFirmwareConfigSheet:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo;
- (void) switchContentView:(NSView *)theView;
-- (void) updateVideoFilterPreview:(const NSInteger)vfType;
-- (void) updateBilinearPreview:(const BOOL)useBilinear;
- (void) setupUserDefaults;
@end
diff --git a/desmume/src/cocoa/userinterface/preferencesWindowDelegate.mm b/desmume/src/cocoa/userinterface/preferencesWindowDelegate.mm
index 95e9104f7..f7f8da777 100644
--- a/desmume/src/cocoa/userinterface/preferencesWindowDelegate.mm
+++ b/desmume/src/cocoa/userinterface/preferencesWindowDelegate.mm
@@ -27,6 +27,191 @@
#import "cocoa_videofilter.h"
#import "cocoa_util.h"
+#ifdef MAC_OS_X_VERSION_10_7
+#include "../OGLDisplayOutput_3_2.h"
+#else
+#include "../OGLDisplayOutput.h"
+#endif
+
+
+#pragma mark -
+@implementation DisplayPreviewView
+
+@dynamic filtersPreferGPU;
+@dynamic sourceDeposterize;
+@dynamic pixelScaler;
+@dynamic outputFilter;
+
+- (id)initWithFrame:(NSRect)frameRect
+{
+ self = [super initWithFrame:frameRect];
+ if (self == nil)
+ {
+ return self;
+ }
+
+ isPreviewImageLoaded = false;
+
+ // Initialize the OpenGL context
+ NSOpenGLPixelFormatAttribute attributes[] = {
+ NSOpenGLPFAColorSize, (NSOpenGLPixelFormatAttribute)24,
+ NSOpenGLPFAAlphaSize, (NSOpenGLPixelFormatAttribute)8,
+ NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute)0,
+ NSOpenGLPFAStencilSize, (NSOpenGLPixelFormatAttribute)0,
+ NSOpenGLPFADoubleBuffer,
+ (NSOpenGLPixelFormatAttribute)0, (NSOpenGLPixelFormatAttribute)0,
+ (NSOpenGLPixelFormatAttribute)0 };
+
+#ifdef _OGLDISPLAYOUTPUT_3_2_H_
+ // If we can support a 3.2 Core Profile context, then request that in our
+ // pixel format attributes.
+ if (IsOSXVersionSupported(10, 7, 0))
+ {
+ attributes[9] = kCGLPFAOpenGLProfile;
+ attributes[10] = (CGLPixelFormatAttribute)kCGLOGLPVersion_3_2_Core;
+
+ OGLInfoCreate_Func = &OGLInfoCreate_3_2;
+ }
+#endif
+
+ NSOpenGLPixelFormat *format = [[NSOpenGLPixelFormat alloc] initWithAttributes:attributes];
+ context = [[NSOpenGLContext alloc] initWithFormat:format shareContext:nil];
+ [format release];
+ cglDisplayContext = (CGLContextObj)[context CGLContextObj];
+
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+
+ OGLInfo *oglInfo = OGLInfoCreate_Func();
+ oglImage = new OGLImage(oglInfo, 64, 64, frameRect.size.width, frameRect.size.height);
+ oglImage->SetFiltersPreferGPUOGL(true);
+ oglImage->SetSourceDeposterize(false);
+ oglImage->SetOutputFilterOGL(OutputFilterTypeID_Bilinear);
+ oglImage->SetPixelScalerOGL(VideoFilterTypeID_None);
+
+ CGLSetCurrentContext(prevContext);
+
+ return self;
+}
+
+- (void)dealloc
+{
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ delete oglImage;
+ CGLSetCurrentContext(prevContext);
+
+ [context clearDrawable];
+ [context release];
+
+ [super dealloc];
+}
+
+- (void) setFiltersPreferGPU:(BOOL)theState
+{
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->SetFiltersPreferGPUOGL(theState ? true : false);
+ oglImage->ProcessOGL();
+ CGLSetCurrentContext(prevContext);
+}
+
+- (BOOL) filtersPreferGPU
+{
+ return (oglImage->GetFiltersPreferGPU() ? YES : NO);
+}
+
+- (void) setSourceDeposterize:(BOOL)theState
+{
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->SetSourceDeposterize(theState ? true : false);
+ oglImage->ProcessOGL();
+ CGLSetCurrentContext(prevContext);
+}
+
+- (BOOL) sourceDeposterize
+{
+ return (oglImage->GetSourceDeposterize() ? YES : NO);
+}
+
+- (void) setPixelScaler:(NSInteger)scalerID
+{
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->SetPixelScalerOGL(scalerID);
+ oglImage->ProcessOGL();
+ CGLSetCurrentContext(prevContext);
+}
+
+- (NSInteger) pixelScaler
+{
+ return (NSInteger)oglImage->GetPixelScaler();
+}
+
+- (void) setOutputFilter:(NSInteger)outputFilterID
+{
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->SetOutputFilterOGL(outputFilterID);
+ CGLSetCurrentContext(prevContext);
+}
+
+- (NSInteger) outputFilter
+{
+ return (NSInteger)oglImage->GetOutputFilter();
+}
+
+- (void) loadPreviewImage:(NSImage *)previewImage
+{
+ NSArray *imageRepArray = [previewImage representations];
+ const NSBitmapImageRep *imageRep = [imageRepArray objectAtIndex:0];
+ const NSSize previewImageSize = [previewImage size];
+
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->LoadFrameOGL((const uint32_t *)[imageRep bitmapData], previewImageSize.width, previewImageSize.height);
+ oglImage->ProcessOGL();
+ CGLSetCurrentContext(prevContext);
+}
+
+- (BOOL)isOpaque
+{
+ return YES;
+}
+
+- (void)lockFocus
+{
+ [super lockFocus];
+
+ if ([context view] != self)
+ {
+ [context setView:self];
+ }
+}
+
+- (void)drawRect:(NSRect)dirtyRect
+{
+ if (!isPreviewImageLoaded)
+ {
+ // Load the preview image.
+ NSImage *previewImage = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"VideoFilterPreview_64x64" ofType:@"png"]];
+ [self loadPreviewImage:previewImage];
+ [previewImage release];
+
+ isPreviewImageLoaded = true;
+ }
+
+ CGLContextObj prevContext = CGLGetCurrentContext();
+ CGLSetCurrentContext(cglDisplayContext);
+ oglImage->RenderOGL();
+ CGLFlushDrawable(cglDisplayContext);
+ CGLSetCurrentContext(prevContext);
+}
+
+@end
+
+#pragma mark -
@implementation PreferencesWindowDelegate
@@ -51,7 +236,7 @@
@synthesize displayRotationField;
@synthesize spuSyncMethodMenu;
-@synthesize previewImageView;
+@synthesize previewView;
@synthesize bindings;
@@ -71,21 +256,6 @@
return self;
}
- // Load the preview image.
- NSImage *previewImage = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"VideoFilterPreview_64x64" ofType:@"png"]];
- NSArray *imageRepArray = [previewImage representations];
- const NSBitmapImageRep *imageRep = [imageRepArray objectAtIndex:0];
- const NSSize previewImageSize = [previewImage size];
-
- // Create our video filters for preview.
- videoFilter = [[CocoaVideoFilter alloc] initWithSize:previewImageSize typeID:VideoFilterTypeID_Nearest2X];
- bilinearVideoFilter = [[CocoaVideoFilter alloc] initWithSize:[videoFilter destSize] typeID:VideoFilterTypeID_Nearest2X];
-
- // Copy the preview image data into the video filter source buffer, then release it.
- RGBA8888ForceOpaqueBuffer((const uint32_t *)[imageRep bitmapData], (uint32_t *)[videoFilter srcBufferPtr], (size_t)previewImageSize.width * (size_t)previewImageSize.height);
- [self updateVideoFilterPreview:VideoFilterTypeID_None];
- [previewImage release];
-
// Load the volume icons.
iconVolumeFull = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Icon_VolumeFull_16x16" ofType:@"png"]];
iconVolumeTwoThird = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Icon_VolumeTwoThird_16x16" ofType:@"png"]];
@@ -105,8 +275,6 @@
[iconVolumeOneThird release];
[iconVolumeMute release];
[bindings release];
- [videoFilter release];
- [bilinearVideoFilter release];
[prefViewDict release];
[super dealloc];
@@ -362,20 +530,34 @@
}
}
-- (IBAction) setUseBilinear:(id)sender
+- (IBAction) updateFiltersPreferGPU:(id)sender
{
- const BOOL useBilinear = [[NSUserDefaults standardUserDefaults] boolForKey:@"DisplayView_UseBilinearOutput"];
- [self updateBilinearPreview:useBilinear];
- [previewImageView setNeedsDisplay:YES];
+ const BOOL theState = [CocoaDSUtil getIBActionSenderButtonStateBool:sender];
+ [[self previewView] setFiltersPreferGPU:theState];
+ [previewView setNeedsDisplay:YES];
}
-- (IBAction) selectVideoFilterType:(id)sender
+- (IBAction) updateSourceDeposterize:(id)sender
{
- const NSInteger vfType = [CocoaDSUtil getIBActionSenderTag:sender];
- [[NSUserDefaults standardUserDefaults] setInteger:vfType forKey:@"DisplayView_VideoFilter"];
-
- [self updateVideoFilterPreview:vfType];
- [previewImageView setNeedsDisplay:YES];
+ const BOOL theState = [CocoaDSUtil getIBActionSenderButtonStateBool:sender];
+ [[self previewView] setSourceDeposterize:theState];
+ [previewView setNeedsDisplay:YES];
+}
+
+- (IBAction) selectOutputFilter:(id)sender
+{
+ const NSInteger filterID = [CocoaDSUtil getIBActionSenderTag:sender];
+ [[NSUserDefaults standardUserDefaults] setInteger:filterID forKey:@"DisplayView_OutputFilter"];
+ [[self previewView] setOutputFilter:filterID];
+ [previewView setNeedsDisplay:YES];
+}
+
+- (IBAction) selectPixelScaler:(id)sender
+{
+ const NSInteger filterID = [CocoaDSUtil getIBActionSenderTag:sender];
+ [[NSUserDefaults standardUserDefaults] setInteger:filterID forKey:@"DisplayView_VideoFilter"];
+ [[self previewView] setPixelScaler:filterID];
+ [previewView setNeedsDisplay:YES];
}
- (IBAction) updateVolumeIcon:(id)sender
@@ -651,42 +833,6 @@
[tempView release];
}
-- (void) updateVideoFilterPreview:(const NSInteger)vfType
-{
- const BOOL useBilinear = [[NSUserDefaults standardUserDefaults] boolForKey:@"DisplayView_UseBilinearOutput"];
-
- [videoFilter changeFilter:(VideoFilterTypeID)vfType];
- const NSUInteger previewWidth = (NSUInteger)[videoFilter destSize].width;
- const NSUInteger previewHeight = (NSUInteger)[videoFilter destSize].height;
-
- if (previewWidth <= 64 || previewHeight <= 64)
- {
- [videoFilter changeFilter:VideoFilterTypeID_Nearest2X];
- }
-
- [videoFilter runFilter];
- [self updateBilinearPreview:useBilinear];
-}
-
-- (void) updateBilinearPreview:(const BOOL)useBilinear
-{
- const NSUInteger previewWidth = (NSUInteger)[videoFilter destSize].width;
- const NSUInteger previewHeight = (NSUInteger)[videoFilter destSize].height;
-
- if (previewWidth <= 128 || previewHeight <= 128)
- {
- [bilinearVideoFilter changeFilter:(useBilinear) ? VideoFilterTypeID_Bilinear : VideoFilterTypeID_Nearest2X];
- }
- else
- {
- [bilinearVideoFilter changeFilter:VideoFilterTypeID_None];
- }
-
- [bilinearVideoFilter setSourceSize:[videoFilter destSize]];
- memcpy([bilinearVideoFilter srcBufferPtr], [videoFilter dstBufferPtr], previewWidth * previewHeight * sizeof(uint32_t));
- [bindings setObject:[bilinearVideoFilter image] forKey:@"VideoFilterPreviewImage"];
-}
-
- (void) setupUserDefaults
{
// Update input preferences.
@@ -709,9 +855,18 @@
// Set the default sound volume per user preferences.
[self updateVolumeIcon:nil];
- // Set the default video filter per user preferences.
- const NSInteger vfType = [[NSUserDefaults standardUserDefaults] integerForKey:@"DisplayView_VideoFilter"];
- [self updateVideoFilterPreview:vfType];
+ // Set the default video settings per user preferences.
+ const BOOL filtersPreferGPU = [[NSUserDefaults standardUserDefaults] integerForKey:@"DisplayView_FiltersPreferGPU"];
+ [[self previewView] setFiltersPreferGPU:filtersPreferGPU];
+
+ const BOOL sourceDeposterize = [[NSUserDefaults standardUserDefaults] integerForKey:@"DisplayView_Deposterize"];
+ [[self previewView] setSourceDeposterize:sourceDeposterize];
+
+ const NSInteger pixelScalerID = [[NSUserDefaults standardUserDefaults] integerForKey:@"DisplayView_VideoFilter"];
+ [[self previewView] setPixelScaler:pixelScalerID];
+
+ const NSInteger outputFilterID = [[NSUserDefaults standardUserDefaults] integerForKey:@"DisplayView_OutputFilter"];
+ [[self previewView] setOutputFilter:outputFilterID];
// Set up file paths.
NSString *arm7BiosImagePath = [[NSUserDefaults standardUserDefaults] stringForKey:@"BIOS_ARM7ImagePath"];