diff --git a/desmume/src/armcpu.h b/desmume/src/armcpu.h index f23bc0853..b00cef6bf 100644 --- a/desmume/src/armcpu.h +++ b/desmume/src/armcpu.h @@ -62,14 +62,14 @@ inline T SIGNED_UNDERFLOW(T a,T b,T c) { return BIT31(((a)&(~(b))&(~c)) | ((~a)& ( (val >> 24) & 0x000000FF) #define bswap64(x) \ - ( (x << 56) & 0xff00000000000000UL ) | \ - ( (x << 40) & 0x00ff000000000000UL ) | \ - ( (x << 24) & 0x0000ff0000000000UL ) | \ - ( (x << 8) & 0x000000ff00000000UL ) | \ - ( (x >> 8) & 0x00000000ff000000UL ) | \ - ( (x >> 24) & 0x0000000000ff0000UL ) | \ - ( (x >> 40) & 0x000000000000ff00UL ) | \ - ( (x >> 56) & 0x00000000000000ffUL ) + ( (x << 56) & 0xff00000000000000ULL ) | \ + ( (x << 40) & 0x00ff000000000000ULL ) | \ + ( (x << 24) & 0x0000ff0000000000ULL ) | \ + ( (x << 8) & 0x000000ff00000000ULL ) | \ + ( (x >> 8) & 0x00000000ff000000ULL ) | \ + ( (x >> 24) & 0x0000000000ff0000ULL ) | \ + ( (x >> 40) & 0x000000000000ff00ULL ) | \ + ( (x >> 56) & 0x00000000000000ffULL ) // ============================= CPRS flags funcs inline bool CarryFrom(s32 left, s32 right) diff --git a/desmume/src/bios.cpp b/desmume/src/bios.cpp index c21641d03..71e322c34 100644 --- a/desmume/src/bios.cpp +++ b/desmume/src/bios.cpp @@ -1218,7 +1218,7 @@ u32 (* ARM_swi_tab[2][32])()={ }; #define BIOS_NOP "bios_nop" -char* ARM_swi_names[2][32] = { +const char* ARM_swi_names[2][32] = { { "SoftReset", // 0x00 BIOS_NOP, // 0x01 diff --git a/desmume/src/cocoa/DeSmuME (Legacy).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (Legacy).xcodeproj/project.pbxproj index 2856abc7b..b0b20eb9e 100644 --- a/desmume/src/cocoa/DeSmuME (Legacy).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (Legacy).xcodeproj/project.pbxproj @@ -113,7 +113,6 @@ AB06CD9A135B8ACE00E977B3 /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD3C135B8ACE00E977B3 /* wifi.cpp */; }; AB06CE13135B8AEE00E977B3 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB06CE14135B8AEE00E977B3 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB06CE15135B8AEE00E977B3 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB06CE16135B8AEE00E977B3 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB06CE17135B8AEE00E977B3 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; AB06CE18135B8AEE00E977B3 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */; }; @@ -160,7 +159,6 @@ AB06CE54135B8AEE00E977B3 /* xstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CE11135B8AED00E977B3 /* xstring.cpp */; }; AB06CE55135B8AEE00E977B3 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB06CE56135B8AEE00E977B3 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB06CE57135B8AEE00E977B3 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB06CE58135B8AEE00E977B3 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB06CE59135B8AEE00E977B3 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; AB06CE5A135B8AEE00E977B3 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */; }; @@ -247,7 +245,6 @@ AB0A0D6914AACE9500E83E91 /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD3C135B8ACE00E977B3 /* wifi.cpp */; }; AB0A0D6A14AACE9500E83E91 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB0A0D6B14AACE9500E83E91 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB0A0D6C14AACE9500E83E91 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB0A0D6D14AACE9500E83E91 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB0A0D6E14AACE9500E83E91 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; AB0A0D6F14AACE9500E83E91 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */; }; @@ -415,7 +412,6 @@ AB18151215D212B4007A6CC3 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD36135B8ACE00E977B3 /* slot1.cpp */; }; AB18151315D212B4007A6CC3 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB18151415D212B4007A6CC3 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB18151515D212B4007A6CC3 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB18151615D212B4007A6CC3 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 956B96C213DF4CF900FCDCD0 /* slot1_retail_nand.cpp */; }; AB18151715D212B4007A6CC3 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB18151815D212B4007A6CC3 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; @@ -546,7 +542,6 @@ AB1815AE15D21469007A6CC3 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD36135B8ACE00E977B3 /* slot1.cpp */; }; AB1815AF15D21469007A6CC3 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB1815B015D21469007A6CC3 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB1815B115D21469007A6CC3 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB1815B215D21469007A6CC3 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 956B96C213DF4CF900FCDCD0 /* slot1_retail_nand.cpp */; }; AB1815B315D21469007A6CC3 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB1815B415D21469007A6CC3 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; @@ -687,7 +682,6 @@ AB18165415D214F2007A6CC3 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD36135B8ACE00E977B3 /* slot1.cpp */; }; AB18165515D214F2007A6CC3 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; AB18165615D214F2007A6CC3 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - AB18165715D214F2007A6CC3 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; AB18165815D214F2007A6CC3 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; AB18165915D214F2007A6CC3 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; AB18165A15D214F2007A6CC3 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */; }; @@ -763,14 +757,49 @@ AB46781714ABD4890002FF94 /* AppIcon_NintendoDS_ROM.icns in Resources */ = {isa = PBXBuildFile; fileRef = AB46780714ABD4890002FF94 /* AppIcon_NintendoDS_ROM.icns */; }; AB46781814ABD4890002FF94 /* AppIcon_ROMSave.icns in Resources */ = {isa = PBXBuildFile; fileRef = AB46780814ABD4890002FF94 /* AppIcon_ROMSave.icns */; }; AB46781914ABD4890002FF94 /* AppIcon_SaveState.icns in Resources */ = {isa = PBXBuildFile; fileRef = AB46780914ABD4890002FF94 /* AppIcon_SaveState.icns */; }; + AB4C80E417C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80E517C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80E617C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80E717C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80E817C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80E917C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80EA17C5DA070024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80E317C5DA070024D479 /* advanscene.cpp */; }; + AB4C80F517C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C80F617C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C80F717C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C80F817C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C80F917C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C80FA17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C80FB17C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C80FC17C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C80FD17C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C80FE17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C80FF17C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C810017C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C810117C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C810217C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C810317C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C810417C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C810517C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C810617C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C810717C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C810817C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C810917C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C810A17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C810B17C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C810C17C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C810D17C5DA240024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */; }; + AB4C810E17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C810F17C5DA240024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */; }; + AB4C811017C5DA240024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */; }; + AB4C815917C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815A17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815B17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815C17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815D17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815E17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; + AB4C815F17C5DC240024D479 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C815817C5DC240024D479 /* encrypt.cpp */; }; AB4F981716C30117000E90EA /* OGLRender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD2E135B8ACE00E977B3 /* OGLRender.cpp */; }; - AB52F9EB178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9EC178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9ED178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9EE178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9EF178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9F0178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; - AB52F9F1178CA82200FD6E89 /* encrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB52F9EA178CA82200FD6E89 /* encrypt.cpp */; }; AB73B12B14BDA01C00F49C92 /* appDelegate_legacy.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB73B12914BDA01C00F49C92 /* appDelegate_legacy.mm */; }; AB73B12C14BDA01C00F49C92 /* emuWindowDelegate_legacy.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB73B12A14BDA01C00F49C92 /* emuWindowDelegate_legacy.mm */; }; AB73B12D14BDA01C00F49C92 /* appDelegate_legacy.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB73B12914BDA01C00F49C92 /* appDelegate_legacy.mm */; }; @@ -1037,7 +1066,6 @@ ABFE4274143E32F0009A3CCE /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD3C135B8ACE00E977B3 /* wifi.cpp */; }; ABFE4275143E32F0009A3CCE /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */; }; ABFE4276143E32F0009A3CCE /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */; }; - ABFE4277143E32F0009A3CCE /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */; }; ABFE4278143E32F0009A3CCE /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */; }; ABFE4279143E32F0009A3CCE /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */; }; ABFE427A143E32F0009A3CCE /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */; }; @@ -1219,7 +1247,6 @@ AB06CD3C135B8ACE00E977B3 /* wifi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = wifi.cpp; path = ../wifi.cpp; sourceTree = SOURCE_ROOT; }; AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_none.cpp; sourceTree = ""; }; AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_r4.cpp; sourceTree = ""; }; - AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail.cpp; sourceTree = ""; }; AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_expMemory.cpp; sourceTree = ""; }; AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_gbagame.cpp; sourceTree = ""; }; AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_guitarGrip.cpp; sourceTree = ""; }; @@ -1331,8 +1358,16 @@ AB46780714ABD4890002FF94 /* AppIcon_NintendoDS_ROM.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = AppIcon_NintendoDS_ROM.icns; sourceTree = ""; }; AB46780814ABD4890002FF94 /* AppIcon_ROMSave.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = AppIcon_ROMSave.icns; sourceTree = ""; }; AB46780914ABD4890002FF94 /* AppIcon_SaveState.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = AppIcon_SaveState.icns; sourceTree = ""; }; - AB52F9E9178CA82200FD6E89 /* encrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = encrypt.h; path = ../encrypt.h; sourceTree = SOURCE_ROOT; }; - AB52F9EA178CA82200FD6E89 /* encrypt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = encrypt.cpp; path = ../encrypt.cpp; sourceTree = SOURCE_ROOT; }; + AB4C80E217C5DA070024D479 /* advanscene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = advanscene.h; sourceTree = ""; }; + AB4C80E317C5DA070024D479 /* advanscene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = advanscene.cpp; sourceTree = ""; }; + AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_auto.cpp; sourceTree = ""; }; + AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_mcrom.cpp; sourceTree = ""; }; + AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_mc.cpp; sourceTree = ""; }; + AB4C80F217C5DA240024D479 /* slot1comp_mc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_mc.h; sourceTree = ""; }; + AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_rom.cpp; sourceTree = ""; }; + AB4C80F417C5DA240024D479 /* slot1comp_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_rom.h; sourceTree = ""; }; + AB4C815717C5DC240024D479 /* encrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = encrypt.h; path = ../encrypt.h; sourceTree = SOURCE_ROOT; }; + AB4C815817C5DC240024D479 /* encrypt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = encrypt.cpp; path = ../encrypt.cpp; sourceTree = SOURCE_ROOT; }; AB73B12714BDA01C00F49C92 /* appDelegate_legacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = appDelegate_legacy.h; path = userinterface/appDelegate_legacy.h; sourceTree = ""; }; AB73B12814BDA01C00F49C92 /* emuWindowDelegate_legacy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emuWindowDelegate_legacy.h; path = userinterface/emuWindowDelegate_legacy.h; sourceTree = ""; }; AB73B12914BDA01C00F49C92 /* appDelegate_legacy.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = appDelegate_legacy.mm; path = userinterface/appDelegate_legacy.mm; sourceTree = ""; }; @@ -1659,7 +1694,7 @@ AB06CD1A135B8ACE00E977B3 /* Disassembler.cpp */, AB06CD1B135B8ACE00E977B3 /* driver.cpp */, AB06CD1C135B8ACE00E977B3 /* emufile.cpp */, - AB52F9EA178CA82200FD6E89 /* encrypt.cpp */, + AB4C815817C5DC240024D479 /* encrypt.cpp */, AB06CD1D135B8ACE00E977B3 /* FIFO.cpp */, AB06CD1E135B8ACE00E977B3 /* firmware.cpp */, AB06CD1F135B8ACE00E977B3 /* fs-linux.cpp */, @@ -1709,7 +1744,7 @@ AB06CCE7135B8ACE00E977B3 /* driver.h */, AB06CCE9135B8ACE00E977B3 /* emufile.h */, AB06CCE8135B8ACE00E977B3 /* emufile_types.h */, - AB52F9E9178CA82200FD6E89 /* encrypt.h */, + AB4C815717C5DC240024D479 /* encrypt.h */, AB06CCEA135B8ACE00E977B3 /* FIFO.h */, AB06CCEB135B8ACE00E977B3 /* firmware.h */, AB06CCEC135B8ACE00E977B3 /* fs.h */, @@ -1805,8 +1840,11 @@ children = ( AB06CD9C135B8AED00E977B3 /* slot1_none.cpp */, AB06CD9D135B8AED00E977B3 /* slot1_r4.cpp */, - AB06CD9E135B8AED00E977B3 /* slot1_retail.cpp */, + AB4C80EF17C5DA240024D479 /* slot1_retail_auto.cpp */, + AB4C80F017C5DA240024D479 /* slot1_retail_mcrom.cpp */, 956B96C213DF4CF900FCDCD0 /* slot1_retail_nand.cpp */, + AB4C80F117C5DA240024D479 /* slot1comp_mc.cpp */, + AB4C80F317C5DA240024D479 /* slot1comp_rom.cpp */, AB06CD9F135B8AED00E977B3 /* slot2_expMemory.cpp */, AB06CDA0135B8AED00E977B3 /* slot2_gbagame.cpp */, AB06CDA1135B8AED00E977B3 /* slot2_guitarGrip.cpp */, @@ -1815,6 +1853,8 @@ AB06CDA4135B8AED00E977B3 /* slot2_paddle.cpp */, AB06CDA5135B8AED00E977B3 /* slot2_piano.cpp */, AB06CDA6135B8AED00E977B3 /* slot2_rumblepak.cpp */, + AB4C80F217C5DA240024D479 /* slot1comp_mc.h */, + AB4C80F417C5DA240024D479 /* slot1comp_rom.h */, ); name = addons; path = ../addons; @@ -1889,6 +1929,7 @@ AB06CDE1135B8AED00E977B3 /* decrypt */, AB06CDEE135B8AED00E977B3 /* libfat */, 7FA912191426523900E2ABDD /* tinyxml */, + AB4C80E317C5DA070024D479 /* advanscene.cpp */, AB06CDDD135B8AED00E977B3 /* ConvertUTF.c */, AB06CDDF135B8AED00E977B3 /* datetime.cpp */, AB06CDE8135B8AED00E977B3 /* dlditool.cpp */, @@ -1898,6 +1939,7 @@ AB06CE0C135B8AED00E977B3 /* task.cpp */, AB06CE0F135B8AED00E977B3 /* vfat.cpp */, AB06CE11135B8AED00E977B3 /* xstring.cpp */, + AB4C80E217C5DA070024D479 /* advanscene.h */, AB06CDDE135B8AED00E977B3 /* ConvertUTF.h */, AB06CDE0135B8AED00E977B3 /* datetime.h */, AB06CDEA135B8AED00E977B3 /* emufat.h */, @@ -2808,7 +2850,6 @@ AB06CD94135B8ACE00E977B3 /* slot1.cpp in Sources */, AB06CE55135B8AEE00E977B3 /* slot1_none.cpp in Sources */, AB06CE56135B8AEE00E977B3 /* slot1_r4.cpp in Sources */, - AB06CE57135B8AEE00E977B3 /* slot1_retail.cpp in Sources */, AB06CE58135B8AEE00E977B3 /* slot2_expMemory.cpp in Sources */, AB06CE59135B8AEE00E977B3 /* slot2_gbagame.cpp in Sources */, AB06CE5A135B8AEE00E977B3 /* slot2_guitarGrip.cpp in Sources */, @@ -2882,7 +2923,12 @@ ABF50C04169F61540018C08D /* x86operand.cpp in Sources */, ABF50C05169F61540018C08D /* x86util.cpp in Sources */, AB2F5B051704EE0100E28885 /* utilities.c in Sources */, - AB52F9F0178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E617C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C80FD17C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C80FE17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C80FF17C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C810017C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815B17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2950,7 +2996,6 @@ AB06CD65135B8ACE00E977B3 /* slot1.cpp in Sources */, AB06CE13135B8AEE00E977B3 /* slot1_none.cpp in Sources */, AB06CE14135B8AEE00E977B3 /* slot1_r4.cpp in Sources */, - AB06CE15135B8AEE00E977B3 /* slot1_retail.cpp in Sources */, 956B96C313DF4CF900FCDCD0 /* slot1_retail_nand.cpp in Sources */, AB06CE16135B8AEE00E977B3 /* slot2_expMemory.cpp in Sources */, AB06CE17135B8AEE00E977B3 /* slot2_gbagame.cpp in Sources */, @@ -3024,7 +3069,12 @@ ABF50C5B169F61540018C08D /* x86operand.cpp in Sources */, ABF50C5C169F61540018C08D /* x86util.cpp in Sources */, AB2F5B081704EE0100E28885 /* utilities.c in Sources */, - AB52F9EE178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E917C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C810917C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C810A17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C810B17C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C810C17C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815E17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3092,7 +3142,6 @@ AB0A0D6414AACE9500E83E91 /* slot1.cpp in Sources */, AB0A0D6A14AACE9500E83E91 /* slot1_none.cpp in Sources */, AB0A0D6B14AACE9500E83E91 /* slot1_r4.cpp in Sources */, - AB0A0D6C14AACE9500E83E91 /* slot1_retail.cpp in Sources */, AB0A0D9C14AACE9500E83E91 /* slot1_retail_nand.cpp in Sources */, AB0A0D6D14AACE9500E83E91 /* slot2_expMemory.cpp in Sources */, AB0A0D6E14AACE9500E83E91 /* slot2_gbagame.cpp in Sources */, @@ -3166,7 +3215,12 @@ ABF50BCA169F61540018C08D /* x86operand.cpp in Sources */, ABF50BCB169F61540018C08D /* x86util.cpp in Sources */, AB2F5B031704EE0100E28885 /* utilities.c in Sources */, - AB52F9EC178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E417C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C80F517C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C80F617C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C80F717C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C80F817C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815917C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3234,7 +3288,6 @@ AB18151215D212B4007A6CC3 /* slot1.cpp in Sources */, AB18151315D212B4007A6CC3 /* slot1_none.cpp in Sources */, AB18151415D212B4007A6CC3 /* slot1_r4.cpp in Sources */, - AB18151515D212B4007A6CC3 /* slot1_retail.cpp in Sources */, AB18151615D212B4007A6CC3 /* slot1_retail_nand.cpp in Sources */, AB18151715D212B4007A6CC3 /* slot2_expMemory.cpp in Sources */, AB18151815D212B4007A6CC3 /* slot2_gbagame.cpp in Sources */, @@ -3278,7 +3331,12 @@ AB18153E15D212B4007A6CC3 /* ringbuffer.cpp in Sources */, AB1816B615D216EC007A6CC3 /* OGLRender.cpp in Sources */, AB2F5B071704EE0100E28885 /* utilities.c in Sources */, - AB52F9EB178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E817C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C810517C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C810617C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C810717C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C810817C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815D17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3346,7 +3404,6 @@ AB1815AE15D21469007A6CC3 /* slot1.cpp in Sources */, AB1815AF15D21469007A6CC3 /* slot1_none.cpp in Sources */, AB1815B015D21469007A6CC3 /* slot1_r4.cpp in Sources */, - AB1815B115D21469007A6CC3 /* slot1_retail.cpp in Sources */, AB1815B215D21469007A6CC3 /* slot1_retail_nand.cpp in Sources */, AB1815B315D21469007A6CC3 /* slot2_expMemory.cpp in Sources */, AB1815B415D21469007A6CC3 /* slot2_gbagame.cpp in Sources */, @@ -3390,7 +3447,12 @@ AB1815DA15D21469007A6CC3 /* ringbuffer.cpp in Sources */, AB4F981716C30117000E90EA /* OGLRender.cpp in Sources */, AB2F5B091704EE0100E28885 /* utilities.c in Sources */, - AB52F9ED178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80EA17C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C810D17C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C810E17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C810F17C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C811017C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815F17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3468,7 +3530,6 @@ AB18165415D214F2007A6CC3 /* slot1.cpp in Sources */, AB18165515D214F2007A6CC3 /* slot1_none.cpp in Sources */, AB18165615D214F2007A6CC3 /* slot1_r4.cpp in Sources */, - AB18165715D214F2007A6CC3 /* slot1_retail.cpp in Sources */, AB18165815D214F2007A6CC3 /* slot2_expMemory.cpp in Sources */, AB18165915D214F2007A6CC3 /* slot2_gbagame.cpp in Sources */, AB18165A15D214F2007A6CC3 /* slot2_guitarGrip.cpp in Sources */, @@ -3512,7 +3573,12 @@ AB18168015D214F2007A6CC3 /* ringbuffer.cpp in Sources */, AB1816B815D216F5007A6CC3 /* OGLRender.cpp in Sources */, AB2F5B041704EE0100E28885 /* utilities.c in Sources */, - AB52F9F1178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E517C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C80F917C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C80FA17C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C80FB17C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C80FC17C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815A17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3580,7 +3646,6 @@ ABFE426F143E32F0009A3CCE /* slot1.cpp in Sources */, ABFE4275143E32F0009A3CCE /* slot1_none.cpp in Sources */, ABFE4276143E32F0009A3CCE /* slot1_r4.cpp in Sources */, - ABFE4277143E32F0009A3CCE /* slot1_retail.cpp in Sources */, ABFE42A7143E32F0009A3CCE /* slot1_retail_nand.cpp in Sources */, ABFE4278143E32F0009A3CCE /* slot2_expMemory.cpp in Sources */, ABFE4279143E32F0009A3CCE /* slot2_gbagame.cpp in Sources */, @@ -3654,7 +3719,12 @@ ABF50C21169F61540018C08D /* x86operand.cpp in Sources */, ABF50C22169F61540018C08D /* x86util.cpp in Sources */, AB2F5B061704EE0100E28885 /* utilities.c in Sources */, - AB52F9EF178CA82200FD6E89 /* encrypt.cpp in Sources */, + AB4C80E717C5DA070024D479 /* advanscene.cpp in Sources */, + AB4C810117C5DA240024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C810217C5DA240024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C810317C5DA240024D479 /* slot1comp_mc.cpp in Sources */, + AB4C810417C5DA240024D479 /* slot1comp_rom.cpp in Sources */, + AB4C815C17C5DC240024D479 /* encrypt.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3896,7 +3966,6 @@ GCC_ALTIVEC_EXTENSIONS = YES; GCC_DYNAMIC_NO_PIC = YES; GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_FAST_MATH = YES; GCC_FAST_OBJC_DISPATCH = NO; GCC_MODEL_TUNING = ""; "GCC_MODEL_TUNING[sdk=macosx10.4][arch=ppc]" = G4; @@ -3909,7 +3978,6 @@ _DEBUG, "DEBUG=1", ); - GCC_STRICT_ALIASING = YES; GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; "GCC_VERSION[sdk=macosx10.5][arch=ppc64]" = 4.2; @@ -3942,7 +4010,6 @@ GCC_ENABLE_SSE3_EXTENSIONS = YES; GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES; "GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS[arch=i386]" = NO; - GCC_FAST_MATH = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_INLINES_ARE_PRIVATE_EXTERN = YES; GCC_MODEL_TUNING = ""; diff --git a/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj index fde40e7b2..f90016c2b 100644 --- a/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj @@ -189,7 +189,6 @@ AB2A9A231725F00F0062C1A1 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; AB2A9A241725F00F0062C1A1 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB2A9A251725F00F0062C1A1 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB2A9A261725F00F0062C1A1 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB2A9A271725F00F0062C1A1 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; AB2A9A281725F00F0062C1A1 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB2A9A291725F00F0062C1A1 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -392,7 +391,6 @@ AB2F3BFD15CF9C6000858373 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; AB2F3BFE15CF9C6000858373 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB2F3BFF15CF9C6000858373 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB2F3C0015CF9C6000858373 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB2F3C0115CF9C6000858373 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; AB2F3C0215CF9C6000858373 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB2F3C0315CF9C6000858373 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -503,6 +501,31 @@ AB4C4C6416F55C64002E07CD /* sse_optimized.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C4C3116F55C64002E07CD /* sse_optimized.cpp */; }; AB4C4C6516F55C64002E07CD /* TDStretch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C4C3216F55C64002E07CD /* TDStretch.cpp */; }; AB4C4C6616F55C64002E07CD /* WavFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C4C3316F55C64002E07CD /* WavFile.cpp */; }; + AB4C808D17C5D7780024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */; }; + AB4C808E17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C808F17C5D7780024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */; }; + AB4C809017C5D7780024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */; }; + AB4C809117C5D7780024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */; }; + AB4C809217C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C809317C5D7780024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */; }; + AB4C809417C5D7780024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */; }; + AB4C809517C5D7780024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */; }; + AB4C809617C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C809717C5D7780024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */; }; + AB4C809817C5D7780024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */; }; + AB4C809917C5D7780024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */; }; + AB4C809A17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C809B17C5D7780024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */; }; + AB4C809C17C5D7780024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */; }; + AB4C809D17C5D7780024D479 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */; }; + AB4C809E17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */; }; + AB4C809F17C5D7780024D479 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */; }; + AB4C80A017C5D7780024D479 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */; }; + AB4C80AA17C5D7A00024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80A917C5D7A00024D479 /* advanscene.cpp */; }; + AB4C80AB17C5D7A00024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80A917C5D7A00024D479 /* advanscene.cpp */; }; + AB4C80AC17C5D7A00024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80A917C5D7A00024D479 /* advanscene.cpp */; }; + AB4C80AD17C5D7A00024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80A917C5D7A00024D479 /* advanscene.cpp */; }; + AB4C80AE17C5D7A00024D479 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB4C80A917C5D7A00024D479 /* advanscene.cpp */; }; AB5A795816D5A56000ED84B7 /* InputManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB5A795716D5A56000ED84B7 /* InputManager.mm */; }; AB5A795916D5A56000ED84B7 /* InputManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB5A795716D5A56000ED84B7 /* InputManager.mm */; }; AB5A795A16D5A56000ED84B7 /* InputManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB5A795716D5A56000ED84B7 /* InputManager.mm */; }; @@ -574,7 +597,6 @@ AB711F211481C35F009011C8 /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FECF1345AC8400AF11D1 /* wifi.cpp */; }; AB711F221481C35F009011C8 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB711F231481C35F009011C8 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB711F241481C35F009011C8 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB711F251481C35F009011C8 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB711F261481C35F009011C8 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; AB711F271481C35F009011C8 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */; }; @@ -759,7 +781,6 @@ AB73A9EB1507C9F500A310C8 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; AB73A9EC1507C9F500A310C8 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB73A9ED1507C9F500A310C8 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB73A9EE1507C9F500A310C8 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB73A9EF1507C9F500A310C8 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; AB73A9F01507C9F500A310C8 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB73A9F11507C9F500A310C8 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -963,7 +984,6 @@ ABAD0FF315ACE7A00000EC47 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; ABAD0FF415ACE7A00000EC47 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; ABAD0FF515ACE7A00000EC47 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - ABAD0FF615ACE7A00000EC47 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; ABAD0FF715ACE7A00000EC47 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; ABAD0FF815ACE7A00000EC47 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; ABAD0FF915ACE7A00000EC47 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -1202,6 +1222,14 @@ AB4C4C3C16F55C64002E07CD /* STTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = STTypes.h; sourceTree = ""; }; AB4C4C3D16F55C64002E07CD /* TDStretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TDStretch.h; sourceTree = ""; }; AB4C4C3E16F55C64002E07CD /* WavFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WavFile.h; sourceTree = ""; }; + AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_auto.cpp; sourceTree = ""; }; + AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_mcrom.cpp; sourceTree = ""; }; + AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_mc.cpp; sourceTree = ""; }; + AB4C808A17C5D7780024D479 /* slot1comp_mc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_mc.h; sourceTree = ""; }; + AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_rom.cpp; sourceTree = ""; }; + AB4C808C17C5D7780024D479 /* slot1comp_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_rom.h; sourceTree = ""; }; + AB4C80A817C5D7A00024D479 /* advanscene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = advanscene.h; sourceTree = ""; }; + AB4C80A917C5D7A00024D479 /* advanscene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = advanscene.cpp; sourceTree = ""; }; AB58F32B1364F44B0074C376 /* cocoa_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cocoa_file.h; sourceTree = ""; }; AB58F32C1364F44B0074C376 /* cocoa_file.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = cocoa_file.mm; sourceTree = ""; }; AB5A795616D5A56000ED84B7 /* InputManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputManager.h; sourceTree = ""; }; @@ -1369,7 +1397,6 @@ ABD1FECF1345AC8400AF11D1 /* wifi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = wifi.cpp; path = ../wifi.cpp; sourceTree = SOURCE_ROOT; }; ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_none.cpp; sourceTree = ""; }; ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_r4.cpp; sourceTree = ""; }; - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail.cpp; sourceTree = ""; }; ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_expMemory.cpp; sourceTree = ""; }; ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_gbagame.cpp; sourceTree = ""; }; ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_guitarGrip.cpp; sourceTree = ""; }; @@ -1989,8 +2016,11 @@ children = ( ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */, ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */, + AB4C808717C5D7780024D479 /* slot1_retail_auto.cpp */, + AB4C808817C5D7780024D479 /* slot1_retail_mcrom.cpp */, AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */, - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */, + AB4C808917C5D7780024D479 /* slot1comp_mc.cpp */, + AB4C808B17C5D7780024D479 /* slot1comp_rom.cpp */, ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */, ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */, ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */, @@ -1999,6 +2029,8 @@ ABD1FF081345AC9C00AF11D1 /* slot2_paddle.cpp */, ABD1FF091345AC9C00AF11D1 /* slot2_piano.cpp */, ABD1FF0A1345AC9C00AF11D1 /* slot2_rumblepak.cpp */, + AB4C808A17C5D7780024D479 /* slot1comp_mc.h */, + AB4C808C17C5D7780024D479 /* slot1comp_rom.h */, ); name = addons; path = ../addons; @@ -2021,6 +2053,7 @@ ABD1FF211345ACBF00AF11D1 /* decrypt */, ABD1FF2E1345ACBF00AF11D1 /* libfat */, ABE670241415DE6C00E8E4C9 /* tinyxml */, + AB4C80A917C5D7A00024D479 /* advanscene.cpp */, ABD1FF1D1345ACBF00AF11D1 /* ConvertUTF.c */, ABD1FF1F1345ACBF00AF11D1 /* datetime.cpp */, ABD1FF281345ACBF00AF11D1 /* dlditool.cpp */, @@ -2030,6 +2063,7 @@ ABD1FF4C1345ACBF00AF11D1 /* task.cpp */, ABD1FF4F1345ACBF00AF11D1 /* vfat.cpp */, ABD1FF511345ACBF00AF11D1 /* xstring.cpp */, + AB4C80A817C5D7A00024D479 /* advanscene.h */, ABD1FF1E1345ACBF00AF11D1 /* ConvertUTF.h */, ABD1FF201345ACBF00AF11D1 /* datetime.h */, ABD1FF2A1345ACBF00AF11D1 /* emufat.h */, @@ -2989,7 +3023,6 @@ AB2A9A231725F00F0062C1A1 /* slot1.cpp in Sources */, AB2A9A241725F00F0062C1A1 /* slot1_none.cpp in Sources */, AB2A9A251725F00F0062C1A1 /* slot1_r4.cpp in Sources */, - AB2A9A261725F00F0062C1A1 /* slot1_retail.cpp in Sources */, AB2A9A271725F00F0062C1A1 /* slot1_retail_nand.cpp in Sources */, AB2A9A281725F00F0062C1A1 /* slot2_expMemory.cpp in Sources */, AB2A9A291725F00F0062C1A1 /* slot2_gbagame.cpp in Sources */, @@ -3060,6 +3093,11 @@ AB2A9A6A1725F00F0062C1A1 /* audiosamplegenerator.cpp in Sources */, AB2A9A6B1725F00F0062C1A1 /* FileMigrationDelegate.mm in Sources */, ABA93EB4178C7D4200CBF50B /* encrypt.cpp in Sources */, + AB4C809D17C5D7780024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C809E17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C809F17C5D7780024D479 /* slot1comp_mc.cpp in Sources */, + AB4C80A017C5D7780024D479 /* slot1comp_rom.cpp in Sources */, + AB4C80AE17C5D7A00024D479 /* advanscene.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3120,7 +3158,6 @@ AB2F3BFD15CF9C6000858373 /* slot1.cpp in Sources */, AB2F3BFE15CF9C6000858373 /* slot1_none.cpp in Sources */, AB2F3BFF15CF9C6000858373 /* slot1_r4.cpp in Sources */, - AB2F3C0015CF9C6000858373 /* slot1_retail.cpp in Sources */, AB2F3C0115CF9C6000858373 /* slot1_retail_nand.cpp in Sources */, AB2F3C0215CF9C6000858373 /* slot2_expMemory.cpp in Sources */, AB2F3C0315CF9C6000858373 /* slot2_gbagame.cpp in Sources */, @@ -3191,6 +3228,11 @@ AB2145241714DFF4006DDB0F /* audiosamplegenerator.cpp in Sources */, ABAAFBEB172122B6005DDDBE /* FileMigrationDelegate.mm in Sources */, ABA93EB1178C7D4200CBF50B /* encrypt.cpp in Sources */, + AB4C809117C5D7780024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C809217C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C809317C5D7780024D479 /* slot1comp_mc.cpp in Sources */, + AB4C809417C5D7780024D479 /* slot1comp_rom.cpp in Sources */, + AB4C80AB17C5D7A00024D479 /* advanscene.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3252,7 +3294,6 @@ AB711F1C1481C35F009011C8 /* slot1.cpp in Sources */, AB711F221481C35F009011C8 /* slot1_none.cpp in Sources */, AB711F231481C35F009011C8 /* slot1_r4.cpp in Sources */, - AB711F241481C35F009011C8 /* slot1_retail.cpp in Sources */, AB711F501481C35F009011C8 /* slot1_retail_nand.cpp in Sources */, AB711F251481C35F009011C8 /* slot2_expMemory.cpp in Sources */, AB711F261481C35F009011C8 /* slot2_gbagame.cpp in Sources */, @@ -3352,6 +3393,11 @@ AB2145261714DFF4006DDB0F /* audiosamplegenerator.cpp in Sources */, ABAAFBEA172122B6005DDDBE /* FileMigrationDelegate.mm in Sources */, ABA93EB0178C7D4200CBF50B /* encrypt.cpp in Sources */, + AB4C808D17C5D7780024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C808E17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C808F17C5D7780024D479 /* slot1comp_mc.cpp in Sources */, + AB4C809017C5D7780024D479 /* slot1comp_rom.cpp in Sources */, + AB4C80AA17C5D7A00024D479 /* advanscene.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3412,7 +3458,6 @@ AB73A9EB1507C9F500A310C8 /* slot1.cpp in Sources */, AB73A9EC1507C9F500A310C8 /* slot1_none.cpp in Sources */, AB73A9ED1507C9F500A310C8 /* slot1_r4.cpp in Sources */, - AB73A9EE1507C9F500A310C8 /* slot1_retail.cpp in Sources */, AB73A9EF1507C9F500A310C8 /* slot1_retail_nand.cpp in Sources */, AB73A9F01507C9F500A310C8 /* slot2_expMemory.cpp in Sources */, AB73A9F11507C9F500A310C8 /* slot2_gbagame.cpp in Sources */, @@ -3513,6 +3558,11 @@ AB2145251714DFF4006DDB0F /* audiosamplegenerator.cpp in Sources */, ABAAFBED172122B6005DDDBE /* FileMigrationDelegate.mm in Sources */, ABA93EB3178C7D4200CBF50B /* encrypt.cpp in Sources */, + AB4C809917C5D7780024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C809A17C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C809B17C5D7780024D479 /* slot1comp_mc.cpp in Sources */, + AB4C809C17C5D7780024D479 /* slot1comp_rom.cpp in Sources */, + AB4C80AD17C5D7A00024D479 /* advanscene.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3573,7 +3623,6 @@ ABAD0FF315ACE7A00000EC47 /* slot1.cpp in Sources */, ABAD0FF415ACE7A00000EC47 /* slot1_none.cpp in Sources */, ABAD0FF515ACE7A00000EC47 /* slot1_r4.cpp in Sources */, - ABAD0FF615ACE7A00000EC47 /* slot1_retail.cpp in Sources */, ABAD0FF715ACE7A00000EC47 /* slot1_retail_nand.cpp in Sources */, ABAD0FF815ACE7A00000EC47 /* slot2_expMemory.cpp in Sources */, ABAD0FF915ACE7A00000EC47 /* slot2_gbagame.cpp in Sources */, @@ -3644,6 +3693,11 @@ AB2145231714DFF4006DDB0F /* audiosamplegenerator.cpp in Sources */, ABAAFBEC172122B6005DDDBE /* FileMigrationDelegate.mm in Sources */, ABA93EB2178C7D4200CBF50B /* encrypt.cpp in Sources */, + AB4C809517C5D7780024D479 /* slot1_retail_auto.cpp in Sources */, + AB4C809617C5D7780024D479 /* slot1_retail_mcrom.cpp in Sources */, + AB4C809717C5D7780024D479 /* slot1comp_mc.cpp in Sources */, + AB4C809817C5D7780024D479 /* slot1comp_rom.cpp in Sources */, + AB4C80AC17C5D7A00024D479 /* advanscene.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/desmume/src/cocoa/DeSmuME (XCode 4).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (XCode 4).xcodeproj/project.pbxproj index 051969c57..c143da3e5 100644 --- a/desmume/src/cocoa/DeSmuME (XCode 4).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (XCode 4).xcodeproj/project.pbxproj @@ -323,7 +323,6 @@ AB796D2815CDCBA200C59155 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; AB796D2915CDCBA200C59155 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB796D2A15CDCBA200C59155 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB796D2B15CDCBA200C59155 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB796D2C15CDCBA200C59155 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; AB796D2D15CDCBA200C59155 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB796D2E15CDCBA200C59155 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -424,7 +423,6 @@ ABB3C6781501C04F00E0C22E /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; ABB3C6791501C04F00E0C22E /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; ABB3C67A1501C04F00E0C22E /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; - ABB3C67B1501C04F00E0C22E /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; ABB3C67C1501C04F00E0C22E /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; ABB3C67D1501C04F00E0C22E /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; ABB3C67E1501C04F00E0C22E /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */; }; @@ -578,7 +576,6 @@ ABD1FEFE1345AC8400AF11D1 /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FECF1345AC8400AF11D1 /* wifi.cpp */; }; ABD1FF0B1345AC9C00AF11D1 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; ABD1FF0C1345AC9C00AF11D1 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - ABD1FF0D1345AC9C00AF11D1 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; ABD1FF0E1345AC9C00AF11D1 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; ABD1FF0F1345AC9C00AF11D1 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; ABD1FF101345AC9C00AF11D1 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */; }; @@ -637,6 +634,21 @@ ABFE150B14C92FF5005D6699 /* hq4x.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE150014C92FF5005D6699 /* hq4x.cpp */; }; ABFE150D14C92FF5005D6699 /* lq2x.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE150414C92FF5005D6699 /* lq2x.cpp */; }; ABFE150E14C92FF5005D6699 /* scanline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE150614C92FF5005D6699 /* scanline.cpp */; }; + ABFE7C8217C5CFE70028DC56 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8117C5CFE70028DC56 /* advanscene.cpp */; }; + ABFE7C8317C5CFE70028DC56 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8117C5CFE70028DC56 /* advanscene.cpp */; }; + ABFE7C8417C5CFE70028DC56 /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8117C5CFE70028DC56 /* advanscene.cpp */; }; + ABFE7C8B17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8717C5D03C0028DC56 /* slot1_retail_auto.cpp */; }; + ABFE7C8C17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8717C5D03C0028DC56 /* slot1_retail_auto.cpp */; }; + ABFE7C8D17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8717C5D03C0028DC56 /* slot1_retail_auto.cpp */; }; + ABFE7C8E17C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8817C5D03C0028DC56 /* slot1_retail_mcrom.cpp */; }; + ABFE7C8F17C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8817C5D03C0028DC56 /* slot1_retail_mcrom.cpp */; }; + ABFE7C9017C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8817C5D03C0028DC56 /* slot1_retail_mcrom.cpp */; }; + ABFE7C9117C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8917C5D03C0028DC56 /* slot1comp_mc.cpp */; }; + ABFE7C9217C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8917C5D03C0028DC56 /* slot1comp_mc.cpp */; }; + ABFE7C9317C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8917C5D03C0028DC56 /* slot1comp_mc.cpp */; }; + ABFE7C9417C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8A17C5D03C0028DC56 /* slot1comp_rom.cpp */; }; + ABFE7C9517C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8A17C5D03C0028DC56 /* slot1comp_rom.cpp */; }; + ABFE7C9617C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFE7C8A17C5D03C0028DC56 /* slot1comp_rom.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -982,7 +994,6 @@ ABD1FECF1345AC8400AF11D1 /* wifi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = wifi.cpp; path = ../wifi.cpp; sourceTree = SOURCE_ROOT; }; ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_none.cpp; sourceTree = ""; }; ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_r4.cpp; sourceTree = ""; }; - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail.cpp; sourceTree = ""; }; ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_expMemory.cpp; sourceTree = ""; }; ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_gbagame.cpp; sourceTree = ""; }; ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_guitarGrip.cpp; sourceTree = ""; }; @@ -1082,6 +1093,14 @@ ABFE150414C92FF5005D6699 /* lq2x.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lq2x.cpp; sourceTree = ""; }; ABFE150514C92FF5005D6699 /* lq2x.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lq2x.h; sourceTree = ""; }; ABFE150614C92FF5005D6699 /* scanline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scanline.cpp; sourceTree = ""; }; + ABFE7C8017C5CFE70028DC56 /* advanscene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = advanscene.h; sourceTree = ""; }; + ABFE7C8117C5CFE70028DC56 /* advanscene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = advanscene.cpp; sourceTree = ""; }; + ABFE7C8517C5D03C0028DC56 /* slot1comp_mc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_mc.h; sourceTree = ""; }; + ABFE7C8617C5D03C0028DC56 /* slot1comp_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_rom.h; sourceTree = ""; }; + ABFE7C8717C5D03C0028DC56 /* slot1_retail_auto.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_auto.cpp; sourceTree = ""; }; + ABFE7C8817C5D03C0028DC56 /* slot1_retail_mcrom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_mcrom.cpp; sourceTree = ""; }; + ABFE7C8917C5D03C0028DC56 /* slot1comp_mc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_mc.cpp; sourceTree = ""; }; + ABFE7C8A17C5D03C0028DC56 /* slot1comp_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_rom.cpp; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1598,8 +1617,11 @@ children = ( ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */, ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */, + ABFE7C8717C5D03C0028DC56 /* slot1_retail_auto.cpp */, + ABFE7C8817C5D03C0028DC56 /* slot1_retail_mcrom.cpp */, AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */, - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */, + ABFE7C8917C5D03C0028DC56 /* slot1comp_mc.cpp */, + ABFE7C8A17C5D03C0028DC56 /* slot1comp_rom.cpp */, ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */, ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */, ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */, @@ -1608,6 +1630,8 @@ ABD1FF081345AC9C00AF11D1 /* slot2_paddle.cpp */, ABD1FF091345AC9C00AF11D1 /* slot2_piano.cpp */, ABD1FF0A1345AC9C00AF11D1 /* slot2_rumblepak.cpp */, + ABFE7C8517C5D03C0028DC56 /* slot1comp_mc.h */, + ABFE7C8617C5D03C0028DC56 /* slot1comp_rom.h */, ); name = addons; path = ../addons; @@ -1630,6 +1654,7 @@ ABD1FF211345ACBF00AF11D1 /* decrypt */, ABD1FF2E1345ACBF00AF11D1 /* libfat */, ABE670241415DE6C00E8E4C9 /* tinyxml */, + ABFE7C8117C5CFE70028DC56 /* advanscene.cpp */, ABD1FF1D1345ACBF00AF11D1 /* ConvertUTF.c */, ABD1FF1F1345ACBF00AF11D1 /* datetime.cpp */, ABD1FF281345ACBF00AF11D1 /* dlditool.cpp */, @@ -1639,6 +1664,7 @@ ABD1FF4C1345ACBF00AF11D1 /* task.cpp */, ABD1FF4F1345ACBF00AF11D1 /* vfat.cpp */, ABD1FF511345ACBF00AF11D1 /* xstring.cpp */, + ABFE7C8017C5CFE70028DC56 /* advanscene.h */, ABD1FF1E1345ACBF00AF11D1 /* ConvertUTF.h */, ABD1FF201345ACBF00AF11D1 /* datetime.h */, ABD1FF2A1345ACBF00AF11D1 /* emufat.h */, @@ -2197,7 +2223,6 @@ ABD1FEF81345AC8400AF11D1 /* slot1.cpp in Sources */, ABD1FF0B1345AC9C00AF11D1 /* slot1_none.cpp in Sources */, ABD1FF0C1345AC9C00AF11D1 /* slot1_r4.cpp in Sources */, - ABD1FF0D1345AC9C00AF11D1 /* slot1_retail.cpp in Sources */, AB6FBEF6139B6258007BB045 /* slot1_retail_nand.cpp in Sources */, ABD1FF0E1345AC9C00AF11D1 /* slot2_expMemory.cpp in Sources */, ABD1FF0F1345AC9C00AF11D1 /* slot2_gbagame.cpp in Sources */, @@ -2294,6 +2319,11 @@ ABD10AEB1715FCDD00B5729D /* mic_ext.cpp in Sources */, ABD42048172319D1006A9B46 /* FileMigrationDelegate.mm in Sources */, ABD798C9178C7B9000089F19 /* encrypt.cpp in Sources */, + ABFE7C8317C5CFE70028DC56 /* advanscene.cpp in Sources */, + ABFE7C8C17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */, + ABFE7C8F17C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */, + ABFE7C9217C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */, + ABFE7C9517C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2361,7 +2391,6 @@ AB796D2815CDCBA200C59155 /* slot1.cpp in Sources */, AB796D2915CDCBA200C59155 /* slot1_none.cpp in Sources */, AB796D2A15CDCBA200C59155 /* slot1_r4.cpp in Sources */, - AB796D2B15CDCBA200C59155 /* slot1_retail.cpp in Sources */, AB796D2C15CDCBA200C59155 /* slot1_retail_nand.cpp in Sources */, AB796D2D15CDCBA200C59155 /* slot2_expMemory.cpp in Sources */, AB796D2E15CDCBA200C59155 /* slot2_gbagame.cpp in Sources */, @@ -2456,6 +2485,11 @@ ABD10AEA1715FCDD00B5729D /* mic_ext.cpp in Sources */, ABD42047172319D1006A9B46 /* FileMigrationDelegate.mm in Sources */, ABD798C8178C7B9000089F19 /* encrypt.cpp in Sources */, + ABFE7C8217C5CFE70028DC56 /* advanscene.cpp in Sources */, + ABFE7C8B17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */, + ABFE7C8E17C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */, + ABFE7C9117C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */, + ABFE7C9417C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2473,7 +2507,6 @@ ABB3C6781501C04F00E0C22E /* slot1_none.cpp in Sources */, ABB3C6791501C04F00E0C22E /* slot1_r4.cpp in Sources */, ABB3C67A1501C04F00E0C22E /* slot1_retail_nand.cpp in Sources */, - ABB3C67B1501C04F00E0C22E /* slot1_retail.cpp in Sources */, ABB3C67C1501C04F00E0C22E /* slot2_expMemory.cpp in Sources */, ABB3C67D1501C04F00E0C22E /* slot2_gbagame.cpp in Sources */, ABB3C67E1501C04F00E0C22E /* slot2_guitarGrip.cpp in Sources */, @@ -2607,6 +2640,11 @@ AB5785F817175F16002C5FC7 /* cocoa_core.mm in Sources */, AB5785F9171760D2002C5FC7 /* cocoa_output.mm in Sources */, ABD798CA178C7B9000089F19 /* encrypt.cpp in Sources */, + ABFE7C8417C5CFE70028DC56 /* advanscene.cpp in Sources */, + ABFE7C8D17C5D03C0028DC56 /* slot1_retail_auto.cpp in Sources */, + ABFE7C9017C5D03C0028DC56 /* slot1_retail_mcrom.cpp in Sources */, + ABFE7C9317C5D03C0028DC56 /* slot1comp_mc.cpp in Sources */, + ABFE7C9617C5D03C0028DC56 /* slot1comp_rom.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/desmume/src/cocoa/DeSmuME (Xcode 5).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (Xcode 5).xcodeproj/project.pbxproj index 79a489286..20118b7ca 100644 --- a/desmume/src/cocoa/DeSmuME (Xcode 5).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (Xcode 5).xcodeproj/project.pbxproj @@ -323,7 +323,6 @@ AB796D2815CDCBA200C59155 /* slot1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEC91345AC8400AF11D1 /* slot1.cpp */; }; AB796D2915CDCBA200C59155 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; AB796D2A15CDCBA200C59155 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - AB796D2B15CDCBA200C59155 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; AB796D2C15CDCBA200C59155 /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; AB796D2D15CDCBA200C59155 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; AB796D2E15CDCBA200C59155 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; @@ -393,6 +392,21 @@ AB8967DD16D2ED2700F826F1 /* DisplayWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = AB8967DB16D2ED2700F826F1 /* DisplayWindow.xib */; }; AB8967DE16D2ED2700F826F1 /* DisplayWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = AB8967DB16D2ED2700F826F1 /* DisplayWindow.xib */; }; AB901BDE1420706100348EEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = AB901BDD1420706100348EEC /* Localizable.strings */; }; + AB9038A617C5ECFD00F410BD /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A517C5ECFD00F410BD /* advanscene.cpp */; }; + AB9038A717C5ECFD00F410BD /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A517C5ECFD00F410BD /* advanscene.cpp */; }; + AB9038A817C5ECFD00F410BD /* advanscene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A517C5ECFD00F410BD /* advanscene.cpp */; }; + AB9038AF17C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A917C5ED2200F410BD /* slot1_retail_auto.cpp */; }; + AB9038B017C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A917C5ED2200F410BD /* slot1_retail_auto.cpp */; }; + AB9038B117C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038A917C5ED2200F410BD /* slot1_retail_auto.cpp */; }; + AB9038B217C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AA17C5ED2200F410BD /* slot1_retail_mcrom.cpp */; }; + AB9038B317C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AA17C5ED2200F410BD /* slot1_retail_mcrom.cpp */; }; + AB9038B417C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AA17C5ED2200F410BD /* slot1_retail_mcrom.cpp */; }; + AB9038B517C5ED2200F410BD /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AB17C5ED2200F410BD /* slot1comp_mc.cpp */; }; + AB9038B617C5ED2200F410BD /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AB17C5ED2200F410BD /* slot1comp_mc.cpp */; }; + AB9038B717C5ED2200F410BD /* slot1comp_mc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AB17C5ED2200F410BD /* slot1comp_mc.cpp */; }; + AB9038B817C5ED2200F410BD /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AD17C5ED2200F410BD /* slot1comp_rom.cpp */; }; + AB9038B917C5ED2200F410BD /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AD17C5ED2200F410BD /* slot1comp_rom.cpp */; }; + AB9038BA17C5ED2200F410BD /* slot1comp_rom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB9038AD17C5ED2200F410BD /* slot1comp_rom.cpp */; }; AB91D46B13BD013800462471 /* fs-linux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FEB21345AC8400AF11D1 /* fs-linux.cpp */; }; ABA6574B14511EC90077E5E9 /* cocoa_cheat.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABA6574A14511EC90077E5E9 /* cocoa_cheat.mm */; }; ABACB8DC1710B621003B845D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ABACB8DB1710B621003B845D /* AudioToolbox.framework */; }; @@ -424,7 +438,6 @@ ABB3C6781501C04F00E0C22E /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; ABB3C6791501C04F00E0C22E /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; ABB3C67A1501C04F00E0C22E /* slot1_retail_nand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */; }; - ABB3C67B1501C04F00E0C22E /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; ABB3C67C1501C04F00E0C22E /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; ABB3C67D1501C04F00E0C22E /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; ABB3C67E1501C04F00E0C22E /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */; }; @@ -581,7 +594,6 @@ ABD1FEFE1345AC8400AF11D1 /* wifi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FECF1345AC8400AF11D1 /* wifi.cpp */; }; ABD1FF0B1345AC9C00AF11D1 /* slot1_none.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */; }; ABD1FF0C1345AC9C00AF11D1 /* slot1_r4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */; }; - ABD1FF0D1345AC9C00AF11D1 /* slot1_retail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */; }; ABD1FF0E1345AC9C00AF11D1 /* slot2_expMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */; }; ABD1FF0F1345AC9C00AF11D1 /* slot2_gbagame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */; }; ABD1FF101345AC9C00AF11D1 /* slot2_guitarGrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */; }; @@ -823,6 +835,14 @@ AB901BE21420707800348EEC /* Chinese */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; lineEnding = 0; name = Chinese; path = translations/Chinese.lproj/Localizable.strings; sourceTree = ""; }; AB901BE31420707D00348EEC /* Norwegian */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; lineEnding = 0; name = Norwegian; path = translations/Norwegian.lproj/Localizable.strings; sourceTree = ""; }; AB901BE41420708200348EEC /* Romanian */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; lineEnding = 0; name = Romanian; path = translations/Romanian.lproj/Localizable.strings; sourceTree = ""; }; + AB9038A417C5ECFD00F410BD /* advanscene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = advanscene.h; sourceTree = ""; }; + AB9038A517C5ECFD00F410BD /* advanscene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = advanscene.cpp; sourceTree = ""; }; + AB9038A917C5ED2200F410BD /* slot1_retail_auto.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_auto.cpp; sourceTree = ""; }; + AB9038AA17C5ED2200F410BD /* slot1_retail_mcrom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail_mcrom.cpp; sourceTree = ""; }; + AB9038AB17C5ED2200F410BD /* slot1comp_mc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_mc.cpp; sourceTree = ""; }; + AB9038AC17C5ED2200F410BD /* slot1comp_mc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_mc.h; sourceTree = ""; }; + AB9038AD17C5ED2200F410BD /* slot1comp_rom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1comp_rom.cpp; sourceTree = ""; }; + AB9038AE17C5ED2200F410BD /* slot1comp_rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slot1comp_rom.h; sourceTree = ""; }; AB9971CE134EDA0800531BA7 /* cocoa_globals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cocoa_globals.h; sourceTree = ""; }; ABA6574914511EC90077E5E9 /* cocoa_cheat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cocoa_cheat.h; sourceTree = ""; }; ABA6574A14511EC90077E5E9 /* cocoa_cheat.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = cocoa_cheat.mm; sourceTree = ""; }; @@ -984,7 +1004,6 @@ ABD1FECF1345AC8400AF11D1 /* wifi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = wifi.cpp; path = ../wifi.cpp; sourceTree = SOURCE_ROOT; }; ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_none.cpp; sourceTree = ""; }; ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_r4.cpp; sourceTree = ""; }; - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot1_retail.cpp; sourceTree = ""; }; ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_expMemory.cpp; sourceTree = ""; }; ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_gbagame.cpp; sourceTree = ""; }; ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slot2_guitarGrip.cpp; sourceTree = ""; }; @@ -1598,8 +1617,11 @@ children = ( ABD1FF001345AC9B00AF11D1 /* slot1_none.cpp */, ABD1FF011345AC9B00AF11D1 /* slot1_r4.cpp */, + AB9038A917C5ED2200F410BD /* slot1_retail_auto.cpp */, + AB9038AA17C5ED2200F410BD /* slot1_retail_mcrom.cpp */, AB6FBEF5139B6258007BB045 /* slot1_retail_nand.cpp */, - ABD1FF021345AC9B00AF11D1 /* slot1_retail.cpp */, + AB9038AB17C5ED2200F410BD /* slot1comp_mc.cpp */, + AB9038AD17C5ED2200F410BD /* slot1comp_rom.cpp */, ABD1FF031345AC9B00AF11D1 /* slot2_expMemory.cpp */, ABD1FF041345AC9B00AF11D1 /* slot2_gbagame.cpp */, ABD1FF051345AC9B00AF11D1 /* slot2_guitarGrip.cpp */, @@ -1608,6 +1630,8 @@ ABD1FF081345AC9C00AF11D1 /* slot2_paddle.cpp */, ABD1FF091345AC9C00AF11D1 /* slot2_piano.cpp */, ABD1FF0A1345AC9C00AF11D1 /* slot2_rumblepak.cpp */, + AB9038AC17C5ED2200F410BD /* slot1comp_mc.h */, + AB9038AE17C5ED2200F410BD /* slot1comp_rom.h */, ); name = addons; path = ../addons; @@ -1630,6 +1654,7 @@ ABD1FF211345ACBF00AF11D1 /* decrypt */, ABD1FF2E1345ACBF00AF11D1 /* libfat */, ABE670241415DE6C00E8E4C9 /* tinyxml */, + AB9038A517C5ECFD00F410BD /* advanscene.cpp */, ABD1FF1D1345ACBF00AF11D1 /* ConvertUTF.c */, ABD1FF1F1345ACBF00AF11D1 /* datetime.cpp */, ABD1FF281345ACBF00AF11D1 /* dlditool.cpp */, @@ -1639,6 +1664,7 @@ ABD1FF4C1345ACBF00AF11D1 /* task.cpp */, ABD1FF4F1345ACBF00AF11D1 /* vfat.cpp */, ABD1FF511345ACBF00AF11D1 /* xstring.cpp */, + AB9038A417C5ECFD00F410BD /* advanscene.h */, ABD1FF1E1345ACBF00AF11D1 /* ConvertUTF.h */, ABD1FF201345ACBF00AF11D1 /* datetime.h */, ABD1FF2A1345ACBF00AF11D1 /* emufat.h */, @@ -2197,7 +2223,6 @@ ABD1FEF81345AC8400AF11D1 /* slot1.cpp in Sources */, ABD1FF0B1345AC9C00AF11D1 /* slot1_none.cpp in Sources */, ABD1FF0C1345AC9C00AF11D1 /* slot1_r4.cpp in Sources */, - ABD1FF0D1345AC9C00AF11D1 /* slot1_retail.cpp in Sources */, AB6FBEF6139B6258007BB045 /* slot1_retail_nand.cpp in Sources */, ABCFA9F5178BDE920030C8BA /* encrypt.cpp in Sources */, ABD1FF0E1345AC9C00AF11D1 /* slot2_expMemory.cpp in Sources */, @@ -2211,6 +2236,7 @@ ABD1041F1346652500AF11D1 /* sndOSX.cpp in Sources */, AB1F468413A0ADE400B80DE6 /* SndOut.cpp in Sources */, ABAD3E7813AF1D6D00502E1E /* SoundTouch.cpp in Sources */, + AB9038B017C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */, ABD1FEFA1345AC8400AF11D1 /* SPU.cpp in Sources */, ABAD3E7913AF1D6D00502E1E /* sse_optimized.cpp in Sources */, ABD1FF671345ACBF00AF11D1 /* task.cpp in Sources */, @@ -2219,6 +2245,7 @@ ABD1FEFC1345AC8400AF11D1 /* thumb_instructions.cpp in Sources */, AB1F469813A0AE2F00B80DE6 /* Timestretcher.cpp in Sources */, ABE6702B1415DE6C00E8E4C9 /* tinystr.cpp in Sources */, + AB9038B617C5ED2200F410BD /* slot1comp_mc.cpp in Sources */, ABE6702C1415DE6C00E8E4C9 /* tinyxml.cpp in Sources */, ABE6702D1415DE6C00E8E4C9 /* tinyxmlerror.cpp in Sources */, ABE6702E1415DE6C00E8E4C9 /* tinyxmlparser.cpp in Sources */, @@ -2227,6 +2254,7 @@ ABE5DE95143F781900835AD8 /* videofilter.cpp in Sources */, ABAD3E7B13AF1D6D00502E1E /* WavFile.cpp in Sources */, ABD1FEFE1345AC8400AF11D1 /* wifi.cpp in Sources */, + AB9038B317C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */, ABD1FF691345ACBF00AF11D1 /* xstring.cpp in Sources */, ABD104281346653B00AF11D1 /* main.m in Sources */, ABA6574B14511EC90077E5E9 /* cocoa_cheat.mm in Sources */, @@ -2248,6 +2276,7 @@ ABFE150914C92FF5005D6699 /* epx.cpp in Sources */, ABFE150A14C92FF5005D6699 /* hq2x.cpp in Sources */, ABFE150B14C92FF5005D6699 /* hq4x.cpp in Sources */, + AB9038A717C5ECFD00F410BD /* advanscene.cpp in Sources */, ABFE150D14C92FF5005D6699 /* lq2x.cpp in Sources */, ABFE150E14C92FF5005D6699 /* scanline.cpp in Sources */, AB1B9E631501A78000464647 /* coreaudiosound.cpp in Sources */, @@ -2287,6 +2316,7 @@ AB23567516C2FAD800DA782E /* OGLRender_3_2.cpp in Sources */, AB3A655F16CC5421001F5D4A /* EmuControllerDelegate.mm in Sources */, AB3A656216CC5438001F5D4A /* cocoa_GPU.mm in Sources */, + AB9038B917C5ED2200F410BD /* slot1comp_rom.cpp in Sources */, AB8967DA16D2ED0700F826F1 /* DisplayWindowController.mm in Sources */, AB29B33216D4BEBF000EF671 /* InputManager.mm in Sources */, AB82445C1704AE9A00B8EE20 /* utilities.c in Sources */, @@ -2310,6 +2340,7 @@ AB796CF515CDCBA200C59155 /* cache.cpp in Sources */, AB796CF615CDCBA200C59155 /* cheatSystem.cpp in Sources */, AB796CF715CDCBA200C59155 /* common.cpp in Sources */, + AB9038B517C5ED2200F410BD /* slot1comp_mc.cpp in Sources */, AB796CF815CDCBA200C59155 /* cp15.cpp in Sources */, AB796CF915CDCBA200C59155 /* cpu_detect_x86_gcc.cpp in Sources */, AB796CFA15CDCBA200C59155 /* crc.cpp in Sources */, @@ -2322,6 +2353,7 @@ AB796D0115CDCBA200C59155 /* dlditool.cpp in Sources */, AB796D0215CDCBA200C59155 /* driver.cpp in Sources */, AB796D0315CDCBA200C59155 /* emufat.cpp in Sources */, + AB9038B217C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */, AB796D0415CDCBA200C59155 /* emufile.cpp in Sources */, AB796D0515CDCBA200C59155 /* fatdir.cpp in Sources */, AB796D0615CDCBA200C59155 /* fatfile.cpp in Sources */, @@ -2334,6 +2366,7 @@ AB796D0D15CDCBA200C59155 /* fs-linux.cpp in Sources */, AB796D0E15CDCBA200C59155 /* gfx3d.cpp in Sources */, AB796D0F15CDCBA200C59155 /* GPU.cpp in Sources */, + AB9038AF17C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */, AB796D1015CDCBA200C59155 /* GPU_osd_stub.cpp in Sources */, AB796D1115CDCBA200C59155 /* guid.cpp in Sources */, AB796D1215CDCBA200C59155 /* header.cpp in Sources */, @@ -2347,6 +2380,7 @@ AB796D1A15CDCBA200C59155 /* MMU.cpp in Sources */, AB796D1B15CDCBA200C59155 /* mmx_optimized.cpp in Sources */, AB796D1C15CDCBA200C59155 /* movie.cpp in Sources */, + AB9038B817C5ED2200F410BD /* slot1comp_rom.cpp in Sources */, AB796D1D15CDCBA200C59155 /* NDSSystem.cpp in Sources */, AB796D1E15CDCBA200C59155 /* OGLRender.cpp in Sources */, AB796D1F15CDCBA200C59155 /* partition.cpp in Sources */, @@ -2361,7 +2395,6 @@ AB796D2815CDCBA200C59155 /* slot1.cpp in Sources */, AB796D2915CDCBA200C59155 /* slot1_none.cpp in Sources */, AB796D2A15CDCBA200C59155 /* slot1_r4.cpp in Sources */, - AB796D2B15CDCBA200C59155 /* slot1_retail.cpp in Sources */, AB796D2C15CDCBA200C59155 /* slot1_retail_nand.cpp in Sources */, AB796D2D15CDCBA200C59155 /* slot2_expMemory.cpp in Sources */, AB796D2E15CDCBA200C59155 /* slot2_gbagame.cpp in Sources */, @@ -2380,6 +2413,7 @@ AB796D3B15CDCBA200C59155 /* TDStretch.cpp in Sources */, AB796D3C15CDCBA200C59155 /* texcache.cpp in Sources */, AB796D3D15CDCBA200C59155 /* thumb_instructions.cpp in Sources */, + AB9038A617C5ECFD00F410BD /* advanscene.cpp in Sources */, AB796D3E15CDCBA200C59155 /* Timestretcher.cpp in Sources */, AB796D3F15CDCBA200C59155 /* tinystr.cpp in Sources */, AB796D4015CDCBA200C59155 /* tinyxml.cpp in Sources */, @@ -2472,9 +2506,9 @@ ABB3C6761501C04F00E0C22E /* cocoa_util.mm in Sources */, ABB3C6771501C04F00E0C22E /* cocoa_videofilter.mm in Sources */, ABB3C6781501C04F00E0C22E /* slot1_none.cpp in Sources */, + AB9038B417C5ED2200F410BD /* slot1_retail_mcrom.cpp in Sources */, ABB3C6791501C04F00E0C22E /* slot1_r4.cpp in Sources */, ABB3C67A1501C04F00E0C22E /* slot1_retail_nand.cpp in Sources */, - ABB3C67B1501C04F00E0C22E /* slot1_retail.cpp in Sources */, ABB3C67C1501C04F00E0C22E /* slot2_expMemory.cpp in Sources */, ABB3C67D1501C04F00E0C22E /* slot2_gbagame.cpp in Sources */, ABB3C67E1501C04F00E0C22E /* slot2_guitarGrip.cpp in Sources */, @@ -2493,6 +2527,7 @@ ABB3C68B1501C04F00E0C22E /* AAFilter.cpp in Sources */, ABB3C68C1501C04F00E0C22E /* cpu_detect_x86_gcc.cpp in Sources */, ABB3C68D1501C04F00E0C22E /* FIFOSampleBuffer.cpp in Sources */, + AB9038A817C5ECFD00F410BD /* advanscene.cpp in Sources */, ABB3C68E1501C04F00E0C22E /* FIRFilter.cpp in Sources */, ABB3C68F1501C04F00E0C22E /* mmx_optimized.cpp in Sources */, ABB3C6901501C04F00E0C22E /* RateTransposer.cpp in Sources */, @@ -2523,6 +2558,7 @@ ABB3C6A91501C04F00E0C22E /* tinyxmlparser.cpp in Sources */, ABB3C6AA1501C04F00E0C22E /* ConvertUTF.c in Sources */, ABB3C6AB1501C04F00E0C22E /* datetime.cpp in Sources */, + AB9038B117C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */, ABB3C6AC1501C04F00E0C22E /* dlditool.cpp in Sources */, ABB3C6AD1501C04F00E0C22E /* emufat.cpp in Sources */, ABB3C6AE1501C04F00E0C22E /* guid.cpp in Sources */, @@ -2562,6 +2598,7 @@ ABB3C6D11501C04F00E0C22E /* slot1.cpp in Sources */, ABB3C6D31501C04F00E0C22E /* SPU.cpp in Sources */, ABB3C6D41501C04F00E0C22E /* texcache.cpp in Sources */, + AB9038BA17C5ED2200F410BD /* slot1comp_rom.cpp in Sources */, ABB3C6D51501C04F00E0C22E /* thumb_instructions.cpp in Sources */, ABB3C6D61501C04F00E0C22E /* version.cpp in Sources */, ABB3C6D71501C04F00E0C22E /* wifi.cpp in Sources */, @@ -2598,6 +2635,7 @@ AB405692169F5DCC0016AC3E /* x86operand.cpp in Sources */, AB405695169F5DCC0016AC3E /* x86util.cpp in Sources */, AB68A0DD16B139BC00DE0546 /* OGLRender_3_2.cpp in Sources */, + AB9038B717C5ED2200F410BD /* slot1comp_mc.cpp in Sources */, AB3A656316CC5438001F5D4A /* cocoa_GPU.mm in Sources */, AB82445D1704AE9A00B8EE20 /* utilities.c in Sources */, AB010060170D07B000D70FBE /* InputProfileController.mm in Sources */, diff --git a/desmume/src/cocoa/cocoa_core.mm b/desmume/src/cocoa/cocoa_core.mm index 8a9b381c9..e261e8b66 100644 --- a/desmume/src/cocoa/cocoa_core.mm +++ b/desmume/src/cocoa/cocoa_core.mm @@ -99,7 +99,7 @@ static BOOL isCoreStarted = NO; emuFlagDebugConsole = NO; emuFlagEmulateEnsata = NO; - slot1DeviceType = NDS_SLOT1_RETAIL; + slot1DeviceType = NDS_SLOT1_RETAIL_AUTO; slot1StatusText = NSSTRING_STATUS_EMULATION_NOT_RUNNING; spinlockMasterExecute = OS_SPINLOCK_INIT; @@ -687,7 +687,7 @@ static BOOL isCoreStarted = NO; [self setSlot1StatusText:NSSTRING_STATUS_SLOT1_NO_DEVICE]; break; - case NDS_SLOT1_RETAIL: + case NDS_SLOT1_RETAIL_AUTO: [self setSlot1StatusText:NSSTRING_STATUS_SLOT1_RETAIL_INSERTED]; break; @@ -699,6 +699,10 @@ static BOOL isCoreStarted = NO; [self setSlot1StatusText:NSSTRING_STATUS_SLOT1_R4_INSERTED]; break; + case NDS_SLOT1_RETAIL_MCROM: + [self setSlot1StatusText:NSSTRING_STATUS_SLOT1_STANDARD_INSERTED]; + break; + default: [self setSlot1StatusText:NSSTRING_STATUS_SLOT1_UNKNOWN_STATE]; break; diff --git a/desmume/src/cocoa/cocoa_globals.h b/desmume/src/cocoa/cocoa_globals.h index a27c4b3f9..69aad9ca1 100644 --- a/desmume/src/cocoa/cocoa_globals.h +++ b/desmume/src/cocoa/cocoa_globals.h @@ -102,9 +102,10 @@ #define NSSTRING_STATUS_EMULATION_NOT_RUNNING NSLocalizedString(@"Emulation is not running.", nil) #define NSSTRING_STATUS_SLOT1_UNKNOWN_STATE NSLocalizedString(@"Unknown state.", nil) #define NSSTRING_STATUS_SLOT1_NO_DEVICE NSLocalizedString(@"No device inserted.", nil) -#define NSSTRING_STATUS_SLOT1_RETAIL_INSERTED NSLocalizedString(@"Retail cartridge inserted.", nil) -#define NSSTRING_STATUS_SLOT1_RETAIL_NAND_INSERTED NSLocalizedString(@"Retail cartridge (with NAND flash) inserted.", nil) +#define NSSTRING_STATUS_SLOT1_RETAIL_INSERTED NSLocalizedString(@"Retail cartridge inserted. (Auto-detect)", nil) +#define NSSTRING_STATUS_SLOT1_RETAIL_NAND_INSERTED NSLocalizedString(@"Retail cartridge w/ NAND flash inserted.", nil) #define NSSTRING_STATUS_SLOT1_R4_INSERTED NSLocalizedString(@"R4 cartridge interface inserted.", nil) +#define NSSTRING_STATUS_SLOT1_STANDARD_INSERTED NSLocalizedString(@"Standard retail cartridge inserted.", nil) #define NSSTRING_DISPLAYMODE_MAIN NSLocalizedString(@"Main", nil) #define NSSTRING_DISPLAYMODE_TOUCH NSLocalizedString(@"Touch", nil) diff --git a/desmume/src/cocoa/translations/English.lproj/MainMenu.strings b/desmume/src/cocoa/translations/English.lproj/MainMenu.strings index cca7b21c9..676a414c0 100644 Binary files a/desmume/src/cocoa/translations/English.lproj/MainMenu.strings and b/desmume/src/cocoa/translations/English.lproj/MainMenu.strings differ diff --git a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib index 0413e45cd..8efc6bf81 100644 --- a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib +++ b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib @@ -1,4274 +1,4235 @@ - - 1050 - 12D78 - 3084 - 1187.37 - 626.00 - - com.apple.InterfaceBuilder.CocoaPlugin - 3084 - - - YES - NSArrayController - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSDatePicker - NSDatePickerCell - NSDrawer - NSImageCell - NSImageView - NSMatrix - NSMenu - NSMenuItem - NSNumberFormatter - NSObjectController - NSOutlineView - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSSearchField - NSSearchFieldCell - NSSlider - NSSliderCell - NSStepper - NSStepperCell - NSTabView - NSTabViewItem - NSTableColumn - NSTableHeaderView - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSToolbar - NSToolbarFlexibleSpaceItem - NSToolbarItem - NSToolbarSpaceItem - NSUserDefaultsController - NSView - NSWindowTemplate - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - YES - - NSApplication - - - FirstResponder - - - NSApplication - - - MainMenu - - YES - - - DeSmuME - - 1048576 - 2147483647 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - submenuAction: - - DeSmuME - - YES - - - About DeSmuME - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Preferences… - , - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Services - - 1048576 - 2147483647 - - - submenuAction: - - Services - - YES - - _NSServicesMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Hide DeSmuME - h - 1048576 - 2147483647 - - - - - - Hide Others - h - 1572864 - 2147483647 - - - - - - Show All - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Quit DeSmuME - q - 1048576 - 2147483647 - - - - - _NSAppleMenu - - - - - File - - 1048576 - 2147483647 - - - submenuAction: - - File - - YES - - - New Display Window - n - 1048576 - 2147483647 - - - - - - Load ROM… - o - 1048576 - 2147483647 - - - - - - Load Recent ROM - - 1048576 - 2147483647 - - - submenuAction: - - Load Recent ROM - - YES - - - Clear Menu - - 1048576 - 2147483647 - - - - - _NSRecentDocumentsMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Close Window - w - 1048576 - 2147483647 - - - - - - Unload ROM - w - 1572864 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - ROM Info - i - 1048576 - 2147483647 - - - - - - Reveal ROM in Finder - - 2147483647 - - - - - - Reveal Game Data Folder in Finder - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Open State File... - O - 1048576 - 2147483647 - - - - - - Close State File - W - 1048576 - 2147483647 - - - - - - Save State File - s - 1048576 - 2147483647 - - - - - - Save State File As… - S - 1179648 - 2147483647 - - - - - - Revert State File to Saved - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Load State Slot - - 2147483647 - - - submenuAction: - - Load State Slot - - YES - - - - - - Save State Slot - - 2147483647 - - - submenuAction: - - Save State Slot - - YES - - - - - - YES - YES - - - 2147483647 - - - - - - Import ROM Save File... - - 2147483647 - - - - - - Export ROM Save File... - - 2147483647 - - - - - - - - - Edit - - 2147483647 - - - submenuAction: - - Edit - - YES - - - Undo - z - 1048576 - 2147483647 - - - - - - Redo - Z - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Cut - x - 1048576 - 2147483647 - - - - - - Copy - c - 1048576 - 2147483647 - - - - - - Paste - v - 1048576 - 2147483647 - - - - - - Delete - - 2147483647 - - - - - - Select All - a - 1048576 - 2147483647 - - - - - - - - - Emulation - - 2147483647 - - - submenuAction: - - Emulation - - YES - - - Speed Limit - - 2147483647 - - - submenuAction: - - Speed Limit - - YES - - - Half - - 2147483647 - - - 50 - - - - Normal - - 2147483647 - - - 100 - - - - Double - - 2147483647 - - - 200 - - - - YES - YES - - - 2147483647 - - - -1 - - - - Custom... - - 2147483647 - - - -1 - - - - - - - Disable Speed Limit - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Disable Auto Frame Skip - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show Cheat Manager... - - 2147483647 - - - - - - Disable Cheats - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Execute - - 2147483647 - - - - - - Reset - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show SLOT-1 Manager... - - 2147483647 - - - - - - ROM Save Type - - 2147483647 - - - submenuAction: - - ROM Save Type - - YES - - - Automatic - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - -1 - - - - EEPROM 4Kb - - 2147483647 - - - 1 - - - - EEPROM 64Kb - - 2147483647 - - - 2 - - - - EEPROM 512Kb - - 2147483647 - - - 3 - - - - FRAM 256Kb - - 2147483647 - - - 4 - - - - FLASH 2Mb - - 2147483647 - - - 5 - - - - FLASH 4Mb - - 2147483647 - - - 6 - - - - FLASH 8Mb - - 2147483647 - - - 7 - - - - FLASH 16Mb - - 2147483647 - - - 8 - - - - FLASH 32Mb - - 2147483647 - - - 9 - - - - FLASH 64Mb - - 2147483647 - - - 10 - - - - FLASH 128Mb - - 2147483647 - - - 11 - - - - FLASH 256Mb - - 2147483647 - - - 12 - - - - FLASH 512Mb - - 2147483647 - - - 13 - - - - - - - - - - View - - 1048576 - 2147483647 - - - submenuAction: - - View - - YES - - - Display Mode - - 2147483647 - - - submenuAction: - - Display Mode - - YES - - - Main - - 2147483647 - - - - - - Touch - - 2147483647 - - - 1 - - - - Combo - - 2147483647 - - - 2 - - - - - - - Display Size - - 2147483647 - - - submenuAction: - - Display Size - - YES - - - 1x - - 2147483647 - - - 100 - - - - 2x - - 2147483647 - - - 200 - - - - 3x - - 2147483647 - - - 300 - - - - 4x - - 2147483647 - - - 400 - - - - 5x - - 2147483647 - - - 500 - - - - - - - Display Rotation - - 2147483647 - - - submenuAction: - - Display Rotation - - YES - - - Rotate Left - - 2147483647 - - - -90 - - - - Rotate Right - - 2147483647 - - - 90 - - - - YES - YES - - - 2147483647 - - - - - - 0º - - 2147483647 - - - - - - 90º - - 2147483647 - - - 90 - - - - 180º - - 2147483647 - - - 180 - - - - 270º - - 2147483647 - - - 270 - - - - YES - YES - - - 2147483647 - - - - - - Custom... - - 2147483647 - - - -1 - - - - - - - Display Orientation - - 2147483647 - - - submenuAction: - - Display Orientation - - YES - - - Vertical - - 2147483647 - - - - - - Horizontal - - 2147483647 - - - 1 - - - - - - - Display Order - - 2147483647 - - - submenuAction: - - Display Order - - YES - - - Main Screen First - - 2147483647 - - - - - - Touch Screen First - - 2147483647 - - - 1 - - - - - - - Display Separation - - 2147483647 - - - submenuAction: - - Display Separation - - YES - - - 0% - - 2147483647 - - - - - - 50% - - 2147483647 - - - 50 - - - - 100% - - 2147483647 - - - 100 - - - - 150% - - 2147483647 - - - 150 - - - - 200% - - 2147483647 - - - 200 - - - - YES - YES - - - 2147483647 - - - - - - Custom... - - 2147483647 - - - -1 - - - - - - - Display Video Output - - 2147483647 - - - submenuAction: - - Display Video Output - - YES - - - Show Settings... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Use Bilinear Filtered Output - - 2147483647 - - - - - - Use Vertical Sync - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - None - - 2147483647 - - - - - - LQ2x - - 2147483647 - - - 1 - - - - LQ2xS - - 2147483647 - - - 2 - - - - HQ2x - - 2147483647 - - - 3 - - - - HQ2xS - - 2147483647 - - - 4 - - - - HQ4x - - 2147483647 - - - 5 - - - - HQ4xS - - 2147483647 - - - 18 - - - - 2xSaI - - 2147483647 - - - 6 - - - - Super 2xSaI - - 2147483647 - - - 7 - - - - Super Eagle - - 2147483647 - - - 8 - - - - Scanline - - 2147483647 - - - 9 - - - - Bilinear - - 2147483647 - - - 10 - - - - Nearest 2x - - 2147483647 - - - 11 - - - - Nearest 1.5x - - 2147483647 - - - 12 - - - - Nearest+ 1.5x - - 2147483647 - - - 13 - - - - EPX - - 2147483647 - - - 14 - - - - EPX+ - - 2147483647 - - - 15 - - - - EPX 1.5x - - 2147483647 - - - 16 - - - - EPX+ 1.5x - - 2147483647 - - - 17 - - - - - - - YES - YES - - - 2147483647 - - - - - - Show 3D Rendering Settings... - - 2147483647 - - - - - - Show Emulation Settings... - - 2147483647 - - - - - - Show Sound Settings... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Enter Full Screen - f - 1310720 - 2147483647 - - - - - - Keep Minimum Display Size at 1x - - 2147483647 - - - - - - Show Status Bar - / - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show Toolbar - t - 1572864 - 2147483647 - - - - - - Customize Toolbar… - - 1048576 - 2147483647 - - - - - - - - - Tools - - 2147483647 - - - submenuAction: - - Tools - - YES - - - Save Screenshot As... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show GPU Layers... - - 2147483647 - - - - - - - - - Window - - 1048576 - 2147483647 - - - submenuAction: - - Window - - YES - - - Minimize - m - 1048576 - 2147483647 - - - - - - Zoom - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Bring All to Front - - 1048576 - 2147483647 - - - - - _NSWindowsMenu - - - - - Help - - 2147483647 - - - submenuAction: - - Help - - YES - - - DeSmuME Help - ? - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Go to Website... - - 2147483647 - - - - - - Go to Forums... - - 2147483647 - - - - - - Submit a Support Request... - - 2147483647 - - - - - - Submit a Bug Report... - - 2147483647 - - - - - _NSHelpMenu - - - - _NSMainMenu - - - Media - - 2147483647 - - - submenuAction: - - Media - - YES - - - New Movie Recording - - 2147483647 - - - - - - Open Movie... - - 2147483647 - - - - - - Open Recent Movie - - 2147483647 - - - submenuAction: - - Open Recent Movie - - YES - - - Clear Menu - - 2147483647 - - - - - - - - - Close Movie - - 2147483647 - - - - - - - - AppDelegate - - - EmuControllerDelegate - - - InputManager - - - 15 - 2 - {{81, 659}, {550, 450}} - 1148716032 - About DeSmuME - NSWindow - - - - - 256 - - YES - - - 268 - - 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, 302}, {128, 128}} - - YES - - 134217728 - 33554432 - - NSImage - NSApplicationIcon - - 0 - 1 - 0 - NO - - NO - YES - - - - 18 - {{13, 10}, {524, 290}} - - - YES - - 1 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 67119109 - 0 - - - 3 - MQA - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - - 1 - - 6 - {495, 10000000} - - - - {490, 244} - - - - - - {4, 5} - - 79691776 - - YES - - YES - - - - file://localhost/Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 2 - - - - 256 - {{490, 0}, {15, 244}} - - NO - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - - Read Me - - 6 - System - controlColor - - - - - - 2 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 67119109 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - - - - 256 - {{490, 0}, {15, 244}} - - NO - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - License - - - - - Item 2 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 67119109 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - - - - 256 - {{490, 0}, {15, 244}} - - NO - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - Authors - - - - - Item 3 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 67119109 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - - - - 256 - {{490, 0}, {15, 244}} - - NO - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - Change Log - - - - - - - LucidaGrande - 13 - 1044 - - 0 - YES - YES - - YES - - - - - - 270 - {{153, 374}, {380, 56}} - - YES - - 69206017 - 4198400 - - - App Description - - - - 6 - System - controlTextColor - - - - NO - - - - 270 - {{156, 302}, {374, 64}} - - YES - - 73400321 - 4329472 - - - LucidaGrande - 11 - 3100 - - Build Info - - YES - - - - NO - - - {550, 450} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 7 - 2 - {{121, 962}, {400, 100}} - 1685588992 - DeSmuME Preferences - NSWindow - - - 7F8262D5-9D3C-423C-B7C5-79385DDE5A70 - - - YES - YES - NO - NO - 1 - 1 - - YES - - YES - 8DD2F943-8717-4EC3-A3C5-30068405F029 - A9C4AA28-77F8-4AD3-96D8-A67306997B4C - AC584A31-E187-4BC3-9981-D18A2C8553F7 - C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A - E30B98EC-D044-488C-A4E0-5BCE53366462 - NSToolbarFlexibleSpaceItem - NSToolbarSpaceItem - - - YES - - - 8DD2F943-8717-4EC3-A3C5-30068405F029 - - Input - Input - - - - NSImage - Icon_Input_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - A9C4AA28-77F8-4AD3-96D8-A67306997B4C - - General - General - - - - NSImage - NSPreferencesGeneral - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - AC584A31-E187-4BC3-9981-D18A2C8553F7 - - Emulation - Emulation - - - - NSImage - Icon_Emulation_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A - - Sound - Sound - - - - NSImage - Icon_Speaker_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - E30B98EC-D044-488C-A4E0-5BCE53366462 - - Display - Display - - - - NSImage - Icon_ShowHUD_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - NSToolbarFlexibleSpaceItem - - Flexible Space - - - - - - {1, 5} - {20000, 32} - YES - YES - -1 - YES - 0 - - YES - YES - - - 1048576 - 2147483647 - - - - - - NSToolbarSpaceItem - - Space - - - - - - {32, 5} - {32, 32} - YES - YES - -1 - YES - 0 - - YES - YES - - - 1048576 - 2147483647 - - - - - - - - YES - - - - - - - - - - YES - - - - - - - - - YES - - - - - - 256 - {400, 100} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - - YES - - - - 268 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{175, 50}, {199, 21}} - - YES - - 613417024 - 272634880 - - - File Name - - - - - NO - - - - 268 - {{376, 43}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 53}, {155, 17}} - - YES - - 68157504 - 71304192 - ADVANsCEne Database: - - - - - - NO - - - - 268 - {{15, 14}, {454, 28}} - - YES - - 69206017 - 138543104 - WW91IGNhbiBkb3dubG9hZCB0aGUgbGF0ZXN0IEFEVkFOc0NFbmUgRGF0YWJhc2UgZnJvbToKaHR0cDov + + 1050 + 12D78 + 851 + 1187.37 + 626.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 851 + + + YES + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSApplication + + + FirstResponder + + + NSApplication + + + MainMenu + + YES + + + DeSmuME + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + submenuAction: + + DeSmuME + + YES + + + About DeSmuME + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Preferences… + , + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Services + + 1048576 + 2147483647 + + + submenuAction: + + Services + + YES + + _NSServicesMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Hide DeSmuME + h + 1048576 + 2147483647 + + + + + + Hide Others + h + 1572864 + 2147483647 + + + + + + Show All + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Quit DeSmuME + q + 1048576 + 2147483647 + + + + + _NSAppleMenu + + + + + File + + 1048576 + 2147483647 + + + submenuAction: + + File + + YES + + + New Display Window + n + 1048576 + 2147483647 + + + + + + Load ROM… + o + 1048576 + 2147483647 + + + + + + Load Recent ROM + + 1048576 + 2147483647 + + + submenuAction: + + Load Recent ROM + + YES + + + Clear Menu + + 1048576 + 2147483647 + + + + + _NSRecentDocumentsMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Close Window + w + 1048576 + 2147483647 + + + + + + Unload ROM + w + 1572864 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + ROM Info + i + 1048576 + 2147483647 + + + + + + Reveal ROM in Finder + + 2147483647 + + + + + + Reveal Game Data Folder in Finder + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Open State File... + O + 1048576 + 2147483647 + + + + + + Close State File + W + 1048576 + 2147483647 + + + + + + Save State File + s + 1048576 + 2147483647 + + + + + + Save State File As… + S + 1179648 + 2147483647 + + + + + + Revert State File to Saved + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Load State Slot + + 2147483647 + + + submenuAction: + + Load State Slot + + YES + + + + + + Save State Slot + + 2147483647 + + + submenuAction: + + Save State Slot + + YES + + + + + + YES + YES + + + 2147483647 + + + + + + Import ROM Save File... + + 2147483647 + + + + + + Export ROM Save File... + + 2147483647 + + + + + + + + + Edit + + 2147483647 + + + submenuAction: + + Edit + + YES + + + Undo + z + 1048576 + 2147483647 + + + + + + Redo + Z + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Cut + x + 1048576 + 2147483647 + + + + + + Copy + c + 1048576 + 2147483647 + + + + + + Paste + v + 1048576 + 2147483647 + + + + + + Delete + + 2147483647 + + + + + + Select All + a + 1048576 + 2147483647 + + + + + + + + + Emulation + + 2147483647 + + + submenuAction: + + Emulation + + YES + + + Speed Limit + + 2147483647 + + + submenuAction: + + Speed Limit + + YES + + + Half + + 2147483647 + + + 50 + + + + Normal + + 2147483647 + + + 100 + + + + Double + + 2147483647 + + + 200 + + + + YES + YES + + + 2147483647 + + + -1 + + + + Custom... + + 2147483647 + + + -1 + + + + + + + Disable Speed Limit + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Disable Auto Frame Skip + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show Cheat Manager... + + 2147483647 + + + + + + Disable Cheats + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Execute + + 2147483647 + + + + + + Reset + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show SLOT-1 Manager... + + 2147483647 + + + + + + ROM Save Type + + 2147483647 + + + submenuAction: + + ROM Save Type + + YES + + + Automatic + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + -1 + + + + EEPROM 4Kb + + 2147483647 + + + 1 + + + + EEPROM 64Kb + + 2147483647 + + + 2 + + + + EEPROM 512Kb + + 2147483647 + + + 3 + + + + FRAM 256Kb + + 2147483647 + + + 4 + + + + FLASH 2Mb + + 2147483647 + + + 5 + + + + FLASH 4Mb + + 2147483647 + + + 6 + + + + FLASH 8Mb + + 2147483647 + + + 7 + + + + FLASH 16Mb + + 2147483647 + + + 8 + + + + FLASH 32Mb + + 2147483647 + + + 9 + + + + FLASH 64Mb + + 2147483647 + + + 10 + + + + FLASH 128Mb + + 2147483647 + + + 11 + + + + FLASH 256Mb + + 2147483647 + + + 12 + + + + FLASH 512Mb + + 2147483647 + + + 13 + + + + + + + + + + View + + 1048576 + 2147483647 + + + submenuAction: + + View + + YES + + + Display Mode + + 2147483647 + + + submenuAction: + + Display Mode + + YES + + + Main + + 2147483647 + + + + + + Touch + + 2147483647 + + + 1 + + + + Combo + + 2147483647 + + + 2 + + + + + + + Display Size + + 2147483647 + + + submenuAction: + + Display Size + + YES + + + 1x + + 2147483647 + + + 100 + + + + 2x + + 2147483647 + + + 200 + + + + 3x + + 2147483647 + + + 300 + + + + 4x + + 2147483647 + + + 400 + + + + 5x + + 2147483647 + + + 500 + + + + + + + Display Rotation + + 2147483647 + + + submenuAction: + + Display Rotation + + YES + + + Rotate Left + + 2147483647 + + + -90 + + + + Rotate Right + + 2147483647 + + + 90 + + + + YES + YES + + + 2147483647 + + + + + + 0º + + 2147483647 + + + + + + 90º + + 2147483647 + + + 90 + + + + 180º + + 2147483647 + + + 180 + + + + 270º + + 2147483647 + + + 270 + + + + YES + YES + + + 2147483647 + + + + + + Custom... + + 2147483647 + + + -1 + + + + + + + Display Orientation + + 2147483647 + + + submenuAction: + + Display Orientation + + YES + + + Vertical + + 2147483647 + + + + + + Horizontal + + 2147483647 + + + 1 + + + + + + + Display Order + + 2147483647 + + + submenuAction: + + Display Order + + YES + + + Main Screen First + + 2147483647 + + + + + + Touch Screen First + + 2147483647 + + + 1 + + + + + + + Display Separation + + 2147483647 + + + submenuAction: + + Display Separation + + YES + + + 0% + + 2147483647 + + + + + + 50% + + 2147483647 + + + 50 + + + + 100% + + 2147483647 + + + 100 + + + + 150% + + 2147483647 + + + 150 + + + + 200% + + 2147483647 + + + 200 + + + + YES + YES + + + 2147483647 + + + + + + Custom... + + 2147483647 + + + -1 + + + + + + + Display Video Output + + 2147483647 + + + submenuAction: + + Display Video Output + + YES + + + Show Settings... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Use Bilinear Filtered Output + + 2147483647 + + + + + + Use Vertical Sync + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + None + + 2147483647 + + + + + + LQ2x + + 2147483647 + + + 1 + + + + LQ2xS + + 2147483647 + + + 2 + + + + HQ2x + + 2147483647 + + + 3 + + + + HQ2xS + + 2147483647 + + + 4 + + + + HQ4x + + 2147483647 + + + 5 + + + + HQ4xS + + 2147483647 + + + 18 + + + + 2xSaI + + 2147483647 + + + 6 + + + + Super 2xSaI + + 2147483647 + + + 7 + + + + Super Eagle + + 2147483647 + + + 8 + + + + Scanline + + 2147483647 + + + 9 + + + + Bilinear + + 2147483647 + + + 10 + + + + Nearest 2x + + 2147483647 + + + 11 + + + + Nearest 1.5x + + 2147483647 + + + 12 + + + + Nearest+ 1.5x + + 2147483647 + + + 13 + + + + EPX + + 2147483647 + + + 14 + + + + EPX+ + + 2147483647 + + + 15 + + + + EPX 1.5x + + 2147483647 + + + 16 + + + + EPX+ 1.5x + + 2147483647 + + + 17 + + + + + + + YES + YES + + + 2147483647 + + + + + + Show 3D Rendering Settings... + + 2147483647 + + + + + + Show Emulation Settings... + + 2147483647 + + + + + + Show Sound Settings... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Enter Full Screen + f + 1310720 + 2147483647 + + + + + + Keep Minimum Display Size at 1x + + 2147483647 + + + + + + Show Status Bar + / + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show Toolbar + t + 1572864 + 2147483647 + + + + + + Customize Toolbar… + + 1048576 + 2147483647 + + + + + + + + + Tools + + 2147483647 + + + submenuAction: + + Tools + + YES + + + Save Screenshot As... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show GPU Layers... + + 2147483647 + + + + + + + + + Window + + 1048576 + 2147483647 + + + submenuAction: + + Window + + YES + + + Minimize + m + 1048576 + 2147483647 + + + + + + Zoom + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Bring All to Front + + 1048576 + 2147483647 + + + + + _NSWindowsMenu + + + + + Help + + 2147483647 + + + submenuAction: + + Help + + YES + + + DeSmuME Help + ? + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Go to Website... + + 2147483647 + + + + + + Go to Forums... + + 2147483647 + + + + + + Submit a Support Request... + + 2147483647 + + + + + + Submit a Bug Report... + + 2147483647 + + + + + _NSHelpMenu + + + + _NSMainMenu + + + Media + + 2147483647 + + + submenuAction: + + Media + + YES + + + New Movie Recording + + 2147483647 + + + + + + Open Movie... + + 2147483647 + + + + + + Open Recent Movie + + 2147483647 + + + submenuAction: + + Open Recent Movie + + YES + + + Clear Menu + + 2147483647 + + + + + + + + + Close Movie + + 2147483647 + + + + + + + + AppDelegate + + + EmuControllerDelegate + + + InputManager + + + 15 + 2 + {{81, 659}, {550, 450}} + 1148716032 + About DeSmuME + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + + 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, 302}, {128, 128}} + + YES + + 134217728 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + NO + YES + + + + 18 + {{13, 10}, {524, 290}} + + + YES + + 1 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + 3 + MQA + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + 6 + System + selectedTextBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + + 1 + + 6 + {495, 10000000} + + + + {490, 244} + + + + + + {4, 5} + + 79691776 + + YES + + YES + + + + file://localhost/Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff + + + + + 3 + MCAwAA + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + + Read Me + + 6 + System + controlColor + + + + + + 2 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + License + + + + + Item 2 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + Authors + + + + + Item 3 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + Change Log + + + + + + + LucidaGrande + 13 + 1040 + + 0 + YES + YES + + YES + + + + + + 270 + {{153, 374}, {380, 56}} + + YES + + 69206017 + 4198400 + + + App Description + + + + 6 + System + controlTextColor + + + + NO + + + + 270 + {{156, 302}, {374, 64}} + + YES + + 73400321 + 4329472 + + + LucidaGrande + 11 + 3088 + + Build Info + + YES + + + + NO + + + {550, 450} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 7 + 2 + {{121, 962}, {400, 100}} + 1685588992 + DeSmuME Preferences + NSWindow + + + 7F8262D5-9D3C-423C-B7C5-79385DDE5A70 + + + YES + YES + NO + NO + 1 + 1 + + YES + + YES + 8DD2F943-8717-4EC3-A3C5-30068405F029 + A9C4AA28-77F8-4AD3-96D8-A67306997B4C + AC584A31-E187-4BC3-9981-D18A2C8553F7 + C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A + E30B98EC-D044-488C-A4E0-5BCE53366462 + NSToolbarFlexibleSpaceItem + NSToolbarSpaceItem + + + YES + + + 8DD2F943-8717-4EC3-A3C5-30068405F029 + + Input + Input + + + + NSImage + Icon_Input_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + A9C4AA28-77F8-4AD3-96D8-A67306997B4C + + General + General + + + + NSImage + NSPreferencesGeneral + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + AC584A31-E187-4BC3-9981-D18A2C8553F7 + + Emulation + Emulation + + + + NSImage + Icon_Emulation_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A + + Sound + Sound + + + + NSImage + Icon_Speaker_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + E30B98EC-D044-488C-A4E0-5BCE53366462 + + Display + Display + + + + NSImage + Icon_ShowHUD_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + NSToolbarFlexibleSpaceItem + + Flexible Space + + + + + + {1, 5} + {20000, 32} + YES + YES + -1 + YES + 0 + + YES + YES + + + 1048576 + 2147483647 + + + + + + NSToolbarSpaceItem + + Space + + + + + + {32, 5} + {32, 32} + YES + YES + -1 + YES + 0 + + YES + YES + + + 1048576 + 2147483647 + + + + + + + + YES + + + + + + + + + + YES + + + + + + + + + YES + + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + {400, 100} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + + YES + + + + 268 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{175, 50}, {199, 21}} + + YES + + 613417024 + 272634880 + + + File Name + + + + + NO + + + + 268 + {{376, 43}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 53}, {155, 17}} + + YES + + 68157504 + 71304192 + ADVANsCEne Database: + + + + + + NO + + + + 268 + {{15, 14}, {454, 28}} + + YES + + 69206017 + 138543104 + WW91IGNhbiBkb3dubG9hZCB0aGUgbGF0ZXN0IEFEVkFOc0NFbmUgRGF0YWJhc2UgZnJvbToKaHR0cDov L3d3dy5hZHZhbnNjZW5lLmNvbS9vZmZsaW5lL2RhdGFzL0FEVkFOc0NFbmVfUlRvb2xEUy56aXA - - - - - - NO - - - {{1, 1}, {484, 81}} - - - - {{17, 16}, {486, 97}} - - {0, 0} - - 67108864 - 0 - ADVANsCEne Database - - - 6 - System - textBackgroundColor - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{148, 14}, {226, 21}} - - YES - - 613417024 - 272634880 - - - File Name - - - - - NO - - - - 268 - {{376, 7}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 17}, {128, 17}} - - YES - - 68157504 - 71304192 - R4 Cheat Database: - - - - - - NO - - - {{1, 1}, {484, 45}} - - - - {{17, 117}, {486, 61}} - - {0, 0} - - 67108864 - 0 - Cheat Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{92, 12}, {314, 18}} - - YES - - 67108864 - 0 - Do not show File Migration window on startup - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 268 - {{141, 33}, {217, 32}} - - YES - - 67108864 - 134217728 - Show File Migration Window - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {484, 75}} - - - - {{17, 182}, {486, 91}} - - {0, 0} - - 67108864 - 0 - User File Migration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 111}, {366, 18}} - - YES - - -2080374784 - 0 - Automatically Execute Emulation When Loading a ROM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 71}, {274, 18}} - - YES - - 67108864 - 0 - Automatically Load a ROM Upon Launch - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{34, 41}, {227, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Load Last Loaded ROM - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Load Selected ROM - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{114, 14}, {260, 21}} - - YES - - 613417024 - 272634880 - - - ROM Name - - - - - NO - - - - 268 - {{376, 7}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 17}, {94, 17}} - - YES - - 68157504 - 71304192 - Selected ROM: - - - - - - NO - - - {{1, 1}, {484, 137}} - - - - {{17, 277}, {486, 153}} - - {0, 0} - - 67108864 - 0 - ROM Behavior - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {520, 450} - NSView - - - - 268 - - YES - - - 268 - {{97, 463}, {96, 17}} - - YES - - 68157504 - 71304192 - Saved Profiles: - - - - - - NO - - - - 268 - {{195, 457}, {265, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - New... - - 2147483647 - 1 - - NSImage - NSActionTemplate - - - - _popUpItemAction: - -1 - - - YES - - InputConfigurationMenu - - YES - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{462, 457}, {116, 26}} - - YES - - -2076180416 - 134219776 - - - -2038284288 - 129 - - LucidaGrande - 13 - 16 - - - - 400 - 75 - - - YES - Actions - - 1048576 - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - View - - 2147483647 - - - _popUpItemAction: - - - - - Apply - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Rename - - 2147483647 - - - _popUpItemAction: - - - - - YES - Save - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Delete - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - YES - - - YES - 1 - YES - YES - 2 - - NO - - - - 274 - - YES - - - 2304 - - YES - - - 256 - {640, 394} - - YES - NO - YES - - - 256 - {640, 17} - - - - - - -2147483392 - {{584, 0}, {16, 17}} - - - - YES - - InputCommandTagColumn - 155 - 16 - 1000 - - 75497536 - 2048 - Set Command - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 68157504 - 132096 - Command - - - -2034483200 - 100 - - - - 200 - 25 - - 3 - YES - - - - InputDeviceColumn - 175 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Device - - - 6 - System - headerColor - - - - - - 70254657 - 136192 - Text Cell - - - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - InputSettingsSummaryColumn - 136 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Settings Summary - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - InputSettingsColumn - 69 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 605028416 - 134349824 - Settings - - - -2035007488 - 36 - - - 200 - 25 - - - - - RemoveInputColumn - 67 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 68157504 - 134349824 - Remove - - - -2035007488 - 36 - - - 200 - 25 - - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 1402994688 - - - InputPreferences - 0 - 15 - 0 - NO - 0 - 1 - NO - YES - - - {{1, 17}, {640, 394}} - - - - - 4 - - - - -2147483392 - {{584, 17}, {15, 102}} - - NO - - _doScroller: - 0.96411483253588515 - - - - -2147483392 - {{1, 420}, {624, 15}} - - NO - 1 - - _doScroller: - 0.99843505477308292 - - - - 2304 - - YES - - - {{1, 0}, {640, 17}} - - - - - 4 - - - - {{-1, 37}, {642, 412}} - - - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - {{197, 12}, {247, 17}} - - YES - - 605028416 - 171971584 - Click this area to map mouse input. - - LucidaGrande-Bold - 13 - 16 - - - - - - NO - - - {640, 495} - InputPrefsView - - - - 268 - - YES - - - 12 - {{13, 10}, {463, 401}} - - - YES - - 1 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{72, 44}, {84, 17}} - - - YES - - 68157504 - 71304192 - Display Size: - - - - - - NO - - - - 268 - {{44, 16}, {112, 17}} - - - YES - - 68157504 - 71304192 - Display Rotation: - - - - - - NO - - - - 268 - {{158, 38}, {126, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - 1x - - 2147483647 - 1 - - - _popUpItemAction: - 100 - - - YES - - OtherViews - - YES - - - - 2x - - 2147483647 - - - _popUpItemAction: - 200 - - - - - 3x - - 2147483647 - - - _popUpItemAction: - 300 - - - - - 4x - - 2147483647 - - - _popUpItemAction: - 400 - - - - - 5x - - 2147483647 - - - _popUpItemAction: - 500 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{289, 14}, {72, 22}} - - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumIntegerDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - #0.##º - +∞ - - - - #0.##º - #0.##º - - - - - - - - NaN - - YES - - - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - - YES - - - 6 - System - textColor - - - - NO - - - - 268 - {{63, 72}, {93, 17}} - - - YES - - 68157504 - 71304192 - Display Mode: - - - - - - NO - - - - 268 - {{158, 66}, {126, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Combo - - 2147483647 - 1 - - - _popUpItemAction: - 2 - - - YES - - OtherViews - - YES - - - Main - - 2147483647 - - - _popUpItemAction: - - - - - Touch - - 2147483647 - - - _popUpItemAction: - 1 - - - - - YES - - - 2 - 1 - YES - YES - 2 - - NO - - - - 268 - {{158, 11}, {126, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - 0º - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - 90º - - 1048576 - 2147483647 - - - _popUpItemAction: - 90 - - - - - 180º - - 1048576 - 2147483647 - - - _popUpItemAction: - 180 - - - - - 270º - - 2147483647 - - - _popUpItemAction: - 270 - - - - - YES - YES - - - 2147483647 - 1 - - - _popUpItemAction: - - - - - Custom - - 2147483647 - - - _popUpItemAction: - -1 - - - - - - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {429, 100}} - - - - - {{6, 206}, {431, 116}} - - - {0, 0} - - 67108864 - 0 - General Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {100, 38}} - - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Vertical - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Horizontal - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + NO + + + {{1, 1}, {484, 81}} + + + + {{17, 16}, {486, 97}} + + {0, 0} + + 67108864 + 0 + ADVANsCEne Database + + + 6 + System + textBackgroundColor + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{148, 14}, {226, 21}} + + YES + + 613417024 + 272634880 + + + File Name + + + + + NO + + + + 268 + {{376, 7}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 17}, {128, 17}} + + YES + + 68157504 + 71304192 + R4 Cheat Database: + + + + + + NO + + + {{1, 1}, {484, 45}} + + + + {{17, 117}, {486, 61}} + + {0, 0} + + 67108864 + 0 + Cheat Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{92, 12}, {314, 18}} + + YES + + 67108864 + 0 + Do not show File Migration window on startup + + + 1211912448 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + NO + + + + 268 + {{141, 33}, {217, 32}} + + YES + + 67108864 + 134217728 + Show File Migration Window + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {484, 75}} + + + + {{17, 182}, {486, 91}} + + {0, 0} + + 67108864 + 0 + User File Migration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 111}, {366, 18}} + + YES + + -2080374784 + 0 + Automatically Execute Emulation When Loading a ROM + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 71}, {274, 18}} + + YES + + 67108864 + 0 + Automatically Load a ROM Upon Launch + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{34, 41}, {227, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Load Last Loaded ROM + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Load Selected ROM + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{114, 14}, {260, 21}} + + YES + + 613417024 + 272634880 + + + ROM Name + + + + + NO + + + + 268 + {{376, 7}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 17}, {94, 17}} + + YES + + 68157504 + 71304192 + Selected ROM: + + + + + + NO + + + {{1, 1}, {484, 137}} + + + + {{17, 277}, {486, 153}} + + {0, 0} + + 67108864 + 0 + ROM Behavior + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {520, 450} + NSView + + + + 268 + + YES + + + 268 + {{97, 463}, {96, 17}} + + YES + + 68157504 + 71304192 + Saved Profiles: + + + + + + NO + + + + 268 + {{195, 457}, {265, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + New... + + 2147483647 + 1 + + NSImage + NSActionTemplate + + + + _popUpItemAction: + -1 + + + YES + + InputConfigurationMenu + + YES + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{462, 457}, {116, 26}} + + YES + + -2076180416 + 134219776 + + + -2038284288 + 129 + + LucidaGrande + 13 + 16 + + + + 400 + 75 + + + YES + Actions + + 1048576 + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + View + + 2147483647 + + + _popUpItemAction: + + + + + Apply + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Rename + + 2147483647 + + + _popUpItemAction: + + + + + YES + Save + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Delete + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + YES + + + YES + 1 + YES + YES + 2 + + NO + + + + 274 + + YES + + + 2304 + + YES + + + 256 + {640, 394} + + YES + NO + YES + + + 256 + {640, 17} + + + + + + -2147483392 + {{584, 0}, {16, 17}} + + + + YES + + InputCommandTagColumn + 155 + 16 + 1000 + + 75497536 + 2048 + Set Command + + + 3 + MC4zMzMzMzI5ODU2AA + + + 6 + System + headerTextColor + + + + + 68157504 + 132096 + Command + + + -2034483200 + 100 + + + + 200 + 25 + + 3 + YES + + + + InputDeviceColumn + 175 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Device + + + 6 + System + headerColor + + + + + + 70254657 + 136192 + Text Cell + + + + 6 + System + controlBackgroundColor + + + + + 3 + YES + + + + InputSettingsSummaryColumn + 136 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Settings Summary + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + InputSettingsColumn + 69 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 605028416 + 134349824 + Settings + + + -2035007488 + 36 + + + 200 + 25 + + + + + RemoveInputColumn + 67 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 68157504 + 134349824 + Remove + + + -2035007488 + 36 + + + 200 + 25 + + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 1402994688 + + + InputPreferences + 0 + 15 + 0 + NO + 0 + 1 + NO + YES + + + {{1, 17}, {640, 394}} + + + + + 4 + + + + -2147483392 + {{584, 17}, {15, 102}} + + NO + + _doScroller: + 0.96411483253588515 + + + + -2147483392 + {{1, 420}, {624, 15}} + + NO + 1 + + _doScroller: + 0.99843505477308292 + + + + 2304 + + YES + + + {{1, 0}, {640, 17}} + + + + + 4 + + + + {{-1, 37}, {642, 412}} + + + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + {{197, 12}, {247, 17}} + + YES + + 605028416 + 171971584 + Click this area to map mouse input. + + LucidaGrande-Bold + 13 + 16 + + + + + + NO + + + {640, 495} + InputPrefsView + + + + 268 + + YES + + + 12 + {{13, 10}, {463, 401}} + + + YES + + 1 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{72, 44}, {84, 17}} + + + YES + + 68157504 + 71304192 + Display Size: + + + + + + NO + + + + 268 + {{44, 16}, {112, 17}} + + + YES + + 68157504 + 71304192 + Display Rotation: + + + + + + NO + + + + 268 + {{158, 38}, {126, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + 1x + + 2147483647 + 1 + + + _popUpItemAction: + 100 + + + YES + + OtherViews + + YES + + + + 2x + + 2147483647 + + + _popUpItemAction: + 200 + + + + + 3x + + 2147483647 + + + _popUpItemAction: + 300 + + + + + 4x + + 2147483647 + + + _popUpItemAction: + 400 + + + + + 5x + + 2147483647 + + + _popUpItemAction: + 500 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{289, 14}, {72, 22}} + + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumIntegerDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + #0.##º + +∞ + + + + #0.##º + #0.##º + + + + + + + + NaN + + YES + + + YES + + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + + YES + + + 6 + System + textColor + + + + NO + + + + 268 + {{63, 72}, {93, 17}} + + + YES + + 68157504 + 71304192 + Display Mode: + + + + + + NO + + + + 268 + {{158, 66}, {126, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Combo + + 2147483647 + 1 + + + _popUpItemAction: + 2 + + + YES + + OtherViews + + YES + + + Main + + 2147483647 + + + _popUpItemAction: + + + + + Touch + + 2147483647 + + + _popUpItemAction: + 1 + + + + + YES + + + 2 + 1 + YES + YES + 2 + + NO + + + + 268 + {{158, 11}, {126, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + 0º + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + 90º + + 1048576 + 2147483647 + + + _popUpItemAction: + 90 + + + + + 180º + + 1048576 + 2147483647 + + + _popUpItemAction: + 180 + + + + + 270º + + 2147483647 + + + _popUpItemAction: + 270 + + + + + YES + YES + + + 2147483647 + 1 + + + _popUpItemAction: + + + + + Custom + + 2147483647 + + + _popUpItemAction: + -1 + + + + + + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {429, 100}} + + + + + {{6, 206}, {431, 116}} + + + {0, 0} + + 67108864 + 0 + General Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {100, 38}} + + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Vertical + + + 1211912448 + 0 + + NSRadioButton + + + + 200 + 25 + + + 67108864 + 0 + Horizontal + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4345,39 +4306,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {100, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {100, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4402,104 +4363,104 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {194, 62}} - - - - - {{15, 53}, {196, 78}} - - - {0, 0} - - 67108864 - 0 - Display Orientation - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {150, 38}} - - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Main Screen First - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Touch Screen First - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {194, 62}} + + + + + {{15, 53}, {196, 78}} + + + {0, 0} + + 67108864 + 0 + Display Orientation + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {150, 38}} + + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Main Screen First + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Touch Screen First + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4576,39 +4537,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {150, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {150, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4633,1494 +4594,1494 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {194, 62}} - - - - - {{218, 53}, {196, 78}} - - - {0, 0} - - 67108864 - 0 - Display Order - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{15, 18}, {126, 17}} - - - YES - - 68157504 - 4195328 - Display Separation: - - - - - - NO - - - - 268 - {{339, 16}, {72, 22}} - - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumIntegerDigits - minimum - multiplier - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - #0.#% - -∞ - - - #0.#% - +∞ - - - - #0.#% - #0.#% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - - YES - - - - NO - - - - 268 - {{144, 12}, {189, 26}} - - - YES - - -2080112384 - 0 - - - 200 - 0.0 - 0.0 - 0.0 - 5 - 1 - NO - NO - - NO - - - - 268 - {{305, 38}, {38, 11}} - - - YES - - 68157504 - 138675200 - 200% - - LucidaGrande - 9 - 3614 - - - - - - NO - - - - 268 - {{263, 38}, {38, 11}} - - - YES - - 68157504 - 138675200 - 150% - - - - - - NO - - - - 268 - {{220, 38}, {38, 11}} - - - YES - - 68157504 - 138675200 - 100% - - - - - - NO - - - - 268 - {{178, 38}, {38, 11}} - - - YES - - 68157504 - 138675200 - 50% - - - - - - NO - - - - 268 - {{137, 38}, {38, 11}} - - - YES - - 68157504 - 138675200 - 0% - - - - - - NO - - - {{1, 1}, {429, 141}} - - - - - {{6, 45}, {431, 157}} - - - {0, 0} - - 67108864 - 0 - Combo Display Layout - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {443, 355}} - - - - Display Views - - - - - 2 - - - 256 - - YES - - - 268 - {{119, 278}, {151, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - None - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - LQ2x - - 2147483647 - - - _popUpItemAction: - 1 - - - - - LQ2xS - - 2147483647 - - - _popUpItemAction: - 2 - - - - - HQ2x - - 2147483647 - - - _popUpItemAction: - 3 - - - - - HQ2xS - - 2147483647 - - - _popUpItemAction: - 4 - - - - - HQ4x - - 2147483647 - - - _popUpItemAction: - 5 - - - - - HQ4xS - - 2147483647 - - - _popUpItemAction: - 18 - - - - - 2xSaI - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Super 2xSaI - - 2147483647 - - - _popUpItemAction: - 7 - - - - - Super Eagle - - 2147483647 - - - _popUpItemAction: - 8 - - - - - Scanline - - 2147483647 - - - _popUpItemAction: - 9 - - - - - Bilinear - - 2147483647 - - - _popUpItemAction: - 10 - - - - - Nearest 2x - - 2147483647 - - - _popUpItemAction: - 11 - - - - - Nearest 1.5x - - 2147483647 - - - _popUpItemAction: - 12 - - - - - Nearest+ 1.5x - - 2147483647 - - - _popUpItemAction: - 13 - - - - - EPX - - 2147483647 - - - _popUpItemAction: - 14 - - - - - EPX+ - - 2147483647 - - - _popUpItemAction: - 15 - - - - - EPX 1.5x - - 2147483647 - - - _popUpItemAction: - 16 - - - - - EPX+ 1.5x - - 2147483647 - - - _popUpItemAction: - 17 - - - - YES - - - 1 - YES - YES - 2 - - NO - - - - 268 - - 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 - - - {{118, 9}, {262, 262}} - - YES - - 671088640 - 33554432 - 0 - 3 - 2 - NO - - NO - YES - - - - 268 - {{10, 251}, {106, 17}} - - - YES - - 68157504 - 71304192 - Preview: - - - - - - NO - - - - 268 - {{10, 284}, {106, 17}} - - - YES - - 68157504 - 71304192 - Video Filter: - - - - - - NO - - - - 268 - {{119, 328}, {196, 18}} - - - YES - - -2080374784 - 0 - Use Bilinear Filtered Output - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{119, 308}, {154, 18}} - - - YES - - 67108864 - 0 - Use Vertical Sync - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{10, 33}, {443, 355}} - - - Video Output - - - - - 4 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 82}, {239, 18}} - - YES - - -2080374784 - 0 - High-Precision Color Interpolation - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 62}, {154, 18}} - - YES - - -2080374784 - 0 - Enable Edge Marking - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 42}, {91, 18}} - - YES - - -2080374784 - 0 - Enable Fog - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{215, 14}, {60, 22}} - - YES - - -1804599231 - 71304192 - - - - YES - - YES - allowsFloats - attributedStringForZero - currencyDecimalSeparator - currencySymbol - decimalSeparator - exponentSymbol - formatterBehavior - generatesDecimalNumbers - groupingSeparator - internationalCurrencySymbol - lenient - locale - maximumFractionDigits - maximumIntegerDigits - minimumFractionDigits - minusSign - negativeFormat - negativeInfinitySymbol - negativePrefix - negativeSuffix - nilSymbol - notANumberSymbol - numberStyle - paddingCharacter - perMillSymbol - percentSymbol - plusSign - positiveFormat - positiveInfinitySymbol - positivePrefix - positiveSuffix - roundingIncrement - roundingMode - usesGroupingSeparator - - - YES - - - 0 - - - . - ¤ - . - E - - - , - ¤¤ - - - - - - - - # - -∞ - - - - - NaN - - * - ‰ - % - + - # - +∞ - - - - - - - - # - # - - - - - - - - NaN - - - - 0 - 0 - YES - NO - 1 - AAAAAAAAAAAAAAAAAAAAAA - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{15, 16}, {195, 17}} - - YES - - 68157504 - 71304192 - Depth Comparison Threshold: - - - - - - NO - - - - 268 - {{276, 11}, {19, 27}} - - YES - - 67895328 - 0 - - - 100 - 1 - YES - - NO - - - {{1, 1}, {310, 108}} - - - - {{64, 110}, {312, 124}} - - {0, 0} - - 67108864 - 0 - SoftRasterizer Options - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{207, 318}, {169, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - SoftRasterizer - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - None - - 2147483647 - - - _popUpItemAction: - - - - - - OpenGL - - 2147483647 - - - _popUpItemAction: - 2 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{37, 324}, {168, 17}} - - YES - - 68157504 - 71304192 - 3D Rendering Engine: - - - - - - NO - - - - 268 - {{195, 13}, {181, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Automatic - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Single-Threaded - - 2147483647 - - - _popUpItemAction: - 1 - - - - - 2 Threads - - 2147483647 - - - _popUpItemAction: - 2 - - - - - 4 Threads - - 2147483647 - - - _popUpItemAction: - 4 - - - - - 8 Threads - - 2147483647 - - - _popUpItemAction: - 8 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{37, 19}, {156, 17}} - - YES - - 68157504 - 71304192 - Rendering Threads: - - - - - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {129, 18}} - - YES - - -2080374784 - 0 - Enable Line Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {124, 18}} - - YES - - -2080374784 - 0 - Enable Textures - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {310, 58}} - - - - {{64, 238}, {312, 74}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {223, 18}} - - YES - - 67108864 - 0 - Enable Multisample Antialiasing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {310, 38}} - - - - {{64, 52}, {312, 54}} - - {0, 0} - - 67108864 - 0 - OpenGL Options - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {443, 355}} - - 3D Rendering - - - - - - - 0 - YES - YES - - YES - - - - - {489, 425} - - NSView - - - - 268 - - YES - - - 268 - {{163, 329}, {220, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - OS X Core Audio - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - 58325 - - - YES - - OtherViews - - YES - - - None - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 335}, {144, 17}} - - YES - - 68157504 - 272630784 - Audio Output Engine: - - - - - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {148, 18}} - - YES - - -2080374784 - 0 - Advanced SPU Logic - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {364, 38}} - - - - {{17, 209}, {366, 54}} - - {0, 0} - - 67108864 - 0 - SPU Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 15}, {180, 46}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 0 - Dual SPU Synch/Asynch - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 0 - Synchronous - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {194, 62}} + + + + + {{218, 53}, {196, 78}} + + + {0, 0} + + 67108864 + 0 + Display Order + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{15, 18}, {126, 17}} + + + YES + + 68157504 + 4195328 + Display Separation: + + + + + + NO + + + + 268 + {{339, 16}, {72, 22}} + + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumIntegerDigits + minimum + multiplier + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + #0.#% + -∞ + + + #0.#% + +∞ + + + + #0.#% + #0.#% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + + YES + + + + NO + + + + 268 + {{144, 12}, {189, 26}} + + + YES + + -2080112384 + 0 + + + 200 + 0.0 + 0.0 + 0.0 + 5 + 1 + NO + NO + + NO + + + + 268 + {{305, 38}, {38, 11}} + + + YES + + 68157504 + 138675200 + 200% + + LucidaGrande + 9 + 3600 + + + + + + NO + + + + 268 + {{263, 38}, {38, 11}} + + + YES + + 68157504 + 138675200 + 150% + + + + + + NO + + + + 268 + {{220, 38}, {38, 11}} + + + YES + + 68157504 + 138675200 + 100% + + + + + + NO + + + + 268 + {{178, 38}, {38, 11}} + + + YES + + 68157504 + 138675200 + 50% + + + + + + NO + + + + 268 + {{137, 38}, {38, 11}} + + + YES + + 68157504 + 138675200 + 0% + + + + + + NO + + + {{1, 1}, {429, 141}} + + + + + {{6, 45}, {431, 157}} + + + {0, 0} + + 67108864 + 0 + Combo Display Layout + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {443, 355}} + + + + Display Views + + + + + 2 + + + 256 + + YES + + + 268 + {{119, 278}, {151, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + None + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + LQ2x + + 2147483647 + + + _popUpItemAction: + 1 + + + + + LQ2xS + + 2147483647 + + + _popUpItemAction: + 2 + + + + + HQ2x + + 2147483647 + + + _popUpItemAction: + 3 + + + + + HQ2xS + + 2147483647 + + + _popUpItemAction: + 4 + + + + + HQ4x + + 2147483647 + + + _popUpItemAction: + 5 + + + + + HQ4xS + + 2147483647 + + + _popUpItemAction: + 18 + + + + + 2xSaI + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Super 2xSaI + + 2147483647 + + + _popUpItemAction: + 7 + + + + + Super Eagle + + 2147483647 + + + _popUpItemAction: + 8 + + + + + Scanline + + 2147483647 + + + _popUpItemAction: + 9 + + + + + Bilinear + + 2147483647 + + + _popUpItemAction: + 10 + + + + + Nearest 2x + + 2147483647 + + + _popUpItemAction: + 11 + + + + + Nearest 1.5x + + 2147483647 + + + _popUpItemAction: + 12 + + + + + Nearest+ 1.5x + + 2147483647 + + + _popUpItemAction: + 13 + + + + + EPX + + 2147483647 + + + _popUpItemAction: + 14 + + + + + EPX+ + + 2147483647 + + + _popUpItemAction: + 15 + + + + + EPX 1.5x + + 2147483647 + + + _popUpItemAction: + 16 + + + + + EPX+ 1.5x + + 2147483647 + + + _popUpItemAction: + 17 + + + + YES + + + 1 + YES + YES + 2 + + NO + + + + 268 + + 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 + + + {{118, 9}, {262, 262}} + + YES + + 671088640 + 33554432 + 0 + 3 + 2 + NO + + NO + YES + + + + 268 + {{10, 251}, {106, 17}} + + + YES + + 68157504 + 71304192 + Preview: + + + + + + NO + + + + 268 + {{10, 284}, {106, 17}} + + + YES + + 68157504 + 71304192 + Video Filter: + + + + + + NO + + + + 268 + {{119, 328}, {196, 18}} + + + YES + + -2080374784 + 0 + Use Bilinear Filtered Output + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{119, 308}, {154, 18}} + + + YES + + 67108864 + 0 + Use Vertical Sync + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{10, 33}, {443, 355}} + + + Video Output + + + + + 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 82}, {239, 18}} + + YES + + -2080374784 + 0 + High-Precision Color Interpolation + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 62}, {154, 18}} + + YES + + -2080374784 + 0 + Enable Edge Marking + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 42}, {91, 18}} + + YES + + -2080374784 + 0 + Enable Fog + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{215, 14}, {60, 22}} + + YES + + -1804599231 + 71304192 + + + + YES + + YES + allowsFloats + attributedStringForZero + currencyDecimalSeparator + currencySymbol + decimalSeparator + exponentSymbol + formatterBehavior + generatesDecimalNumbers + groupingSeparator + internationalCurrencySymbol + lenient + locale + maximumFractionDigits + maximumIntegerDigits + minimumFractionDigits + minusSign + negativeFormat + negativeInfinitySymbol + negativePrefix + negativeSuffix + nilSymbol + notANumberSymbol + numberStyle + paddingCharacter + perMillSymbol + percentSymbol + plusSign + positiveFormat + positiveInfinitySymbol + positivePrefix + positiveSuffix + roundingIncrement + roundingMode + usesGroupingSeparator + + + YES + + + 0 + + + . + ¤ + . + E + + + , + ¤¤ + + + + + + - + # + -∞ + - + + + NaN + + * + ‰ + % + + + # + +∞ + + + + + + + + # + # + + + + + + + + NaN + + + + 0 + 0 + YES + NO + 1 + AAAAAAAAAAAAAAAAAAAAAA + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{15, 16}, {195, 17}} + + YES + + 68157504 + 71304192 + Depth Comparison Threshold: + + + + + + NO + + + + 268 + {{276, 11}, {19, 27}} + + YES + + 67895328 + 0 + + + 100 + 1 + YES + + NO + + + {{1, 1}, {310, 108}} + + + + {{64, 110}, {312, 124}} + + {0, 0} + + 67108864 + 0 + SoftRasterizer Options + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{207, 318}, {169, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + SoftRasterizer + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + None + + 2147483647 + + + _popUpItemAction: + + + + + + OpenGL + + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{37, 324}, {168, 17}} + + YES + + 68157504 + 71304192 + 3D Rendering Engine: + + + + + + NO + + + + 268 + {{195, 13}, {181, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Automatic + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Single-Threaded + + 2147483647 + + + _popUpItemAction: + 1 + + + + + 2 Threads + + 2147483647 + + + _popUpItemAction: + 2 + + + + + 4 Threads + + 2147483647 + + + _popUpItemAction: + 4 + + + + + 8 Threads + + 2147483647 + + + _popUpItemAction: + 8 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{37, 19}, {156, 17}} + + YES + + 68157504 + 71304192 + Rendering Threads: + + + + + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {129, 18}} + + YES + + -2080374784 + 0 + Enable Line Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {124, 18}} + + YES + + -2080374784 + 0 + Enable Textures + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {310, 58}} + + + + {{64, 238}, {312, 74}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {223, 18}} + + YES + + 67108864 + 0 + Enable Multisample Antialiasing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {310, 38}} + + + + {{64, 52}, {312, 54}} + + {0, 0} + + 67108864 + 0 + OpenGL Options + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {443, 355}} + + 3D Rendering + + + + + + + 0 + YES + YES + + YES + + + + + {489, 425} + + NSView + + + + 268 + + YES + + + 268 + {{163, 329}, {220, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + OS X Core Audio + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + 58325 + + + YES + + OtherViews + + YES + + + None + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 335}, {144, 17}} + + YES + + 68157504 + 272630784 + Audio Output Engine: + + + + + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {148, 18}} + + YES + + -2080374784 + 0 + Advanced SPU Logic + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {364, 38}} + + + + {{17, 209}, {366, 54}} + + {0, 0} + + 67108864 + 0 + SPU Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 15}, {180, 46}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 0 + Dual SPU Synch/Asynch + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 0 + Synchronous + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6197,39 +6158,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {180, 18} - {4, 10} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {180, 18} + {4, 10} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6254,172 +6215,172 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 1 - - - - - - - - 268 - {{145, 10}, {204, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - "P" Method - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - 2 - - - YES - - OtherViews - - YES - - - "N" Method - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - "Z" Method - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - - - 2 - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {364, 71}} - - - - {{17, 16}, {366, 87}} - - {0, 0} - - 67108864 - 0 - SPU Sound Synchronization Method - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {328, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 0 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Linear - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + + 268 + {{145, 10}, {204, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + "P" Method + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + 2 + + + YES + + OtherViews + + YES + + + "N" Method + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + "Z" Method + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + + + 2 + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {364, 71}} + + + + {{17, 16}, {366, 87}} + + {0, 0} + + 67108864 + 0 + SPU Sound Synchronization Method + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {328, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 0 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Linear + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6496,52 +6457,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - -2080374784 - 0 - Cosine - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {328, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + -2080374784 + 0 + Cosine + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {328, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6566,375 +6527,375 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 2 - - - - - - - {{1, 1}, {364, 82}} - - - - {{17, 107}, {366, 98}} - - {0, 0} - - 67108864 - 0 - SPU Interpolation Method - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{44, 13}, {246, 21}} - - YES - - 67371264 - 0 - - - 100 - 0.0 - 100 - 0.0 - 0 - 1 - NO - NO - - NO - - - - 268 - {{293, 17}, {56, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - multiplier - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - #0.0% - #0.0% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f%% - - - - - NO - - - - 289 - - 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 - - - {{18, 14}, {20, 20}} - - YES - - 134217728 - 33554432 - - NSImage - Icon_VolumeFull_16x16 - - 0 - 2 - 0 - YES - - NO - YES - - - {{1, 1}, {364, 44}} - - - - {{17, 267}, {366, 60}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {400, 373} - NSView - - - - 268 - - YES - - - 12 - {{13, 10}, {528, 349}} - - - YES - - 1 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {197, 18}} - - YES - - -2080374784 - 0 - Advanced Bus-Level Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {217, 18}} - - YES - - 67108864 - 0 - Rigorous 3D Rendering Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 58}} - - - - {{6, 229}, {496, 74}} - - {0, 0} - - 67108864 - 0 - Emulation Timing - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {165, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Interpreter - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Dynamic Recompiler - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 2 + + + + + + + {{1, 1}, {364, 82}} + + + + {{17, 107}, {366, 98}} + + {0, 0} + + 67108864 + 0 + SPU Interpolation Method + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{44, 13}, {246, 21}} + + YES + + 67371264 + 0 + + + 100 + 0.0 + 100 + 0.0 + 0 + 1 + NO + NO + + NO + + + + 268 + {{293, 17}, {56, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + multiplier + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + #0.0% + #0.0% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f%% + + + + + NO + + + + 289 + + 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 + + + {{18, 14}, {20, 20}} + + YES + + 134217728 + 33554432 + + NSImage + Icon_VolumeFull_16x16 + + 0 + 2 + 0 + YES + + NO + YES + + + {{1, 1}, {364, 44}} + + + + {{17, 267}, {366, 60}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {400, 373} + NSView + + + + 268 + + YES + + + 12 + {{13, 10}, {528, 349}} + + + YES + + 1 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {197, 18}} + + YES + + -2080374784 + 0 + Advanced Bus-Level Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {217, 18}} + + YES + + 67108864 + 0 + Rigorous 3D Rendering Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 58}} + + + + {{6, 229}, {496, 74}} + + {0, 0} + + 67108864 + 0 + Emulation Timing + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {165, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Interpreter + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Dynamic Recompiler + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -7011,39 +6972,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {165, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {165, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -7068,1249 +7029,1252 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{243, 15}, {72, 17}} - - YES - - 68157504 - 71304192 - Block Size: - - - - - - NO - - - - 268 - {{320, 13}, {50, 22}} - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{371, 10}, {19, 27}} - - YES - - 67895328 - 0 - - - 12 - 1 - 100 - 1 - YES - - NO - - - {{1, 1}, {494, 62}} - - - - {{6, 147}, {496, 78}} - - {0, 0} - - 67108864 - 0 - CPU Emulation Engine - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {145, 18}} - - YES - - 67108864 - 0 - Use Debug Console - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {118, 18}} - - YES - - 67108864 - 0 - Emulate Ensata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 58}} - - - - {{6, 69}, {496, 74}} - - {0, 0} - - 67108864 - 0 - Debugger Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {462, 18}} - - YES - - -2080374784 - 0 - Use ADVANsCEne Database when auto-detecting the ROM save type - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 38}} - - - - {{6, 11}, {496, 54}} - - {0, 0} - - 67108864 - 0 - ROM Save Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {508, 303}} - - - General Settings - - - - - 2 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 117}, {182, 18}} - - YES - - 67108864 - 0 - Use External BIOS Images - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{140, 86}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set BIOS Image... - - YES - - - - NO - - - - 268 - {{15, 89}, {120, 17}} - - YES - - 68157504 - 272630784 - ARM9 BIOS Image: - - - - - - NO - - - - 268 - {{382, 80}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{140, 59}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set BIOS Image... - - YES - - - - NO - - - - 268 - {{15, 62}, {120, 17}} - - YES - - 68157504 - 272630784 - ARM7 BIOS Image: - - - - - - NO - - - - 268 - {{382, 53}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{16, 32}, {230, 18}} - - YES - - -1543503872 - 0 - Emulate BIOS Software Interrupts - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {236, 18}} - - YES - - 603979776 - 0 - Patch DelayLoop SWI (speed hack) - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 143}} - - - - {{6, 144}, {496, 159}} - - {0, 0} - - 67108864 - 0 - BIOS Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 61}, {205, 18}} - - YES - - 603979776 - 0 - Use External Firmware Image - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{140, 33}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set Firmware Image... - - YES - - - - NO - - - - 268 - {{15, 37}, {120, 17}} - - YES - - 68157504 - 272630784 - Firmware Image: - - - - - - NO - - - - 268 - {{382, 27}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {149, 18}} - - YES - - 603979776 - 0 - Boot From Firmware - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 81}, {229, 32}} - - YES - - 67108864 - 134217728 - Configure Internal Firmware... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {494, 119}} - - - - {{6, 5}, {496, 135}} - - {0, 0} - - 67108864 - 0 - Firmware Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {508, 303}} - - BIOS and Firmware - - - - - - - 0 - YES - YES - - YES - - - - - {554, 373} - NSView - - - PreferencesWindowDelegate - - - 9 - 2 - {{235, 426}, {620, 442}} - 1685586944 - Input Profile - NSWindow - - - {620, 180} - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 256 - {620, 304} - - - YES - NO - YES - - - 256 - {620, 17} - - - - - - - -2147483392 - {{584, 0}, {16, 17}} - - - - - YES - - InputCommandIconColumn - 35 - 16 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 135266368 - 33686528 - 0 - 3 - 0 - NO - - - - - InputCommandTagColumn - 181 - 16 - 1000 - - 75497536 - 2048 - Command - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 68157504 - 272761856 - Text - - - - - - 3 - YES - - - - InputDeviceColumn - 222 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Device - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - InputSettingsSummaryColumn - 151 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Settings Summary - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 17 - 1386217472 - - - 0 - 15 - 0 - NO - 0 - 1 - NO - - - {{1, 17}, {620, 304}} - - - - - 4 - - - - -2147483392 - {{584, 17}, {15, 102}} - - - NO - - _doScroller: - 0.95844875346260383 - - - - -2147483392 - {{1, 325}, {599, 15}} - - - NO - 1 - - _doScroller: - 0.99667221297836939 - - - - 2304 - - YES - - - {{1, 0}, {620, 17}} - - - - - 4 - - - - {{-1, 60}, {622, 322}} - - - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{19, 419}, {72, 14}} - - - YES - - 68157504 - 272761856 - Profile Name - - - - - - NO - - - - 289 - {{510, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Close - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 266 - {{20, 396}, {392, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 292 - {{14, 12}, {236, 32}} - - - YES - - 67108864 - 134217728 - Apply to Current Configuration - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 265 - {{510, 390}, {96, 32}} - - - YES - - 67108864 - 134217728 - Next - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 265 - {{414, 390}, {96, 32}} - - - YES - - 67108864 - 134217728 - Previous - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 292 - {{250, 12}, {96, 32}} - - - YES - - 67108864 - 134217728 - Delete - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {620, 442} - - - {{0, 0}, {1920, 1178}} - {620, 202} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 444}, {452, 115}} - 1685586944 - Input Profile Rename - NSWindow - - - - - 256 - - YES - - - 266 - {{20, 48}, {412, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 268 - {{342, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{17, 78}, {215, 17}} - - YES - - 68157504 - 272630784 - Enter a new name for this profile: - - - - - - NO - - - {452, 115} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 292}, {620, 267}} - 1685586944 - InputSettingsMicrophone - NSWindow - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {190, 126}} - - YES - NO - 4 - 1 - - YES - - -2080374784 - 0 - Internal Noise Samples - - - 1 - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - White Noise - - - 3 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{243, 15}, {72, 17}} + + YES + + 68157504 + 71304192 + Block Size: + + + + + + NO + + + + 268 + {{320, 13}, {50, 22}} + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{371, 10}, {19, 27}} + + YES + + 67895328 + 0 + + + 12 + 1 + 100 + 1 + YES + + NO + + + {{1, 1}, {494, 62}} + + + + {{6, 147}, {496, 78}} + + {0, 0} + + 67108864 + 0 + CPU Emulation Engine + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {145, 18}} + + YES + + 67108864 + 0 + Use Debug Console + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {118, 18}} + + YES + + 67108864 + 0 + Emulate Ensata + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 58}} + + + + {{6, 69}, {496, 74}} + + {0, 0} + + 67108864 + 0 + Debugger Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {462, 18}} + + YES + + -2080374784 + 0 + Use ADVANsCEne Database when auto-detecting the ROM save type + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 38}} + + + + {{6, 11}, {496, 54}} + + {0, 0} + + 67108864 + 0 + ROM Save Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {508, 303}} + + + General Settings + + + + + 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 117}, {182, 18}} + + YES + + 67108864 + 0 + Use External BIOS Images + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{140, 86}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set BIOS Image... + + YES + + + + NO + + + + 268 + {{15, 89}, {120, 17}} + + YES + + 68157504 + 272630784 + ARM9 BIOS Image: + + + + + + NO + + + + 268 + {{382, 80}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{140, 59}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set BIOS Image... + + YES + + + + NO + + + + 268 + {{15, 62}, {120, 17}} + + YES + + 68157504 + 272630784 + ARM7 BIOS Image: + + + + + + NO + + + + 268 + {{382, 53}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{16, 32}, {230, 18}} + + YES + + -1543503872 + 0 + Emulate BIOS Software Interrupts + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {236, 18}} + + YES + + 603979776 + 0 + Patch DelayLoop SWI (speed hack) + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 143}} + + + + {{6, 144}, {496, 159}} + + {0, 0} + + 67108864 + 0 + BIOS Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 61}, {205, 18}} + + YES + + 603979776 + 0 + Use External Firmware Image + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{140, 33}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set Firmware Image... + + YES + + + + NO + + + + 268 + {{15, 37}, {120, 17}} + + YES + + 68157504 + 272630784 + Firmware Image: + + + + + + NO + + + + 268 + {{382, 27}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {149, 18}} + + YES + + 603979776 + 0 + Boot From Firmware + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{12, 81}, {229, 32}} + + YES + + 67108864 + 134217728 + Configure Internal Firmware... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {494, 119}} + + + + {{6, 5}, {496, 135}} + + {0, 0} + + 67108864 + 0 + Firmware Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {508, 303}} + + BIOS and Firmware + + + + + + + 0 + YES + YES + + YES + + + + + {554, 373} + NSView + + + PreferencesWindowDelegate + + + 9 + 2 + {{235, 426}, {620, 442}} + 1685586944 + Input Profile + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {620, 180} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {620, 304} + + + YES + NO + YES + + + 256 + {620, 17} + + + + + + + -2147483392 + {{584, 0}, {16, 17}} + + + + + YES + + InputCommandIconColumn + 35 + 16 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 135266368 + 33686528 + 0 + 3 + 0 + NO + + + + + InputCommandTagColumn + 181 + 16 + 1000 + + 75497536 + 2048 + Command + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 68157504 + 272761856 + Text + + + + + + 3 + YES + + + + InputDeviceColumn + 222 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Device + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + InputSettingsSummaryColumn + 151 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Settings Summary + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 17 + 1386217472 + + + 0 + 15 + 0 + NO + 0 + 1 + NO + + + {{1, 17}, {620, 304}} + + + + + 4 + + + + -2147483392 + {{584, 17}, {15, 102}} + + + NO + + _doScroller: + 0.95844875346260383 + + + + -2147483392 + {{1, 325}, {599, 15}} + + + NO + 1 + + _doScroller: + 0.99667221297836939 + + + + 2304 + + YES + + + {{1, 0}, {620, 17}} + + + + + 4 + + + + {{-1, 60}, {622, 322}} + + + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 268 + {{19, 419}, {72, 14}} + + + YES + + 68157504 + 272761856 + Profile Name + + + + + + NO + + + + 289 + {{510, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Close + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 266 + {{20, 396}, {392, 22}} + + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 292 + {{14, 12}, {236, 32}} + + + YES + + 67108864 + 134217728 + Apply to Current Configuration + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 265 + {{510, 390}, {96, 32}} + + + YES + + 67108864 + 134217728 + Next + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 265 + {{414, 390}, {96, 32}} + + + YES + + 67108864 + 134217728 + Previous + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 292 + {{250, 12}, {96, 32}} + + + YES + + 67108864 + 134217728 + Delete + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {620, 442} + + + {{0, 0}, {1920, 1178}} + {620, 202} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 444}, {452, 115}} + 1685586944 + Input Profile Rename + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 266 + {{20, 48}, {412, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 268 + {{342, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{17, 78}, {215, 17}} + + YES + + 68157504 + 272630784 + Enter a new name for this profile: + + + + + + NO + + + {452, 115} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 292}, {620, 267}} + 1685586944 + InputSettingsMicrophone + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {190, 126}} + + YES + NO + 4 + 1 + + YES + + -2080374784 + 0 + Internal Noise Samples + + + 1 + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + White Noise + + + 3 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -8387,65 +8351,65 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Sine Wave - - - 5 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Audio File - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {190, 30} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Sine Wave + + + 5 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Audio File + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {190, 30} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -8470,1518 +8434,1523 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{130, 18}, {224, 21}} - - YES - - 612368448 - 272635904 - - - File Name - - YES - - - - NO - - - - 268 - {{476, 11}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{128, 47}, {348, 26}} - - YES - - -2080112384 - 0 - - - 5000 - 100 - 500 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{479, 56}, {90, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - generatesDecimalNumbers - locale - maximumFractionDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - #0.0 Hz - +∞ - - - - #0.0 Hz - #0.0 Hz - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f Hz - - - - - NO - - - - 268 - {{356, 11}, {124, 32}} - - YES - - 67108864 - 134217728 - Choose None - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {584, 150}} - - - - {{17, 56}, {586, 166}} - - {0, 0} - - 67108864 - 0 - Audio Sample Generators - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{510, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{414, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 230}, {566, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - {620, 267} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 296}, {350, 263}} - 1685586944 - InputSettingsTouch - NSWindow - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{97, 44}, {17, 17}} - - YES - - 68157504 - 71304192 - X: - - - - - - NO - - - - 268 - {{119, 42}, {96, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{97, 16}, {17, 17}} - - YES - - 68157504 - 71304192 - Y: - - - - - - NO - - - - 268 - {{119, 14}, {96, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - {{1, 1}, {314, 74}} - - - - {{17, 56}, {316, 90}} - - {0, 0} - - 67108864 - 0 - User Defined Coordinates - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{18, 202}, {314, 18}} - - YES - - 67108864 - 0 - Use user defined coordinates - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 154}, {316, 42}} - - YES - - 67108864 - 272760832 - If this setting is disabled, then the Touch command will read the coordinates from the input device instead. - - - - - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 226}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - {350, 263} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 434}, {350, 125}} - 1685586944 - InputSettingsLoadStateSlot - NSWindow - - - - - 256 - - YES - - - 268 - {{121, 56}, {212, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Slot 1 - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Slot 2 - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Slot 3 - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Slot 4 - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Slot 5 - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Slot 6 - - 2147483647 - - - _popUpItemAction: - 5 - - - - - Slot 7 - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Slot 8 - - 2147483647 - - - _popUpItemAction: - 7 - - - - - Slot 9 - - 2147483647 - - - _popUpItemAction: - 8 - - - - - Slot 10 - - 2147483647 - - - _popUpItemAction: - 9 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 62}, {102, 17}} - - YES - - 68157504 - 272630784 - Load State Slot: - - - - - - NO - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 88}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - {350, 125} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 459}, {350, 125}} - 1685586944 - InputSettingsSaveStateSlot - NSWindow - - - - - 256 - - YES - - - 268 - {{119, 56}, {214, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Slot 1 - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Slot 2 - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Slot 3 - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Slot 4 - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Slot 5 - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Slot 6 - - 2147483647 - - - _popUpItemAction: - 5 - - - - - Slot 7 - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Slot 8 - - 2147483647 - - - _popUpItemAction: - 7 - - - - - Slot 9 - - 2147483647 - - - _popUpItemAction: - 8 - - - - - Slot 10 - - 2147483647 - - - _popUpItemAction: - 9 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 62}, {100, 17}} - - YES - - 68157504 - 272630784 - Save State Slot: - - - - - - NO - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 88}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - {350, 125} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 399}, {467, 160}} - 1685586944 - InputSettingsSpeedLimit - NSWindow - - - - - 256 - - YES - - - 268 - {{17, 123}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - - 268 - {{30, 71}, {411, 26}} - - YES - - -2080112384 - 0 - - - 10 - 0.0 - 1 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{20, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 0x - - - - - - NO - - - - 268 - {{412, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 10x - - - - - - NO - - - - 268 - {{98, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 2x - - - - - - NO - - - - 268 - {{177, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 4x - - - - - - NO - - - - 268 - {{255, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 6x - - - - - - NO - - - - 268 - {{335, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 8x - - - - - - NO - - - - 268 - {{14, 12}, {169, 32}} - - 100 - YES - - 67108864 - 134217728 - Set to Normal Speed - - - -2038022144 - 129 - - - - 400 - 75 - - NO - - - - 268 - {{112, 48}, {156, 17}} - - YES - - 68157504 - 71304192 - Speed limit set to: - - - - - - NO - - - - 268 - {{270, 48}, {81, 17}} - - YES - - 68157504 - 4195328 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - #0.00x - -∞ - - - #0.00x - +∞ - - - - #0.00x - #0.00x - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.2fx - - - - - NO - - - - 268 - {{357, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{261, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {467, 160} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 276}, {516, 283}} - 1685586944 - InputSettingsGPUState - NSWindow - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {444, 142}} - - YES - NO - 6 - 2 - - YES - - -2080374784 - 0 - Main GPU (All Layers) - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Sub GPU (All Layers) - - - 6 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG0 - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{130, 18}, {224, 21}} + + YES + + 612368448 + 272635904 + + + File Name + + YES + + + + NO + + + + 268 + {{476, 11}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{128, 47}, {348, 26}} + + YES + + -2080112384 + 0 + + + 5000 + 100 + 500 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{479, 56}, {90, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + generatesDecimalNumbers + locale + maximumFractionDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + #0.0 Hz + +∞ + + + + #0.0 Hz + #0.0 Hz + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f Hz + + + + + NO + + + + 268 + {{356, 11}, {124, 32}} + + YES + + 67108864 + 134217728 + Choose None + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {584, 150}} + + + + {{17, 56}, {586, 166}} + + {0, 0} + + 67108864 + 0 + Audio Sample Generators + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{510, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{414, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 230}, {566, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + {620, 267} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 296}, {350, 263}} + 1685586944 + InputSettingsTouch + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{97, 44}, {17, 17}} + + YES + + 68157504 + 71304192 + X: + + + + + + NO + + + + 268 + {{119, 42}, {96, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{97, 16}, {17, 17}} + + YES + + 68157504 + 71304192 + Y: + + + + + + NO + + + + 268 + {{119, 14}, {96, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + {{1, 1}, {314, 74}} + + + + {{17, 56}, {316, 90}} + + {0, 0} + + 67108864 + 0 + User Defined Coordinates + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{18, 202}, {314, 18}} + + YES + + 67108864 + 0 + Use user defined coordinates + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{17, 154}, {316, 42}} + + YES + + 67108864 + 272760832 + If this setting is disabled, then the Touch command will read the coordinates from the input device instead. + + + + + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 226}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + {350, 263} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 434}, {350, 125}} + 1685586944 + InputSettingsLoadStateSlot + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{121, 56}, {212, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Slot 1 + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Slot 2 + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Slot 3 + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Slot 4 + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Slot 5 + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Slot 6 + + 2147483647 + + + _popUpItemAction: + 5 + + + + + Slot 7 + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Slot 8 + + 2147483647 + + + _popUpItemAction: + 7 + + + + + Slot 9 + + 2147483647 + + + _popUpItemAction: + 8 + + + + + Slot 10 + + 2147483647 + + + _popUpItemAction: + 9 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 62}, {102, 17}} + + YES + + 68157504 + 272630784 + Load State Slot: + + + + + + NO + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 88}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + {350, 125} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 459}, {350, 125}} + 1685586944 + InputSettingsSaveStateSlot + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{119, 56}, {214, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Slot 1 + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Slot 2 + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Slot 3 + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Slot 4 + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Slot 5 + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Slot 6 + + 2147483647 + + + _popUpItemAction: + 5 + + + + + Slot 7 + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Slot 8 + + 2147483647 + + + _popUpItemAction: + 7 + + + + + Slot 9 + + 2147483647 + + + _popUpItemAction: + 8 + + + + + Slot 10 + + 2147483647 + + + _popUpItemAction: + 9 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 62}, {100, 17}} + + YES + + 68157504 + 272630784 + Save State Slot: + + + + + + NO + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 88}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + {350, 125} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 399}, {467, 160}} + 1685586944 + InputSettingsSpeedLimit + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 123}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + + 268 + {{30, 71}, {411, 26}} + + YES + + -2080112384 + 0 + + + 10 + 0.0 + 1 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{20, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 0x + + + + + + NO + + + + 268 + {{412, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 10x + + + + + + NO + + + + 268 + {{98, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 2x + + + + + + NO + + + + 268 + {{177, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 4x + + + + + + NO + + + + 268 + {{255, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 6x + + + + + + NO + + + + 268 + {{335, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 8x + + + + + + NO + + + + 268 + {{14, 12}, {169, 32}} + + 100 + YES + + 67108864 + 134217728 + Set to Normal Speed + + + -2038022144 + 129 + + + + 400 + 75 + + NO + + + + 268 + {{112, 48}, {156, 17}} + + YES + + 68157504 + 71304192 + Speed limit set to: + + + + + + NO + + + + 268 + {{270, 48}, {81, 17}} + + YES + + 68157504 + 4195328 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + #0.00x + -∞ + + + #0.00x + +∞ + + + + #0.00x + #0.00x + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.2fx + + + + + NO + + + + 268 + {{357, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{261, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + {467, 160} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 276}, {516, 283}} + 1685586944 + InputSettingsGPUState + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {444, 142}} + + YES + NO + 6 + 2 + + YES + + -2080374784 + 0 + Main GPU (All Layers) + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Sub GPU (All Layers) + + + 6 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG0 + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -10058,156 +10027,156 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Sub BG0 - - - 7 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG1 - - - 2 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG1 - - - 8 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG2 - - - 3 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG2 - - - 9 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG3 - - - 4 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG3 - - - 10 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main OBJ - - - 5 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub OBJ - - - 11 - 1211912448 - 0 - - 400 - 75 - - - {220, 22} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Sub BG0 + + + 7 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG1 + + + 2 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG1 + + + 8 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG2 + + + 3 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG2 + + + 9 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG3 + + + 4 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG3 + + + 10 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main OBJ + + + 5 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub OBJ + + + 11 + 1211912448 + 0 + + 400 + 75 + + + {220, 22} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -10232,3347 +10201,3353 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {480, 166}} - - - - {{17, 56}, {482, 182}} - - {0, 0} - - 67108864 - 0 - GPU Layers - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{406, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{310, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 246}, {482, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - - - {516, 283} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{235, 244}, {305, 315}} - 1685585920 - Internal Firmware Preferences - NSWindow - - - - - 256 - - YES - - - 268 - {{119, 276}, {166, 22}} - - YES - - -1804599231 - 272630784 - - - Enter a nickname... - - YES - - - - NO - - - - 268 - {{119, 222}, {166, 44}} - - YES - - -1805647871 - 272629760 - - - Enter a message... - - YES - - - - NO - - - - 268 - {{17, 278}, {97, 17}} - - YES - - 68157504 - 71304192 - Nickname: - - - - - - NO - - - - 268 - {{17, 246}, {97, 17}} - - YES - - 68157504 - 71304192 - Message: - - - - - - NO - - - - 268 - {{12, 196}, {102, 17}} - - YES - - 68157504 - 71304192 - Favorite Color: - - - - - - NO - - - - 268 - {{17, 154}, {97, 17}} - - YES - - 68157504 - 71304192 - Birthday: - - - - - - NO - - - - 268 - {{17, 126}, {97, 17}} - - YES - - 68157504 - 71304192 - Language: - - - - - - NO - - - - 268 - {{119, 152}, {169, 27}} - - YES - - 71303168 - 0 - - 330548400 - - - - 0.0 - 224 - - - - NO - - - - 268 - {{116, 120}, {172, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - English - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - Japanese - - 2147483647 - - - _popUpItemAction: - - - - - - French - - 2147483647 - - - _popUpItemAction: - 2 - - - - - German - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Italian - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Spanish - - 2147483647 - - - _popUpItemAction: - 5 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{116, 190}, {172, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Gray - - 2147483647 - 1 - - NSImage - ColorSwatch_Gray_16x16 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Brown - - 2147483647 - - NSImage - ColorSwatch_Brown_16x16 - - - - _popUpItemAction: - 1 - - - - - Red - - 2147483647 - - NSImage - ColorSwatch_Red_16x16 - - - - _popUpItemAction: - 2 - - - - - Pink - - 2147483647 - - NSImage - ColorSwatch_Pink_16x16 - - - - _popUpItemAction: - 3 - - - - - Orange - - 2147483647 - - NSImage - ColorSwatch_Orange_16x16 - - - - _popUpItemAction: - 4 - - - - - Yellow - - 2147483647 - - NSImage - ColorSwatch_Yellow_16x16 - - - - _popUpItemAction: - 5 - - - - - Lime Green - - 2147483647 - - NSImage - ColorSwatch_LimeGreen_16x16 - - - - _popUpItemAction: - 6 - - - - - Green - - 2147483647 - - NSImage - ColorSwatch_Green_16x16 - - - - _popUpItemAction: - 7 - - - - - Dark Green - - 2147483647 - - NSImage - ColorSwatch_DarkGreen_16x16 - - - - _popUpItemAction: - 8 - - - - - Sea Green - - 2147483647 - - NSImage - ColorSwatch_SeaGreen_16x16 - - - - _popUpItemAction: - 9 - - - - - Turquoise - - 2147483647 - - NSImage - ColorSwatch_Turquoise_16x16 - - - - _popUpItemAction: - 10 - - - - - Blue - - 2147483647 - - NSImage - ColorSwatch_Blue_16x16 - - - - _popUpItemAction: - 11 - - - - - Dark Blue - - 2147483647 - - NSImage - ColorSwatch_DarkBlue_16x16 - - - - _popUpItemAction: - 12 - - - - - Dark Purple - - 2147483647 - - NSImage - ColorSwatch_DarkPurple_16x16 - - - - _popUpItemAction: - 13 - - - - - Violet - - 2147483647 - - NSImage - ColorSwatch_Violet_16x16 - - - - _popUpItemAction: - 14 - - - - - Magenta - - 2147483647 - - NSImage - ColorSwatch_Magenta_16x16 - - - - _popUpItemAction: - 15 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 56}, {271, 56}} - - YES - - 67108864 - 272760832 - Note: These settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. - - LucidaGrande - 11 - 16 - - - - - - NO - - - - 268 - {{104, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - {305, 315} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 9 - 2 - {{702, 413}, {700, 399}} - 1685586944 - User File Migration - NSWindow - - - {700, 250} - - - 256 - - YES - - - 268 - {{17, 345}, {666, 34}} - - YES - - 67108864 - 272629760 - You have files that were created from a previous version of DeSmuME. Would you like to migrate them to work with this version? - - - - - - NO - - - - 289 - {{362, 12}, {162, 32}} - - 2 - YES - - 67108864 - 134217728 - Migrate By Moving - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 289 - {{200, 12}, {162, 32}} - - YES - - 67108864 - 134217728 - Don't Migrate - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 309}, {666, 28}} - - YES - - 67108864 - 272633856 - Files from previous versions may not be fully compatible with the current version, especially Save State files. File migration cannot guarantee that all your old files will continue to work. - - - - - - NO - - - - 292 - {{18, 21}, {182, 18}} - - YES - - 67108864 - 0 - Do not ask on startup - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 289 - {{524, 12}, {162, 32}} - - 1 - YES - - 67108864 - 134217728 - Migrate By Copying - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 274 - - YES - - - 2304 - - YES - - - 256 - {700, 195} - - YES - NO - YES - - - 256 - {700, 17} - - - - - - -2147483392 - {{544, 0}, {16, 17}} - - - - YES - - 25 - 25 - 3.402823466385289e+38 - - 75497536 - 2048 - - - - - - - 67633152 - 134217728 - - - - 1215582464 - 2 - - - - - 200 - 25 - - YES - - - - 89 - 40 - 1000 - - 75497536 - 2048 - Version - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 337641536 - 2048 - Text Cell - - - - - - 3 - YES - - - - 141 - 40 - 1000 - - 75497536 - 2048 - Kind - - - - - - 337641536 - 2048 - Text Cell - - - - - - 3 - YES - - - - 259 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Name - - - - - - 337641536 - 2048 - Text Cell - - - - - - 3 - YES - - - - 171 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Date Modified - - - - - - 337641536 - 2048 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 17 - 1925185536 - - - 1 - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {700, 195}} - - - - - 4 - - - - -2147483392 - {{544, 17}, {15, 180}} - - NO - - _doScroller: - 0.92307692307692313 - - - - -2147483392 - {{1, 197}, {598, 15}} - - NO - 1 - - _doScroller: - 0.98918083462132922 - - - - 2304 - - YES - - - {{1, 0}, {700, 17}} - - - - - 4 - - - - {{-1, 88}, {702, 213}} - - - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 292 - {{14, 52}, {114, 32}} - - YES - - 67108864 - 134217728 - Select All - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 292 - {{128, 52}, {114, 32}} - - YES - - 67108864 - 134217728 - Select None - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {700, 399} - - {{0, 0}, {1920, 1178}} - {700, 272} - {10000000000000, 10000000000000} - YES - - - FileMigrationDelegate - - - 1 - 2 - {{157, 261}, {380, 200}} - 1685586944 - ROM Save File Migration - NSWindow - - - - - 256 - - YES - - - 268 - {{17, 112}, {346, 68}} - - YES - - 67108864 - 272629760 - This ROM's save file has not been created yet, but there is a save file with this ROM that has the same file name. Would you like to migrate it to work with DeSmuME? - - - - - - NO - - - - 268 - {{270, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Migrate - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {126, 32}} - - YES - - 67108864 - 134217728 - Don't Migrate - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 48}, {346, 56}} - - YES - - 67108864 - 272633856 - Migrating the ROM save file will move it to DeSmuME's game data folder. If you do not migrate the save file now, a new file will be created instead. This will be like starting the ROM for the first time. - - - - - - NO - - - {380, 200} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 1 - 2 - {{157, 298}, {335, 163}} - 1685586944 - Save State - NSWindow - - - - - 256 - - YES - - - 268 - {{17, 109}, {301, 34}} - - YES - - 67108864 - 272629760 - Would you like to save the emulation state before closing? - - - - - - NO - - - - 268 - {{220, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Save - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{114, 12}, {106, 32}} - - 2 - YES - - 67108864 - 134217728 - Don't Save - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 59}, {301, 42}} - - YES - - 67108864 - 272633856 - If you haven't already saved using this ROM's save, then not saving the emulation state now will cause any unsaved changes to be lost. - - - - - - NO - - - - 268 - {{18, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {335, 163} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 7 - 2 - {{235, 88}, {640, 480}} - 1685586944 - Cheat Manager - NSWindow - - - - - 256 - - YES - - - 268 - - YES - - - 2304 - - YES - - - 256 - {270, 335} - - YES - NO - YES - - - 256 - {270, 17} - - - - - - -2147483392 - {{256, 0}, {16, 17}} - - - - YES - - 20 - 20 - 20 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 67108864 - 0 - - - - 1215582464 - 2 - - - - - 200 - 25 - - YES - - - - 36 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Type - - - - - - 134217728 - 33554432 - 0 - 0 - 0 - NO - - - - cheatType - YES - compare: - - - - 205 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Description - - - - - - 337641472 - 4325632 - Text Cell - - - - - - 3 - YES - YES - - - - 3 - 2 - - - 42 - 1925185536 - - - 1 - - YES - - - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {270, 335}} - - - - - 4 - - - - -2147483392 - {{256, 17}, {15, 306}} - - NO - - _doScroller: - 0.99689440993788825 - - - - -2147483392 - {{1, 323}, {270, 15}} - - NO - 1 - - _doScroller: - 0.99630996309963105 - - - - 2304 - - YES - - - {{1, 0}, {270, 17}} - - - - - 4 - - - - {{20, 49}, {272, 353}} - - - 133682 - - - - - QSAAAEEgAABCMAAAQjAAAA - 0.25 - 4 - 1 - - - - 268 - {{113, 12}, {185, 32}} - - YES - - 67108864 - 134217728 - View Cheat Database... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{47, 19}, {28, 23}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 162 - - NSImage - NSRemoveTemplate - - - - 400 - 75 - - NO - - - - 268 - {{20, 19}, {28, 23}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 162 - - NSImage - NSAddTemplate - - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{100, 372}, {209, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Internal Cheat - - 1048576 - 2147483647 - 1 - - NSImage - Icon_DeSmuME_32x32 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Action Replay - - 1048576 - 2147483647 - - NSImage - Icon_ActionReplay_32x32 - - - - _popUpItemAction: - 1 - - - - - - 1 - YES - YES - 2 - - NO - - - - 301 - {{2, 33}, {320, 290}} - - NSView - - - - 268 - {{16, 402}, {129, 18}} - - YES - - 67108864 - 0 - Enable this cheat - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 378}, {83, 17}} - - YES - - 68157504 - 272630784 - Type: - - - - - - NO - - - - 12 - {{14, 320}, {292, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{103, 331}, {203, 39}} - - YES - - -1805647871 - 272629760 - - - - YES - - - - NO - - - - 268 - {{15, 353}, {83, 17}} - - YES - - 68157504 - 272630784 - Description: - - - - - - NO - - - - 268 - {{114, 6}, {96, 32}} - - YES - - 67108864 - 134217728 - Apply - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {324, 428}} - - - - {{297, 16}, {326, 444}} - - {0, 0} - - 67108864 - 0 - Cheat Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{76, 408}, {190, 18}} - - YES - - -2080374784 - 0 - Enable Cheats - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 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 - - - {{20, 410}, {50, 50}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 265 - {{75, 432}, {168, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - - - - 1292 - {{29, 419}, {32, 32}} - - 28682 - 100 - - - {640, 480} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - CheatManagerWindow - YES - - - CheatWindowDelegate - - - - 256 - - YES - - - 292 - {{17, 4}, {294, 14}} - - YES - - 68157504 - 138548224 - This list only shows the first 100 search results. - - LucidaGrande-Bold - 11 - 16 - - - - - - NO - - - - 1292 - {{214, 220}, {16, 16}} - - 28938 - 100 - - - - 268 - {{133, 369}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Unsigned - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - YES - Signed (NOT IMPLEMENTED) - - 2147483647 - - - _popUpItemAction: - - - - YES - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{59, 374}, {60, 14}} - - YES - - 68157504 - 272761856 - Sign Type: - - - - - - NO - - - - 268 - {{59, 398}, {72, 14}} - - YES - - 68157504 - 272761856 - Search Style: - - - - - - NO - - - - 268 - {{133, 393}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Exact Value - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Comparative - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{0, 237}, {328, 134}} - - NSView - - - - 268 - {{233, 213}, {80, 28}} - - YES - - 67108864 - 134348800 - Reset - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{59, 222}, {150, 14}} - - YES - - 68157504 - 272761856 - - - Search not started. - - - - - NO - - - - 268 - {{17, 222}, {45, 14}} - - YES - - 68157504 - 272761856 - Found: - - - - - - NO - - - - 284 - - YES - - - 2304 - - YES - - - 256 - {286, 176} - - YES - NO - YES - - - 256 - {286, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - - - YES - - 102 - 40 - 1000 - - 75497536 - 2048 - Address - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 69206081 - 137216 - Text Cell - - Monaco - 11 - 16 - - - - - - 3 - YES - - - - 178 - 40 - 1000 - - 75497536 - 2048 - Value - - - - - - 69206081 - 137216 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 14 - 1916796928 - - - 3 - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {286, 176}} - - - - - 4 - - - - -2147483392 - {{224, 17}, {15, 102}} - - NO - - _doScroller: - 0.94863013698630139 - - - - -2147483392 - {{1, 294}, {338, 15}} - - NO - 1 - - _doScroller: - 0.93888888888888888 - - - - 2304 - - YES - - - {{1, 0}, {286, 17}} - - - - - 4 - - - - {{20, 20}, {288, 194}} - - - 133682 - - - - - QSAAAEEgAABBgAAAQYAAAA - 0.25 - 4 - 1 - - - {328, 434} - NSView - - - - {328, 397} - {0, 397} - {328, 397} - 2 - 0.0 - 0.0 - - - - - 15 - 2 - {{235, 143}, {500, 416}} - 1685585920 - Cheat Database - NSWindow - - - {500, 272} - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 256 - {500, 287} - - YES - NO - YES - - - 256 - {500, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - - - YES - - 25 - 25 - 25 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 67108864 - 134217728 - - - - 1215582464 - 2 - - - - - 200 - 25 - - YES - - - - 464 - 40 - 1000 - - 75497536 - 2048 - Description - - - - - - 69206017 - 135168 - Text Cell - - - - - - 3 - YES - YES - - - - 3 - 2 - - - 39 - 1925185536 - - - 1 - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {500, 287}} - - - - - 4 - - - - -2147483392 - {{224, 17}, {15, 102}} - - NO - - _doScroller: - 0.94773519163763065 - - - - -2147483392 - {{1, 249}, {568, 15}} - - NO - 1 - - _doScroller: - 0.99206349206349209 - - - - 2304 - - YES - - - {{1, 0}, {500, 17}} - - - - - 4 - - - - {{-1, 57}, {502, 305}} - - - 133682 - - - - - QSAAAEEgAABCJAAAQiQAAA - 0.25 - 4 - 1 - - - - 268 - {{17, 370}, {120, 14}} - - YES - - 68157504 - 272761856 - R4 Cheats Database: - - - - - - NO - - - - 268 - {{17, 392}, {63, 14}} - - YES - - 68157504 - 272761856 - ROM Title: - - - - - - NO - - - - 292 - {{14, 12}, {114, 32}} - - YES - - 67108864 - 134217728 - Select All - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 292 - {{128, 12}, {114, 32}} - - YES - - 67108864 - 134217728 - Select None - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 289 - {{390, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Add - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 289 - {{294, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 265 - {{378, 370}, {42, 14}} - - YES - - 68157504 - 272761856 - Found: - - - - - - NO - - - - 268 - {{139, 370}, {237, 14}} - - YES - - 70254657 - 272765952 - - - Database file - - - - - NO - - - - 265 - {{422, 370}, {61, 14}} - - YES - - 70254657 - 272765952 - - - Count - - - - - NO - - - - 268 - {{82, 392}, {401, 14}} - - YES - - 70254657 - 272765952 - - - ROM title - - - - - NO - - - {500, 416} - - {{0, 0}, {1920, 1178}} - {500, 294} - {10000000000000, 10000000000000} - YES - - - - 268 - - YES - - - 268 - {{233, 54}, {80, 28}} - - YES - - 67108864 - 134348800 - Search - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{20, 59}, {210, 19}} - - YES - - 342884416 - 268567552 - - Search value - - YES - 1 - - - - 0 - 0 - search - - _searchFieldSearch: - - 138690560 - 0 - - 400 - 75 - - - 0 - 0 - clear - - YES - - YES - - YES - AXDescription - NSAccessibilityEncodedAttributesValueType - - - YES - cancel - - - - - - _searchFieldCancel: - - 138690560 - 0 - - 400 - 75 - - 255 - - NO - - - - 268 - {{17, 86}, {294, 14}} - - YES - - 67108864 - 272760832 - Enter a search value, and then click Search. - - - - - - NO - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - Search for an exact value. - - - - - - NO - - - {328, 134} - NSView - - - - 268 - - YES - - - 268 - {{17, 86}, {294, 14}} - - YES - - 67108864 - 272760832 - Click Start Search to begin a comparative search. - - - - - - NO - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - Start a comparative search. - - - - - - NO - - - - 268 - {{116, 47}, {96, 28}} - - YES - - 67108864 - 134348800 - Start Search - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {328, 134} - NSView - - - - 268 - - YES - - - 268 - {{17, 72}, {294, 28}} - - YES - - 67108864 - 272760832 - Click the appropriate button based on how the target value is changing. - - - - - - NO - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - How is the value changing? - - - - - - NO - - - - 268 - {{163, 13}, {150, 28}} - - 1 - YES - - 67108864 - 134348800 - Value is now lower - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{163, 40}, {150, 28}} - - YES - - 67108864 - 134348800 - Value is now higher - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 13}, {150, 28}} - - 3 - YES - - 67108864 - 134348800 - Value did change - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 40}, {150, 28}} - - 2 - YES - - 67108864 - 134348800 - Value is unchanged - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {328, 134} - NSView - - - - 301 - - YES - - - 268 - {{197, 191}, {109, 32}} - - YES - - 67108864 - 134217728 - Write Once - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 20}, {286, 42}} - - YES - - 67108864 - 272760832 - Note: Enabling this cheat freezes the value in memory. If you only want to change a value without actually freezing it in memory, click Write Once. - - - - - - NO - - - - 268 - {{17, 262}, {128, 17}} - - YES - - 68157504 - 272630784 - Search for Address: - - - - - - NO - - - - 265 - {{149, 257}, {27, 27}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 160 - - - - 400 - 75 - - NO - - - - 268 - {{79, 230}, {38, 17}} - - YES - - 68157504 - 71304192 - 0x02 - - Monaco - 13 - 16 - - - - - - NO - - - - 268 - {{67, 198}, {128, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximumFractionDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{17, 201}, {45, 17}} - - YES - - 68157504 - 272630784 - Value: - - - - - - NO - - - - 268 - {{118, 228}, {77, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 268 - {{17, 231}, {60, 17}} - - YES - - 68157504 - 272630784 - Address: - - - - - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {190, 78}} - - YES - NO - 4 - 1 - - YES - - 67108864 - 0 - 1 Byte [0 - 255] - - - 1 - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - 2 Bytes [0 - 65536] - - - 2 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {480, 166}} + + + + {{17, 56}, {482, 182}} + + {0, 0} + + 67108864 + 0 + GPU Layers + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{406, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{310, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 246}, {482, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + + + {516, 283} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 244}, {305, 315}} + 1685585920 + Internal Firmware Preferences + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{119, 276}, {166, 22}} + + YES + + -1804599231 + 272630784 + + + Enter a nickname... + + YES + + + + NO + + + + 268 + {{119, 222}, {166, 44}} + + YES + + -1805647871 + 272629760 + + + Enter a message... + + YES + + + + NO + + + + 268 + {{17, 278}, {97, 17}} + + YES + + 68157504 + 71304192 + Nickname: + + + + + + NO + + + + 268 + {{17, 246}, {97, 17}} + + YES + + 68157504 + 71304192 + Message: + + + + + + NO + + + + 268 + {{12, 196}, {102, 17}} + + YES + + 68157504 + 71304192 + Favorite Color: + + + + + + NO + + + + 268 + {{17, 154}, {97, 17}} + + YES + + 68157504 + 71304192 + Birthday: + + + + + + NO + + + + 268 + {{17, 126}, {97, 17}} + + YES + + 68157504 + 71304192 + Language: + + + + + + NO + + + + 268 + {{119, 152}, {169, 27}} + + YES + + 71303168 + 0 + + 330548400 + + + + 0.0 + 224 + + + + NO + + + + 268 + {{116, 120}, {172, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + English + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + Japanese + + 2147483647 + + + _popUpItemAction: + + + + + + French + + 2147483647 + + + _popUpItemAction: + 2 + + + + + German + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Italian + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Spanish + + 2147483647 + + + _popUpItemAction: + 5 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{116, 190}, {172, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Gray + + 2147483647 + 1 + + NSImage + ColorSwatch_Gray_16x16 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Brown + + 2147483647 + + NSImage + ColorSwatch_Brown_16x16 + + + + _popUpItemAction: + 1 + + + + + Red + + 2147483647 + + NSImage + ColorSwatch_Red_16x16 + + + + _popUpItemAction: + 2 + + + + + Pink + + 2147483647 + + NSImage + ColorSwatch_Pink_16x16 + + + + _popUpItemAction: + 3 + + + + + Orange + + 2147483647 + + NSImage + ColorSwatch_Orange_16x16 + + + + _popUpItemAction: + 4 + + + + + Yellow + + 2147483647 + + NSImage + ColorSwatch_Yellow_16x16 + + + + _popUpItemAction: + 5 + + + + + Lime Green + + 2147483647 + + NSImage + ColorSwatch_LimeGreen_16x16 + + + + _popUpItemAction: + 6 + + + + + Green + + 2147483647 + + NSImage + ColorSwatch_Green_16x16 + + + + _popUpItemAction: + 7 + + + + + Dark Green + + 2147483647 + + NSImage + ColorSwatch_DarkGreen_16x16 + + + + _popUpItemAction: + 8 + + + + + Sea Green + + 2147483647 + + NSImage + ColorSwatch_SeaGreen_16x16 + + + + _popUpItemAction: + 9 + + + + + Turquoise + + 2147483647 + + NSImage + ColorSwatch_Turquoise_16x16 + + + + _popUpItemAction: + 10 + + + + + Blue + + 2147483647 + + NSImage + ColorSwatch_Blue_16x16 + + + + _popUpItemAction: + 11 + + + + + Dark Blue + + 2147483647 + + NSImage + ColorSwatch_DarkBlue_16x16 + + + + _popUpItemAction: + 12 + + + + + Dark Purple + + 2147483647 + + NSImage + ColorSwatch_DarkPurple_16x16 + + + + _popUpItemAction: + 13 + + + + + Violet + + 2147483647 + + NSImage + ColorSwatch_Violet_16x16 + + + + _popUpItemAction: + 14 + + + + + Magenta + + 2147483647 + + NSImage + ColorSwatch_Magenta_16x16 + + + + _popUpItemAction: + 15 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 56}, {271, 56}} + + YES + + 67108864 + 272760832 + Note: These settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. + + LucidaGrande + 11 + 16 + + + + + + NO + + + + 268 + {{104, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + {305, 315} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 9 + 2 + {{702, 413}, {700, 399}} + 1685586944 + User File Migration + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {700, 250} + + + 256 + + YES + + + 268 + {{17, 345}, {666, 34}} + + YES + + 67108864 + 272629760 + You have files that were created from a previous version of DeSmuME. Would you like to migrate them to work with this version? + + + + + + NO + + + + 289 + {{362, 12}, {162, 32}} + + 2 + YES + + 67108864 + 134217728 + Migrate By Moving + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 289 + {{200, 12}, {162, 32}} + + YES + + 67108864 + 134217728 + Don't Migrate + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 309}, {666, 28}} + + YES + + 67108864 + 272633856 + Files from previous versions may not be fully compatible with the current version, especially Save State files. File migration cannot guarantee that all your old files will continue to work. + + + + + + NO + + + + 292 + {{18, 21}, {182, 18}} + + YES + + 67108864 + 0 + Do not ask on startup + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 289 + {{524, 12}, {162, 32}} + + 1 + YES + + 67108864 + 134217728 + Migrate By Copying + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 274 + + YES + + + 2304 + + YES + + + 256 + {700, 195} + + YES + NO + YES + + + 256 + {700, 17} + + + + + + -2147483392 + {{544, 0}, {16, 17}} + + + + YES + + 25 + 25 + 3.402823466385289e+38 + + 75497536 + 2048 + + + + + + + 67633152 + 134217728 + + + + 1215582464 + 2 + + + + + 200 + 25 + + YES + + + + 89 + 40 + 1000 + + 75497536 + 2048 + Version + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 337641536 + 2048 + Text Cell + + + + + + 3 + YES + + + + 141 + 40 + 1000 + + 75497536 + 2048 + Kind + + + + + + 337641536 + 2048 + Text Cell + + + + + + 3 + YES + + + + 259 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Name + + + + + + 337641536 + 2048 + Text Cell + + + + + + 3 + YES + + + + 171 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Date Modified + + + + + + 337641536 + 2048 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 17 + 1925185536 + + + 1 + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {700, 195}} + + + + + 4 + + + + -2147483392 + {{544, 17}, {15, 180}} + + NO + + _doScroller: + 0.92307692307692313 + + + + -2147483392 + {{1, 197}, {598, 15}} + + NO + 1 + + _doScroller: + 0.98918083462132922 + + + + 2304 + + YES + + + {{1, 0}, {700, 17}} + + + + + 4 + + + + {{-1, 88}, {702, 213}} + + + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 292 + {{14, 52}, {114, 32}} + + YES + + 67108864 + 134217728 + Select All + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 292 + {{128, 52}, {114, 32}} + + YES + + 67108864 + 134217728 + Select None + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {700, 399} + + {{0, 0}, {1920, 1178}} + {700, 272} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + FileMigrationDelegate + + + 1 + 2 + {{157, 261}, {380, 200}} + 1685586944 + ROM Save File Migration + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 112}, {346, 68}} + + YES + + 67108864 + 272629760 + This ROM's save file has not been created yet, but there is a save file with this ROM that has the same file name. Would you like to migrate it to work with DeSmuME? + + + + + + NO + + + + 268 + {{270, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Migrate + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {126, 32}} + + YES + + 67108864 + 134217728 + Don't Migrate + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 48}, {346, 56}} + + YES + + 67108864 + 272633856 + Migrating the ROM save file will move it to DeSmuME's game data folder. If you do not migrate the save file now, a new file will be created instead. This will be like starting the ROM for the first time. + + + + + + NO + + + {380, 200} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{157, 298}, {335, 163}} + 1685586944 + Save State + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 109}, {301, 34}} + + YES + + 67108864 + 272629760 + Would you like to save the emulation state before closing? + + + + + + NO + + + + 268 + {{220, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Save + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{114, 12}, {106, 32}} + + 2 + YES + + 67108864 + 134217728 + Don't Save + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 59}, {301, 42}} + + YES + + 67108864 + 272633856 + If you haven't already saved using this ROM's save, then not saving the emulation state now will cause any unsaved changes to be lost. + + + + + + NO + + + + 268 + {{18, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + {335, 163} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 7 + 2 + {{235, 88}, {640, 480}} + 1685586944 + Cheat Manager + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 256 + {270, 335} + + YES + NO + YES + + + 256 + {270, 17} + + + + + + -2147483392 + {{256, 0}, {16, 17}} + + + + YES + + 20 + 20 + 20 + + 75497536 + 2048 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 67108864 + 0 + + + + 1215582464 + 2 + + + + + 200 + 25 + + YES + + + + 36 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Type + + + + + + 134217728 + 33554432 + 0 + 0 + 0 + NO + + + + cheatType + YES + compare: + + + + 205 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Description + + + + + + 337641472 + 4325632 + Text Cell + + + + + + 3 + YES + YES + + + + 3 + 2 + + + 42 + 1925185536 + + + 1 + + YES + + + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {270, 335}} + + + + + 4 + + + + -2147483392 + {{256, 17}, {15, 306}} + + NO + + _doScroller: + 0.99689440993788825 + + + + -2147483392 + {{1, 323}, {270, 15}} + + NO + 1 + + _doScroller: + 0.99630996309963105 + + + + 2304 + + YES + + + {{1, 0}, {270, 17}} + + + + + 4 + + + + {{20, 49}, {272, 353}} + + + 133682 + + + + + QSAAAEEgAABCMAAAQjAAAA + 0.25 + 4 + 1 + + + + 268 + {{113, 12}, {185, 32}} + + YES + + 67108864 + 134217728 + View Cheat Database... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{47, 19}, {28, 23}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 162 + + NSImage + NSRemoveTemplate + + + + 400 + 75 + + NO + + + + 268 + {{20, 19}, {28, 23}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 162 + + NSImage + NSAddTemplate + + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{100, 372}, {209, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Internal Cheat + + 1048576 + 2147483647 + 1 + + NSImage + Icon_DeSmuME_32x32 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Action Replay + + 1048576 + 2147483647 + + NSImage + Icon_ActionReplay_32x32 + + + + _popUpItemAction: + 1 + + + + + + 1 + YES + YES + 2 + + NO + + + + 301 + {{2, 33}, {320, 290}} + + NSView + + + + 268 + {{16, 402}, {129, 18}} + + YES + + 67108864 + 0 + Enable this cheat + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 378}, {83, 17}} + + YES + + 68157504 + 272630784 + Type: + + + + + + NO + + + + 12 + {{14, 320}, {292, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 268 + {{103, 331}, {203, 39}} + + YES + + -1805647871 + 272629760 + + + + YES + + + + NO + + + + 268 + {{15, 353}, {83, 17}} + + YES + + 68157504 + 272630784 + Description: + + + + + + NO + + + + 268 + {{114, 6}, {96, 32}} + + YES + + 67108864 + 134217728 + Apply + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {324, 428}} + + + + {{297, 16}, {326, 444}} + + {0, 0} + + 67108864 + 0 + Cheat Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{76, 408}, {190, 18}} + + YES + + -2080374784 + 0 + Enable Cheats + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 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 + + + {{20, 410}, {50, 50}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 265 + {{75, 432}, {168, 28}} + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + + + + 1292 + {{29, 419}, {32, 32}} + + 28682 + 100 + + + {640, 480} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + CheatManagerWindow + YES + + + CheatWindowDelegate + + + + 256 + + YES + + + 292 + {{17, 4}, {294, 14}} + + YES + + 68157504 + 138548224 + This list only shows the first 100 search results. + + LucidaGrande-Bold + 11 + 16 + + + + + + NO + + + + 1292 + {{214, 220}, {16, 16}} + + 28938 + 100 + + + + 268 + {{133, 369}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Unsigned + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + YES + Signed (NOT IMPLEMENTED) + + 2147483647 + + + _popUpItemAction: + + + + YES + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{59, 374}, {60, 14}} + + YES + + 68157504 + 272761856 + Sign Type: + + + + + + NO + + + + 268 + {{59, 398}, {72, 14}} + + YES + + 68157504 + 272761856 + Search Style: + + + + + + NO + + + + 268 + {{133, 393}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Exact Value + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Comparative + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{0, 237}, {328, 134}} + + NSView + + + + 268 + {{233, 213}, {80, 28}} + + YES + + 67108864 + 134348800 + Reset + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{59, 222}, {150, 14}} + + YES + + 68157504 + 272761856 + + + Search not started. + + + + + NO + + + + 268 + {{17, 222}, {45, 14}} + + YES + + 68157504 + 272761856 + Found: + + + + + + NO + + + + 284 + + YES + + + 2304 + + YES + + + 256 + {286, 176} + + YES + NO + YES + + + 256 + {286, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + + + YES + + 102 + 40 + 1000 + + 75497536 + 2048 + Address + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 69206081 + 137216 + Text Cell + + Monaco + 11 + 16 + + + + + + 3 + YES + + + + 178 + 40 + 1000 + + 75497536 + 2048 + Value + + + + + + 69206081 + 137216 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 14 + 1916796928 + + + 3 + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {286, 176}} + + + + + 4 + + + + -2147483392 + {{224, 17}, {15, 102}} + + NO + + _doScroller: + 0.94863013698630139 + + + + -2147483392 + {{1, 294}, {338, 15}} + + NO + 1 + + _doScroller: + 0.93888888888888888 + + + + 2304 + + YES + + + {{1, 0}, {286, 17}} + + + + + 4 + + + + {{20, 20}, {288, 194}} + + + 133682 + + + + + QSAAAEEgAABBgAAAQYAAAA + 0.25 + 4 + 1 + + + {328, 434} + NSView + + + + {328, 397} + {0, 397} + {328, 397} + 2 + 0.0 + 0.0 + + + + + 15 + 2 + {{235, 143}, {500, 416}} + 1685585920 + Cheat Database + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {500, 272} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {500, 287} + + YES + NO + YES + + + 256 + {500, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + + + YES + + 25 + 25 + 25 + + 75497536 + 2048 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 67108864 + 134217728 + + + + 1215582464 + 2 + + + + + 200 + 25 + + YES + + + + 464 + 40 + 1000 + + 75497536 + 2048 + Description + + + + + + 69206017 + 135168 + Text Cell + + + + + + 3 + YES + YES + + + + 3 + 2 + + + 39 + 1925185536 + + + 1 + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {500, 287}} + + + + + 4 + + + + -2147483392 + {{224, 17}, {15, 102}} + + NO + + _doScroller: + 0.94773519163763065 + + + + -2147483392 + {{1, 249}, {568, 15}} + + NO + 1 + + _doScroller: + 0.99206349206349209 + + + + 2304 + + YES + + + {{1, 0}, {500, 17}} + + + + + 4 + + + + {{-1, 57}, {502, 305}} + + + 133682 + + + + + QSAAAEEgAABCJAAAQiQAAA + 0.25 + 4 + 1 + + + + 268 + {{17, 370}, {120, 14}} + + YES + + 68157504 + 272761856 + R4 Cheats Database: + + + + + + NO + + + + 268 + {{17, 392}, {63, 14}} + + YES + + 68157504 + 272761856 + ROM Title: + + + + + + NO + + + + 292 + {{14, 12}, {114, 32}} + + YES + + 67108864 + 134217728 + Select All + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 292 + {{128, 12}, {114, 32}} + + YES + + 67108864 + 134217728 + Select None + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 289 + {{390, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Add + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 289 + {{294, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 265 + {{378, 370}, {42, 14}} + + YES + + 68157504 + 272761856 + Found: + + + + + + NO + + + + 268 + {{139, 370}, {237, 14}} + + YES + + 70254657 + 272765952 + + + Database file + + + + + NO + + + + 265 + {{422, 370}, {61, 14}} + + YES + + 70254657 + 272765952 + + + Count + + + + + NO + + + + 268 + {{82, 392}, {401, 14}} + + YES + + 70254657 + 272765952 + + + ROM title + + + + + NO + + + {500, 416} + + {{0, 0}, {1920, 1178}} + {500, 294} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + + 268 + + YES + + + 268 + {{233, 54}, {80, 28}} + + YES + + 67108864 + 134348800 + Search + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{20, 59}, {210, 19}} + + YES + + 342884416 + 268567552 + + Search value + + YES + 1 + + + + 0 + 0 + search + + _searchFieldSearch: + + 138690560 + 0 + + 400 + 75 + + + 0 + 0 + clear + + YES + + YES + + YES + AXDescription + NSAccessibilityEncodedAttributesValueType + + + YES + cancel + + + + + + _searchFieldCancel: + + 138690560 + 0 + + 400 + 75 + + 255 + + NO + + + + 268 + {{17, 86}, {294, 14}} + + YES + + 67108864 + 272760832 + Enter a search value, and then click Search. + + + + + + NO + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + Search for an exact value. + + + + + + NO + + + {328, 134} + NSView + + + + 268 + + YES + + + 268 + {{17, 86}, {294, 14}} + + YES + + 67108864 + 272760832 + Click Start Search to begin a comparative search. + + + + + + NO + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + Start a comparative search. + + + + + + NO + + + + 268 + {{116, 47}, {96, 28}} + + YES + + 67108864 + 134348800 + Start Search + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {328, 134} + NSView + + + + 268 + + YES + + + 268 + {{17, 72}, {294, 28}} + + YES + + 67108864 + 272760832 + Click the appropriate button based on how the target value is changing. + + + + + + NO + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + How is the value changing? + + + + + + NO + + + + 268 + {{163, 13}, {150, 28}} + + 1 + YES + + 67108864 + 134348800 + Value is now lower + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{163, 40}, {150, 28}} + + YES + + 67108864 + 134348800 + Value is now higher + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 13}, {150, 28}} + + 3 + YES + + 67108864 + 134348800 + Value did change + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 40}, {150, 28}} + + 2 + YES + + 67108864 + 134348800 + Value is unchanged + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {328, 134} + NSView + + + + 301 + + YES + + + 268 + {{197, 191}, {109, 32}} + + YES + + 67108864 + 134217728 + Write Once + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 20}, {286, 42}} + + YES + + 67108864 + 272760832 + Note: Enabling this cheat freezes the value in memory. If you only want to change a value without actually freezing it in memory, click Write Once. + + + + + + NO + + + + 268 + {{17, 262}, {128, 17}} + + YES + + 68157504 + 272630784 + Search for Address: + + + + + + NO + + + + 265 + {{149, 257}, {27, 27}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 160 + + + + 400 + 75 + + NO + + + + 268 + {{79, 230}, {38, 17}} + + YES + + 68157504 + 71304192 + 0x02 + + Monaco + 13 + 16 + + + + + + NO + + + + 268 + {{67, 198}, {128, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximumFractionDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{17, 201}, {45, 17}} + + YES + + 68157504 + 272630784 + Value: + + + + + + NO + + + + 268 + {{118, 228}, {77, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 268 + {{17, 231}, {60, 17}} + + YES + + 68157504 + 272630784 + Address: + + + + + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {190, 78}} + + YES + NO + 4 + 1 + + YES + + 67108864 + 0 + 1 Byte [0 - 255] + + + 1 + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + 2 Bytes [0 - 65536] + + + 2 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -13649,65 +13624,65 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - 3 Bytes [0 - 16777215] - - - 3 - 1211912448 - 0 - - 400 - 75 - - - -2080374784 - 0 - 4 Bytes [0 - 4294967295] - - - 4 - 1211912448 - 0 - - 400 - 75 - - - {190, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + 3 Bytes [0 - 16777215] + + + 3 + 1211912448 + 0 + + 400 + 75 + + + -2080374784 + 0 + 4 Bytes [0 - 4294967295] + + + 4 + 1211912448 + 0 + + 400 + 75 + + + {190, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -13732,437 +13707,443 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 3 - - - - - - - {{1, 1}, {226, 102}} - - - - {{46, 72}, {228, 118}} - - {0, 0} - - 67108864 - 0 - Select Memory Size - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {320, 290} - NSView - - - - 301 - - 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, 125}, {278, 223}} - - - - - - - - - - - YES - - - 166 - - - - 278 - 1 - - - 67120387 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - 4 - - 1 - - - 1 - - 6 - {463, 10000000} - - - YES - NSAllRomanInputSourcesLocaleIdentifier - - - - {{1, 1}, {278, 223}} - - - - - - 4 - - - - -2147483392 - {{231, 1}, {15, 172}} - - NO - - _doScroller: - 0.68253968253968256 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 0.97142857142857142 - 0.94565218687057495 - - - {{20, 20}, {280, 225}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 268 - {{17, 253}, {138, 17}} - - YES - - 68157504 - 272630784 - Action Replay Code: - - - - - - NO - - - {320, 290} - NSView - - - - 301 - - YES - - - 268 - - 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 - - - {{101, 133}, {128, 128}} - - YES - - 134217728 - 33554432 - - NSImage - Icon_CodeBreaker_128x128 - - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 35}, {286, 72}} - - YES - - 67108864 - 138412032 - Code Breaker cheats have not been implemented in this version of DeSmuME. - - LucidaGrande-Bold - 20 - 16 - - - - - - NO - - - {320, 290} - NSView - - - 7 - 2 - {{235, 230}, {640, 329}} - 1685586944 - SLOT-1 Manager - NSWindow - - - - - 256 - - YES - - - 268 - {{14, 12}, {168, 32}} - - YES - - 67108864 - 134217728 - Eject SLOT-1 Device - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{181, 22}, {105, 17}} - - YES - - 68157504 - 272630784 - SLOT-1 Status: - - - - - - NO - - - - 12 - {{12, 51}, {616, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{288, 22}, {330, 17}} - - YES - - 70254657 - 272634880 - - - slot1StatusText - - - - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {180, 102}} - - YES - NO - 4 - 1 - - YES - - -2080374784 - 0 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Retail - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 3 + + + + + + + {{1, 1}, {226, 102}} + + + + {{46, 72}, {228, 118}} + + {0, 0} + + 67108864 + 0 + Select Memory Size + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {320, 290} + NSView + + + + 301 + + 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, 125}, {278, 223}} + + + + + + + + + + + YES + + + 166 + + + + 278 + 1 + + + 100674819 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + 4 + + 1 + + + 1 + + 6 + {463, 10000000} + + + YES + NSAllRomanInputSourcesLocaleIdentifier + + + + {{1, 1}, {278, 223}} + + + + + + 4 + + + + -2147483392 + {{231, 1}, {15, 172}} + + NO + + _doScroller: + 0.68253968253968256 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 0.97142857142857142 + 0.94565218687057495 + + + {{20, 20}, {280, 225}} + + + 133650 + + + + 0.25 + 4 + 1 + + + + 268 + {{17, 253}, {138, 17}} + + YES + + 68157504 + 272630784 + Action Replay Code: + + + + + + NO + + + {320, 290} + NSView + + + + 301 + + YES + + + 268 + + 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 + + + {{101, 133}, {128, 128}} + + YES + + 134217728 + 33554432 + + NSImage + Icon_CodeBreaker_128x128 + + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 35}, {286, 72}} + + YES + + 67108864 + 138412032 + Code Breaker cheats have not been implemented in this version of DeSmuME. + + LucidaGrande-Bold + 20 + 16 + + + + + + NO + + + {320, 290} + NSView + + + 7 + 2 + {{235, 204}, {640, 355}} + 1685586944 + SLOT-1 Manager + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{14, 12}, {168, 32}} + + + YES + + 67108864 + 134217728 + Eject SLOT-1 Device + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{181, 22}, {105, 17}} + + + YES + + 68157504 + 272630784 + SLOT-1 Status: + + + + + + NO + + + + 12 + {{12, 51}, {616, 5}} + + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 268 + {{288, 22}, {330, 17}} + + + YES + + 70254657 + 272634880 + + + slot1StatusText + + + + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {260, 128}} + + + YES + NO + 5 + 1 + + YES + + -2080374784 + 0 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Retail (Auto-detect) + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -14239,65 +14220,78 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Retail with NAND Flash - - - 3 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - R4 - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {180, 24} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Retail with NAND Flash + + + 3 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Standard Retail Memory Card + ROM + + + 4 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + R4 + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {260, 24} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -14322,821 +14316,836 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{85, 15}, {409, 21}} - - YES - - 78643265 - 272635136 - - - Directory Path - - YES - - - - NO - - - - 268 - {{496, 8}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 124}, {482, 28}} - - YES - - 67108864 - 4325376 - Note: Changes to the SLOT-1 device will only take effect after a ROM is loaded or after the emulator is reset. - - - - - 1 - MCAwIDAAA - - - NO - - - - 268 - {{496, 120}, {96, 32}} - - YES - - 67108864 - 134217728 - Reset - - - -2034876416 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {604, 162}} - - - - {{17, 140}, {606, 178}} - - {0, 0} - - 67108864 - 0 - SLOT-1 Device Type - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 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 - - - {{18, 16}, {30, 30}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 265 - {{50, 18}, {168, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - - - - 1292 - {{18, 14}, {32, 32}} - - 28682 - 100 - - - - 268 - {{220, 17}, {201, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - YES - Actions - - 1048576 - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Load ROM… - - 2147483647 - - - _popUpItemAction: - - - - - Load Recent ROM - - 1048576 - 2147483647 - - - submenuAction: - - Load Recent ROM - - YES - - - Clear Menu - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - _NSRecentDocumentsMenu - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - Unload ROM - - 2147483647 - - - _popUpItemAction: - - - - - - YES - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {604, 56}} - - - - {{17, 64}, {606, 72}} - - {0, 0} - - 67108864 - 0 - Current ROM - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {640, 329} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - Slot1ManagerWindow - YES - - - 279 - 2 - {{230, 19}, {286, 522}} - -461896704 - Emulation Settings - NSPanel - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {171, 18}} - - 1 - YES - - -2080374784 - 131072 - Advanced Bus-Level Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {187, 18}} - - 10 - YES - - 67108864 - 131072 - Rigorous 3D Rendering Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 58}} - - - - {{17, 428}, {252, 74}} - - {0, 0} - - 67108864 - 0 - Emulation Timing - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 52}, {158, 18}} - - 2 - YES - - 67108864 - 131072 - Use External BIOS Images - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{35, 32}, {120, 18}} - - 3 - YES - - -2080374784 - 131072 - Emulate BIOS SWIs - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{35, 12}, {132, 18}} - - 4 - YES - - 67108864 - 131072 - Patch DelayLoop SWI - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 78}} - - - - {{17, 224}, {252, 94}} - - {0, 0} - - 67108864 - 0 - BIOS Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 32}, {177, 18}} - - 5 - YES - - 67108864 - 131072 - Use External Firmware Image - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 12}, {130, 18}} - - 6 - YES - - 67108864 - 131072 - Boot From Firmware - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 265 - {{176, 54}, {27, 27}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 160 - - - - 400 - 75 - - NO - - - - 268 - {{15, 61}, {157, 14}} - - YES - - 68157504 - 272761856 - Configure Internal Firmware: - - - - - - NO - - - {{1, 1}, {250, 85}} - - - - {{17, 119}, {252, 101}} - - {0, 0} - - 67108864 - 0 - Firmware Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{66, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - LucidaGrande - 12 - 16 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 32}, {127, 18}} - - 9 - YES - - 67108864 - 131072 - Use Debug Console - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 12}, {103, 18}} - - YES - - 67108864 - 131072 - Emulate Ensata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 58}} - - - - {{17, 41}, {252, 74}} - - {0, 0} - - 67108864 - 0 - Debugger Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 38}, {145, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 131072 - Interpreter - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Dynamic Recompiler - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{85, 15}, {409, 21}} + + + YES + + 78643265 + 272635136 + + + Directory Path + + YES + + + + NO + + + + 268 + {{496, 8}, {96, 32}} + + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 150}, {482, 28}} + + + YES + + 67108864 + 4325376 + Note: Changes to the SLOT-1 device will only take effect after a ROM is loaded or after the emulator is reset. + + + + + 1 + MCAwIDAAA + + + NO + + + + 268 + {{496, 146}, {96, 32}} + + + YES + + 67108864 + 134217728 + Reset + + + -2034876416 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {604, 188}} + + + + + {{17, 140}, {606, 204}} + + + {0, 0} + + 67108864 + 0 + SLOT-1 Device Type + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 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 + + + {{18, 16}, {30, 30}} + + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 265 + {{50, 18}, {168, 28}} + + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + + + + 1292 + {{18, 14}, {32, 32}} + + + 28682 + 100 + + + + 268 + {{220, 17}, {201, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + YES + Actions + + 1048576 + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Load ROM… + + 2147483647 + + + _popUpItemAction: + + + + + Load Recent ROM + + 1048576 + 2147483647 + + + submenuAction: + + Load Recent ROM + + YES + + + Clear Menu + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + _NSRecentDocumentsMenu + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + Unload ROM + + 2147483647 + + + _popUpItemAction: + + + + + + YES + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {604, 56}} + + + + + {{17, 64}, {606, 72}} + + + {0, 0} + + 67108864 + 0 + Current ROM + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {640, 355} + + + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + Slot1ManagerWindow + YES + + + 279 + 2 + {{230, 19}, {286, 522}} + -461896704 + Emulation Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {171, 18}} + + 1 + YES + + -2080374784 + 131072 + Advanced Bus-Level Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {187, 18}} + + 10 + YES + + 67108864 + 131072 + Rigorous 3D Rendering Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 58}} + + + + {{17, 428}, {252, 74}} + + {0, 0} + + 67108864 + 0 + Emulation Timing + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 52}, {158, 18}} + + 2 + YES + + 67108864 + 131072 + Use External BIOS Images + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{35, 32}, {120, 18}} + + 3 + YES + + -2080374784 + 131072 + Emulate BIOS SWIs + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{35, 12}, {132, 18}} + + 4 + YES + + 67108864 + 131072 + Patch DelayLoop SWI + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 78}} + + + + {{17, 224}, {252, 94}} + + {0, 0} + + 67108864 + 0 + BIOS Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 32}, {177, 18}} + + 5 + YES + + 67108864 + 131072 + Use External Firmware Image + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 12}, {130, 18}} + + 6 + YES + + 67108864 + 131072 + Boot From Firmware + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 265 + {{176, 54}, {27, 27}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 160 + + + + 400 + 75 + + NO + + + + 268 + {{15, 61}, {157, 14}} + + YES + + 68157504 + 272761856 + Configure Internal Firmware: + + + + + + NO + + + {{1, 1}, {250, 85}} + + + + {{17, 119}, {252, 101}} + + {0, 0} + + 67108864 + 0 + Firmware Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{66, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + LucidaGrande + 12 + 16 + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 32}, {127, 18}} + + 9 + YES + + 67108864 + 131072 + Use Debug Console + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 12}, {103, 18}} + + YES + + 67108864 + 131072 + Emulate Ensata + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 58}} + + + + {{17, 41}, {252, 74}} + + {0, 0} + + 67108864 + 0 + Debugger Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 38}, {145, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 131072 + Interpreter + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Dynamic Recompiler + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -15213,39 +15222,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {145, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {145, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -15270,1037 +15279,1036 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{198, 11}, {19, 27}} - - YES - - 67895328 - 0 - - - 12 - 1 - 100 - 1 - YES - - NO - - - - 268 - {{157, 16}, {40, 19}} - - YES - - -1804599231 - 71435264 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{74, 18}, {78, 14}} - - YES - - 68157504 - 71435264 - Block Size: - - - - - - NO - - - {{1, 1}, {250, 86}} - - - - {{17, 322}, {252, 102}} - - {0, 0} - - 67108864 - 0 - CPU Emulation Engine - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {286, 522} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - EmulationSettingsPanel - YES - - - - 256 - - YES - - - 268 - {{53, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Apply - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{107, 212}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Gray - - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Brown - - 2147483647 - - - - _popUpItemAction: - 1 - - - - - Red - - 2147483647 - - - - _popUpItemAction: - 2 - - - - - Pink - - 2147483647 - - - - _popUpItemAction: - 3 - - - - - Orange - - 2147483647 - - - - _popUpItemAction: - 4 - - - - - Yellow - - 2147483647 - - - - _popUpItemAction: - 5 - - - - - Lime Green - - 2147483647 - - - - _popUpItemAction: - 6 - - - - - Green - - 2147483647 - - - - _popUpItemAction: - 7 - - - - - Dark Green - - 2147483647 - - - - _popUpItemAction: - 8 - - - - - Sea Green - - 2147483647 - - - - _popUpItemAction: - 9 - - - - - Turquoise - - 2147483647 - - - - _popUpItemAction: - 10 - - - - - Blue - - 2147483647 - - - - _popUpItemAction: - 11 - - - - - Dark Blue - - 2147483647 - - - - _popUpItemAction: - 12 - - - - - Dark Purple - - 2147483647 - - - - _popUpItemAction: - 13 - - - - - Violet - - 2147483647 - - - - _popUpItemAction: - 14 - - - - - Magenta - - 2147483647 - - - - _popUpItemAction: - 15 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{107, 157}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - English - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - Japanese - - 2147483647 - - - _popUpItemAction: - - - - - - French - - 2147483647 - - - _popUpItemAction: - 2 - - - - - German - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Italian - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Spanish - - 2147483647 - - - _popUpItemAction: - 5 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 45}, {226, 98}} - - YES - - 67108864 - 272760832 - Note: To use this configuration, click Apply, and then reset the emulator. Also, these settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. - - - - - - NO - - - - 268 - {{110, 186}, {133, 27}} - - YES - - 71303168 - 131072 - - - - 0.0 - 224 - - - - NO - - - - 268 - {{17, 162}, {88, 14}} - - YES - - 68157504 - 71435264 - Language: - - - - - - NO - - - - 268 - {{17, 190}, {88, 14}} - - YES - - 68157504 - 71435264 - Birthday: - - - - - - NO - - - - 268 - {{17, 217}, {88, 14}} - - YES - - 68157504 - 71435264 - Favorite Color: - - - - - - NO - - - - 268 - {{17, 264}, {88, 14}} - - YES - - 68157504 - 71435264 - Message: - - - - - - NO - - - - 268 - {{17, 291}, {88, 14}} - - YES - - 68157504 - 71435264 - Nickname: - - - - - - NO - - - - 268 - {{110, 241}, {130, 40}} - - YES - - -1805647871 - 272760832 - - - Enter a message... - - YES - - - - NO - - - - 268 - {{110, 289}, {130, 19}} - - YES - - -1804599231 - 272761856 - - - Enter a nickname... - - YES - - - - NO - - - {260, 328} - NSView - - - - {260, 328} - {0, 328} - {260, 328} - 2 - 0.0 - 0.0 - - - - - 279 - 2 - {{1572, 795}, {194, 241}} - -461896704 - HUD Settings - NSPanel - - - - - 256 - - YES - - - 268 - {{18, 174}, {158, 18}} - - YES - - -2080374784 - 131072 - Frame Counter - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 154}, {158, 18}} - - YES - - -2080374784 - 131072 - Frames Per Second - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 134}, {158, 18}} - - YES - - -2080374784 - 131072 - Input - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 114}, {158, 18}} - - YES - - -2080374784 - 131072 - Graphical Input - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 94}, {158, 18}} - - YES - - -2080374784 - 131072 - Lag Counter - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 74}, {158, 18}} - - YES - - -2080374784 - 131072 - Microphone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 54}, {158, 18}} - - YES - - -2080374784 - 131072 - Real Time Clock - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{20, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{18, 205}, {158, 18}} - - YES - - -2080374784 - 131072 - Enable HUD - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 12 - {{21, 196}, {153, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - {194, 241} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - YES - - - 279 - 2 - {{1651, 276}, {204, 521}} - -461896704 - Set Video Output - NSPanel - - - - - 256 - - YES - - - 268 - {{20, 18}, {164, 19}} - - - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {129, 378}} - - - - YES - NO - 19 - 1 - - YES - - -2080374784 - 131072 - None - - - 1211912448 - 2 - - NSImage - NSRadioButton - - - - - 200 - 25 - - - 67108864 - 131072 - LQ2x - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{198, 11}, {19, 27}} + + YES + + 67895328 + 0 + + + 12 + 1 + 100 + 1 + YES + + NO + + + + 268 + {{157, 16}, {40, 19}} + + YES + + -1804599231 + 71435264 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{74, 18}, {78, 14}} + + YES + + 68157504 + 71435264 + Block Size: + + + + + + NO + + + {{1, 1}, {250, 86}} + + + + {{17, 322}, {252, 102}} + + {0, 0} + + 67108864 + 0 + CPU Emulation Engine + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {286, 522} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + EmulationSettingsPanel + YES + + + + 256 + + YES + + + 268 + {{53, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Apply + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{107, 212}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Gray + + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Brown + + 2147483647 + + + + _popUpItemAction: + 1 + + + + + Red + + 2147483647 + + + + _popUpItemAction: + 2 + + + + + Pink + + 2147483647 + + + + _popUpItemAction: + 3 + + + + + Orange + + 2147483647 + + + + _popUpItemAction: + 4 + + + + + Yellow + + 2147483647 + + + + _popUpItemAction: + 5 + + + + + Lime Green + + 2147483647 + + + + _popUpItemAction: + 6 + + + + + Green + + 2147483647 + + + + _popUpItemAction: + 7 + + + + + Dark Green + + 2147483647 + + + + _popUpItemAction: + 8 + + + + + Sea Green + + 2147483647 + + + + _popUpItemAction: + 9 + + + + + Turquoise + + 2147483647 + + + + _popUpItemAction: + 10 + + + + + Blue + + 2147483647 + + + + _popUpItemAction: + 11 + + + + + Dark Blue + + 2147483647 + + + + _popUpItemAction: + 12 + + + + + Dark Purple + + 2147483647 + + + + _popUpItemAction: + 13 + + + + + Violet + + 2147483647 + + + + _popUpItemAction: + 14 + + + + + Magenta + + 2147483647 + + + + _popUpItemAction: + 15 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{107, 157}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + English + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + Japanese + + 2147483647 + + + _popUpItemAction: + + + + + + French + + 2147483647 + + + _popUpItemAction: + 2 + + + + + German + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Italian + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Spanish + + 2147483647 + + + _popUpItemAction: + 5 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 45}, {226, 98}} + + YES + + 67108864 + 272760832 + Note: To use this configuration, click Apply, and then reset the emulator. Also, these settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. + + + + + + NO + + + + 268 + {{110, 186}, {133, 27}} + + YES + + 71303168 + 131072 + + + + 0.0 + 224 + + + + NO + + + + 268 + {{17, 162}, {88, 14}} + + YES + + 68157504 + 71435264 + Language: + + + + + + NO + + + + 268 + {{17, 190}, {88, 14}} + + YES + + 68157504 + 71435264 + Birthday: + + + + + + NO + + + + 268 + {{17, 217}, {88, 14}} + + YES + + 68157504 + 71435264 + Favorite Color: + + + + + + NO + + + + 268 + {{17, 264}, {88, 14}} + + YES + + 68157504 + 71435264 + Message: + + + + + + NO + + + + 268 + {{17, 291}, {88, 14}} + + YES + + 68157504 + 71435264 + Nickname: + + + + + + NO + + + + 268 + {{110, 241}, {130, 40}} + + YES + + -1805647871 + 272760832 + + + Enter a message... + + YES + + + + NO + + + + 268 + {{110, 289}, {130, 19}} + + YES + + -1804599231 + 272761856 + + + Enter a nickname... + + YES + + + + NO + + + {260, 328} + NSView + + + + {260, 328} + {0, 328} + {260, 328} + 2 + 0.0 + 0.0 + + + + + 279 + 2 + {{1572, 795}, {194, 241}} + -461896704 + HUD Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{18, 174}, {158, 18}} + + YES + + -2080374784 + 131072 + Frame Counter + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 154}, {158, 18}} + + YES + + -2080374784 + 131072 + Frames Per Second + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 134}, {158, 18}} + + YES + + -2080374784 + 131072 + Input + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 114}, {158, 18}} + + YES + + -2080374784 + 131072 + Graphical Input + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 94}, {158, 18}} + + YES + + -2080374784 + 131072 + Lag Counter + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 74}, {158, 18}} + + YES + + -2080374784 + 131072 + Microphone + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 54}, {158, 18}} + + YES + + -2080374784 + 131072 + Real Time Clock + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{20, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{18, 205}, {158, 18}} + + YES + + -2080374784 + 131072 + Enable HUD + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 12 + {{21, 196}, {153, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + {194, 241} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 279 + 2 + {{1651, 276}, {204, 521}} + -461896704 + Set Video Output + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{20, 18}, {164, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {129, 378}} + + + YES + NO + 19 + 1 + + YES + + -2080374784 + 131072 + None + + + 1211912448 + 2 + + NSImage + NSRadioButton + + + + + 200 + 25 + + + 67108864 + 131072 + LQ2x + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -16377,342 +16385,342 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 1140850688 - 131072 - LQ2xS - - - 2 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - 1140850688 - 131072 - HQ2x - - - 3 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - HQ2xS - - - 4 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - HQ4x - - - 5 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - HQ4XS - - - 18 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 2xSaI - - - 6 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - Super 2xSaI - - - 7 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Super Eagle - - - 8 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Scanline - - - 9 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - Bilinear - - - 10 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Nearest 2x - - - 11 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Nearest 1.5x - - - 12 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Nearest+ 1.5x - - - 13 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - EPX - - - 14 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - EPX+ - - - 15 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - EPX 1.5x - - - 16 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - 67108864 - 131072 - EPX+ 1.5x - - - 17 - 1211912448 - 0 - - 400 - 75 - - - {129, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 1140850688 + 131072 + LQ2xS + + + 2 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + 1140850688 + 131072 + HQ2x + + + 3 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + HQ2xS + + + 4 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + HQ4x + + + 5 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + HQ4XS + + + 18 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 2xSaI + + + 6 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + Super 2xSaI + + + 7 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Super Eagle + + + 8 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Scanline + + + 9 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + Bilinear + + + 10 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Nearest 2x + + + 11 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Nearest 1.5x + + + 12 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Nearest+ 1.5x + + + 13 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + EPX + + + 14 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + EPX+ + + + 15 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + EPX 1.5x + + + 16 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + 67108864 + 131072 + EPX+ 1.5x + + + 17 + 1211912448 + 0 + + 400 + 75 + + + {129, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -16737,421 +16745,416 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {168, 402}} - - - - - - {{17, 41}, {170, 418}} - - - - {0, 0} - - 67108864 - 0 - Video Filters - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{17, 485}, {169, 18}} - - - - YES - - -2080374784 - 131072 - Use Bilinear Filtered Output - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 465}, {135, 18}} - - - - YES - - 67108864 - 131072 - Use Vertical Sync - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {204, 521} - - - - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - DisplayVideoSettingsPanel - YES - - - 279 - 2 - {{149, 108}, {301, 560}} - -461896704 - 3D Rendering Settings - NSPanel - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 77}, {206, 18}} - - YES - - -2080374784 - 131072 - High-Precision Color Interpolation - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 57}, {134, 18}} - - YES - - -2080374784 - 131072 - Enable Edge Marking - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 37}, {80, 18}} - - YES - - -2080374784 - 131072 - Enable Fog - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{185, 12}, {45, 19}} - - YES - - -1804599231 - 71435264 - - - - - YES - - YES - allowsFloats - formatterBehavior - groupingSize - locale - maximum - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - - - YES - - - - - - - - - # - -∞ - - - # - +∞ - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - - - - 268 - {{15, 14}, {165, 14}} - - YES - - 68157504 - 71435264 - Depth Comparison Threshold: - - - - - - NO - - - - 268 - {{231, 7}, {19, 27}} - - YES - - 67895328 - 0 - - - 100 - 1 - YES - - NO - - - {{1, 1}, {265, 103}} - - - - {{17, 241}, {267, 119}} - - {0, 0} - - 67108864 - 0 - SoftRasterizer Options - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{73, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {107, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - SoftRasterizer - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {168, 402}} + + + + + {{17, 41}, {170, 418}} + + + {0, 0} + + 67108864 + 0 + Video Filters + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{17, 485}, {169, 18}} + + + YES + + -2080374784 + 131072 + Use Bilinear Filtered Output + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{17, 465}, {135, 18}} + + + YES + + 67108864 + 131072 + Use Vertical Sync + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {204, 521} + + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + DisplayVideoSettingsPanel + YES + + + 279 + 2 + {{149, 108}, {301, 560}} + -461896704 + 3D Rendering Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 77}, {206, 18}} + + YES + + -2080374784 + 131072 + High-Precision Color Interpolation + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 57}, {134, 18}} + + YES + + -2080374784 + 131072 + Enable Edge Marking + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 37}, {80, 18}} + + YES + + -2080374784 + 131072 + Enable Fog + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{185, 12}, {45, 19}} + + YES + + -1804599231 + 71435264 + + + + + YES + + YES + allowsFloats + formatterBehavior + groupingSize + locale + maximum + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + + + YES + + + + + + + + + # + -∞ + + + # + +∞ + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + + + + 268 + {{15, 14}, {165, 14}} + + YES + + 68157504 + 71435264 + Depth Comparison Threshold: + + + + + + NO + + + + 268 + {{231, 7}, {19, 27}} + + YES + + 67895328 + 0 + + + 100 + 1 + YES + + NO + + + {{1, 1}, {265, 103}} + + + + {{17, 241}, {267, 119}} + + {0, 0} + + 67108864 + 0 + SoftRasterizer Options + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{73, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {107, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + SoftRasterizer + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -17228,52 +17231,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 131072 - OpenGL - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {107, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 131072 + OpenGL + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {107, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -17298,102 +17301,102 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 1 - - - - - - - {{1, 1}, {265, 82}} - - - - {{17, 442}, {267, 98}} - - {0, 0} - - 67108864 - 0 - 3D Rendering Engine - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {120, 98}} - - YES - NO - 5 - 1 - - YES - - -2080374784 - 131072 - Automatic - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Single-Threaded - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + {{1, 1}, {265, 82}} + + + + {{17, 442}, {267, 98}} + + {0, 0} + + 67108864 + 0 + 3D Rendering Engine + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {120, 98}} + + YES + NO + 5 + 1 + + YES + + -2080374784 + 131072 + Automatic + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Single-Threaded + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -17470,113 +17473,113 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 131072 - 2 Threads - - - 2 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - 67108864 - 131072 - 4 Threads - - - 4 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 8 Threads - - - 8 - 1211912448 - 0 - - 400 - 75 - - - {120, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 131072 + 2 Threads + + + 2 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + 67108864 + 131072 + 4 Threads + + + 4 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 8 Threads + + + 8 + 1211912448 + 0 + + 400 + 75 + + + {120, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -17601,262 +17604,263 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {265, 122}} - - - - {{17, 41}, {267, 138}} - - {0, 0} - - 67108864 - 0 - Rendering Threads - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 32}, {113, 18}} - - YES - - -2080374784 - 131072 - Enable Line Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 12}, {108, 18}} - - YES - - -2080374784 - 131072 - Enable Textures - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {265, 58}} - - - - {{17, 364}, {267, 74}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {192, 18}} - - YES - - 67108864 - 131072 - Enable Multisample Antialiasing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {265, 38}} - - - - {{17, 183}, {267, 54}} - - {0, 0} - - 67108864 - 0 - OpenGL Options - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {301, 560} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - 3DRenderingSettingsPanel - YES - - - 279 - 2 - {{230, 30}, {288, 511}} - -461896704 - Sound Settings - NSPanel - - - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {61, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Linear - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {265, 122}} + + + + {{17, 41}, {267, 138}} + + {0, 0} + + 67108864 + 0 + Rendering Threads + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 32}, {113, 18}} + + YES + + -2080374784 + 131072 + Enable Line Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 12}, {108, 18}} + + YES + + -2080374784 + 131072 + Enable Textures + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {265, 58}} + + + + {{17, 364}, {267, 74}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {192, 18}} + + YES + + 67108864 + 131072 + Enable Multisample Antialiasing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {265, 38}} + + + + {{17, 183}, {267, 54}} + + {0, 0} + + 67108864 + 0 + OpenGL Options + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {301, 560} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + 3DRenderingSettingsPanel + YES + + + 279 + 2 + {{230, 30}, {288, 511}} + -461896704 + Sound Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {61, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Linear + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -17933,52 +17937,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - -2080374784 - 131072 - Cosine - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {61, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + -2080374784 + 131072 + Cosine + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {61, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18003,102 +18007,102 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 2 - - - - - - - {{1, 1}, {253, 82}} - - - - {{16, 189}, {255, 98}} - - {0, 0} - - 67108864 - 0 - SPU Interpolation Method - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 80}, {154, 38}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 131072 - Dual SPU Synch/Asynch - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - Synchronous - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 2 + + + + + + + {{1, 1}, {253, 82}} + + + + {{16, 189}, {255, 98}} + + {0, 0} + + 67108864 + 0 + SPU Interpolation Method + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 80}, {154, 38}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 131072 + Dual SPU Synch/Asynch + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + Synchronous + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18175,39 +18179,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {154, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {154, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18232,67 +18236,67 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 1 - - - - - - - - 268 - {{53, 14}, {100, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 131072 - "N" Method - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - "Z" Method - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + + 268 + {{53, 14}, {100, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 131072 + "N" Method + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + "Z" Method + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18369,52 +18373,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - -2080374784 - 131072 - "P" Method - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {100, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + -2080374784 + 131072 + "P" Method + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {100, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18439,347 +18443,347 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 2 - - - - - - - {{1, 1}, {253, 128}} - - - - {{16, 41}, {255, 144}} - - {0, 0} - - 67108864 - 0 - SPU Sound Synchronization Method - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 12}, {129, 18}} - - YES - - -2080374784 - 131072 - Advanced SPU Logic - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {253, 38}} - - - - {{16, 291}, {255, 54}} - - {0, 0} - - 67108864 - 0 - SPU Configuration - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{47, 13}, {132, 21}} - - YES - - 67371264 - 0 - - - 100 - 0.0 - 100 - 0.0 - 0 - 1 - NO - NO - - NO - - - - 268 - {{182, 17}, {56, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - multiplier - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - #0.0% - #0.0% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f%% - - - - - NO - - - - 289 - - 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 - - - {{18, 14}, {20, 20}} - - YES - - 134217728 - 33554432 - - 0 - 2 - 0 - YES - - NO - YES - - - {{1, 1}, {253, 44}} - - - - {{16, 349}, {255, 60}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 268 - {{66, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {116, 38}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - OS X Core Audio - - - 58325 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 2 + + + + + + + {{1, 1}, {253, 128}} + + + + {{16, 41}, {255, 144}} + + {0, 0} + + 67108864 + 0 + SPU Sound Synchronization Method + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 12}, {129, 18}} + + YES + + -2080374784 + 131072 + Advanced SPU Logic + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {253, 38}} + + + + {{16, 291}, {255, 54}} + + {0, 0} + + 67108864 + 0 + SPU Configuration + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{47, 13}, {132, 21}} + + YES + + 67371264 + 0 + + + 100 + 0.0 + 100 + 0.0 + 0 + 1 + NO + NO + + NO + + + + 268 + {{182, 17}, {56, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + multiplier + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + #0.0% + #0.0% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f%% + + + + + NO + + + + 289 + + 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 + + + {{18, 14}, {20, 20}} + + YES + + 134217728 + 33554432 + + 0 + 2 + 0 + YES + + NO + YES + + + {{1, 1}, {253, 44}} + + + + {{16, 349}, {255, 60}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 268 + {{66, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {116, 38}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + OS X Core Audio + + + 58325 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18856,39 +18860,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {116, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {116, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18913,32658 +18917,33460 @@ AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFugEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFwgAAAAAACAAIAAgACAABAAEAAQABA - - - - - - - - 400 - 75 - - 1 - - - - - - - {{1, 1}, {253, 62}} - - - - {{16, 413}, {255, 78}} - - {0, 0} - - 67108864 - 0 - Audio Output Engine - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {288, 511} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - SoundSettingsPanel - YES - - - 8215 - 2 - {{107, 480}, {580, 588}} - -461897728 - ROM Info - NSPanel - - - - - 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 - - - - 268 - {{15, 64}, {131, 17}} - - - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - - - - 268 - {{15, 39}, {131, 17}} - - - - YES - - 68157504 - 272630784 - ROM Developer: - - - - - - NO - - - - 268 - {{15, 14}, {131, 17}} - - - - YES - - 68157504 - 272630784 - Chip Size: - - - - - - NO - - - - 268 - {{148, 89}, {245, 17}} - - - - YES - - 70254657 - 4199424 - - - ? - - - - 1 - MSAxIDEAA - - - NO - - - - 268 - {{148, 64}, {245, 17}} - - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - - - - 268 - {{148, 39}, {245, 17}} - - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - - - - 268 - {{148, 14}, {245, 17}} - - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - - - {{1, 1}, {408, 116}} - - - - - - {{153, 436}, {410, 132}} - - - - {0, 0} - - 67108864 - 0 - General Info - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 376}, {186, 14}} - - - - YES - - 68157504 - 272897024 - JAPANESE TITLE: - - - - - - NO - - - - 268 - {{15, 312}, {186, 14}} - - - - YES - - 68157504 - 272897024 - ENGLISH TITLE: - - - - - - NO - - - - 268 - {{15, 248}, {186, 14}} - - - - YES - - 68157504 - 272897024 - FRENCH TITLE: - - - - - - NO - - - - 268 - {{15, 184}, {186, 14}} - - - - YES - - 68157504 - 272897024 - GERMAN TITLE: - - - - - - NO - - - - 268 - {{15, 120}, {186, 14}} - - - - YES - - 68157504 - 272897024 - ITALIAN TITLE: - - - - - - NO - - - - 268 - {{15, 56}, {186, 14}} - - - - YES - - 68157504 - 272897024 - SPANISH TITLE: - - - - - - NO - - - - 268 - {{15, 334}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - - 268 - {{15, 270}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - - 268 - {{15, 206}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - - 268 - {{15, 142}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - - 268 - {{15, 78}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - - 268 - {{15, 14}, {186, 42}} - - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - - - {{1, 1}, {216, 400}} - - - - - - {{17, 16}, {218, 416}} - - - - {0, 0} - - 67108864 - 0 - Titles - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 168}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM9 Binary ROM Offset: - - - - - - NO - - - - 268 - {{15, 146}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM9 Binary Entry Address: - - - - - - NO - - - - 268 - {{15, 124}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM9 Binary Start Address: - - - - - - NO - - - - 268 - {{15, 102}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM9 Binary Size: - - - - - - NO - - - - 268 - {{15, 80}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM7 Binary ROM Offset: - - - - - - NO - - - - 268 - {{15, 58}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM7 Binary Entry Address: - - - - - - NO - - - - 268 - {{15, 36}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM7 Binary Start Address: - - - - - - NO - - - - 268 - {{15, 14}, {186, 14}} - - - - YES - - 68157504 - 272630784 - ARM7 Binary Size: - - - - - - NO - - - - 268 - {{203, 168}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - ? - - - - - NO - - - - 268 - {{203, 146}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{203, 124}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{203, 102}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - - - - 268 - {{203, 80}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{203, 58}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{203, 36}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{203, 14}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - - - {{1, 1}, {324, 192}} - - - - - - {{237, 224}, {326, 208}} - - - - {0, 0} - - 67108864 - 0 - ARM9 & ARM7 Binaries - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 80}, {186, 14}} - - - - YES - - 68157504 - 272630784 - FNT ROM Offset: - - - - - - NO - - - - 268 - {{203, 80}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{15, 58}, {186, 14}} - - - - YES - - 68157504 - 272630784 - FNT Size: - - - - - - NO - - - - 268 - {{203, 58}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - - - - 268 - {{15, 36}, {186, 14}} - - - - YES - - 68157504 - 272630784 - FAT ROM Offset: - - - - - - NO - - - - 268 - {{203, 36}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{15, 14}, {186, 14}} - - - - YES - - 68157504 - 272630784 - FAT Size: - - - - - - NO - - - - 268 - {{203, 14}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - - - {{1, 1}, {324, 104}} - - - - - - {{237, 98}, {326, 120}} - - - - {0, 0} - - 67108864 - 0 - File System - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 36}, {186, 14}} - - - - YES - - 68157504 - 272630784 - Icon/Title Region ROM Offset: - - - - - - NO - - - - 268 - {{203, 36}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - - 268 - {{15, 14}, {186, 14}} - - - - YES - - 68157504 - 272630784 - Used ROM Size: - - - - - - NO - - - - 268 - {{203, 14}, {106, 14}} - - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - - - {{1, 1}, {324, 60}} - - - - - - {{237, 16}, {326, 76}} - - - - {0, 0} - - 67108864 - 0 - Miscellaneous - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {580, 588} - - - - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - ROMInfoPanel - YES - - - 279 - 2 - {{1360, 99}, {467, 128}} - -461897728 - Set Speed Limit - NSPanel - - - - - 256 - - YES - - - 268 - {{30, 43}, {411, 26}} - - - YES - - -2080112384 - 0 - - - 10 - 0.0 - 1 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{20, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 0x - - - - - - NO - - - - 268 - {{412, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 10x - - - - - - NO - - - - 268 - {{98, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 2x - - - - - - NO - - - - 268 - {{177, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 4x - - - - - - NO - - - - 268 - {{255, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 6x - - - - - - NO - - - - 268 - {{335, 70}, {38, 17}} - - - YES - - 68157504 - 138413056 - 8x - - - - - - NO - - - - 268 - {{32, 18}, {133, 19}} - - - 100 - YES - - 67108864 - 134217728 - Set to Normal Speed - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{203, 21}, {156, 17}} - - - YES - - 68157504 - 71304192 - Speed limit set to: - - - - - - NO - - - - 268 - {{361, 21}, {81, 17}} - - YES - - 68157504 - 4195328 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - #0.00x - -∞ - - - #0.00x - +∞ - - - - #0.00x - #0.00x - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.2fx - - - - - NO - - - - 268 - {{158, 93}, {154, 18}} - - - YES - - -2080374784 - 0 - Enable Speed Limit - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {467, 128} - - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - SetSpeedLimitPanel - YES - - - 279 - 2 - {{162, 281}, {213, 198}} - -461896704 - Set Rotation - NSPanel - - - - - 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 - - - - 268 - {{85, 94}, {39, 17}} - - YES - - 68157504 - 138413056 - 180º - - - - - - NO - - - - 268 - {{44, 127}, {39, 17}} - - YES - - 68157504 - 138413056 - 270º - - - - - - NO - - - - 268 - {{125, 127}, {38, 17}} - - YES - - 68157504 - 138413056 - 90º - - - - - - NO - - - - 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 - - - - 268 - {{24, 69}, {101, 17}} - - YES - - 68157504 - 272630784 - Rotation set to: - - - - - - NO - - - - 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}} - {10000000000000, 10000000000000} - SetRotationPanel - YES - - - 279 - 2 - {{230, 408}, {441, 133}} - -461896704 - Set Separation - NSPanel - - - - - 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 - - - - 268 - {{298, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 150% - - - - - - NO - - - - 268 - {{205, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 100% - - - - - - NO - - - - 268 - {{113, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 50% - - - - - - NO - - - - 268 - {{22, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 0% - - - - - - NO - - - - 268 - {{249, 51}, {107, 17}} - - YES - - 68157504 - 71304192 - Gap Percentage: - - - - - - NO - - - - 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 - - - - 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}} - {10000000000000, 10000000000000} - SetSeparationPanel - YES - - - 279 - 2 - {{230, 202}, {173, 339}} - -461896704 - GPU Layers - NSPanel - - - - - 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 - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 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 - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - {173, 339} - - {{0, 0}, {1920, 1178}} - {10000000000000, 10000000000000} - GPULayersPanel - YES - - - - 268 - - YES - - - 268 - {{195, 5}, {226, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 1 - - - 400 - 75 - - - DeSmuME ROM Save (.dsv) - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - No$GBA ROM Save (.sav) - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Raw Save File (.sav) - - 2147483647 - - - _popUpItemAction: - 2 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 11}, {176, 17}} - - YES - - 68157504 - 71304192 - Select ROM Save Format: - - - - - - NO - - - {450, 35} - NSView - - - 7 - 2 - {{75, 507}, {580, 592}} - 1685586944 - Troubleshooting Form - NSWindow - - - {580, 592} - {580, 592} - - - 256 - {580, 592} - - {{0, 0}, {1920, 1178}} - {580, 614} - {580, 614} - YES - - - - 268 - - YES - - - 1292 - {{364, 339}, {32, 32}} - - 28682 - 100 - - - - 265 - {{396, 343}, {168, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - - - - 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 - - - 67121027 - 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 - - - - 34 - {{12, 50}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 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 - - - - 269 - {{17, 309}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us what you need help with. - - - - - - NO - - - - 10 - {{12, 332}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 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 - - - - 269 - {{17, 539}, {546, 17}} - - YES - - 68157504 - 138413056 - DeSmuME Technical Support Request Form - - - - - - NO - - - - 10 - {{12, 478}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 269 - {{17, 455}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us about the ROM. - - - - - - NO - - - - 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 - - - - 268 - {{17, 347}, {77, 17}} - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - - - - 268 - {{17, 377}, {78, 17}} - - YES - - 68157504 - 272630784 - ROM Name: - - - - - - NO - - - - 266 - {{100, 345}, {256, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 266 - {{100, 375}, {256, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 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 - - - - 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 - - - 67121027 - 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 - - - 67121027 - 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 - - - - 34 - {{12, 50}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 256 - {{17, 145}, {206, 14}} - - YES - - 68157504 - 272761856 - Expected Behavior: - - - - - - NO - - - - 256 - {{17, 251}, {206, 14}} - - YES - - 68157504 - 272761856 - Observed Behavior: - - - - - - NO - - - - 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 - - - - 269 - {{17, 309}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us what is happening. - - - - - - NO - - - - 10 - {{12, 332}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 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 - - - - 269 - {{17, 539}, {546, 17}} - - YES - - 68157504 - 138413056 - DeSmuME Bug Report Form - - - - - - NO - - - - 10 - {{12, 478}, {556, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 269 - {{17, 455}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us about the ROM. - - - - - - NO - - - - 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 - - - - 268 - {{17, 347}, {77, 17}} - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - - - - 268 - {{17, 377}, {78, 17}} - - YES - - 68157504 - 272630784 - ROM Name: - - - - - - NO - - - - 266 - {{100, 345}, {255, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 266 - {{100, 375}, {255, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - - - - 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 - - - - 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 - {{0, 157}, {523, 443}} - - - - - - - - - - - YES - - - 38 - - - - 523 - 1 - - - 67111169 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 0 - - 6 - {597, 10000000} - - - - {{1, 1}, {523, 443}} - - - - - - 4 - - - - 256 - {{524, 1}, {15, 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 - - CocoaDSCore - - - - - YES - spuInterpolationMode - spuSyncMode - spuSyncMethod - spuAdvancedLogic - volume - audioOutputEngine - - YES - - - - - YES - isWorking - isRomLoading - statusText - currentVolumeValue - currentVolumeIcon - isShowingSaveStateDialog - isShowingFileMigrationDialog - isUserInterfaceBlockingExecution - currentSaveStateURL - selectedRomSaveTypeID - currentRom - render3DRenderingEngine - render3DHighPrecisionColorInterpolation - render3DEdgeMarking - render3DFog - render3DTextures - render3DDepthComparisonThreshold - render3DThreads - render3DLineHack - render3DMultisample - mainWindow - mainWindow.displayRotation - mainWindow.videoFilterType - mainWindow.useBilinearOutput - mainWindow.useVerticalSync - mainWindow.screenshotFileFormat - selectedExportRomSaveID - mainWindow.displayGap - - 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 - - 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 - - - - - YES - - - terminate: - - - - 449 - - - - delegate - - - - 495 - - - - performMiniaturize: - - - - 37 - - - - arrangeInFront: - - - - 39 - - - - clearRecentDocuments: - - - - 127 - - - - performZoom: - - - - 240 - - - - hide: - - - - 367 - - - - hideOtherApplications: - - - - 368 - - - - unhideAllApplications: - - - - 370 - - - - showHelp: - - - - 493 - - - - cut: - - - - 3252 - - - - paste: - - - - 3257 - - - - redo: - - - - 3266 - - - - delete: - - - - 3267 - - - - selectAll: - - - - 3270 - - - - undo: - - - - 3272 - - - - copy: - - - - 7011 - - - - clearRecentDocuments: - - - - 7999 - - - - 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 - - - - toggleVerticalSync: - - - - 8274 - - - - toggleBilinearFilteredOutput: - - - - 8275 - - - - changeVideoFilter: - - - - 8276 - - - - changeVideoFilter: - - - - 8277 - - - - changeVideoFilter: - - - - 8278 - - - - changeVideoFilter: - - - - 8279 - - - - changeVideoFilter: - - - - 8280 - - - - changeVideoFilter: - - - - 8281 - - - - changeVideoFilter: - - - - 8282 - - - - changeVideoFilter: - - - - 8283 - - - - changeVideoFilter: - - - - 8284 - - - - changeVideoFilter: - - - - 8285 - - - - changeVideoFilter: - - - - 8286 - - - - changeVideoFilter: - - - - 8287 - - - - changeVideoFilter: - - - - 8288 - - - - changeVideoFilter: - - - - 8289 - - - - changeVideoFilter: - - - - 8290 - - - - changeVideoFilter: - - - - 8291 - - - - changeVideoFilter: - - - - 8292 - - - - changeVideoFilter: - - - - 8293 - - - - changeVideoFilter: - - - - 8294 - - - - toggleFullScreenDisplay: - - - - 8297 - - - - launchWebsite: - - - - 1101 - - - - launchForums: - - - - 1102 - - - - bugReport: - - - - 1103 - - - - mLoadStateSlot - - - - 1775 - - - - mSaveStateSlot - - - - 1776 - - - - prefGeneralView - - - - 2093 - - - - prefWindow - - - - 2094 - - - - prefWindowController - - - - 3532 - - - - boxARMBinaries - - - - 3954 - - - - boxFileSystem - - - - 3955 - - - - boxGeneralInfo - - - - 3956 - - - - boxMisc - - - - 3957 - - - - boxTitles - - - - 3958 - - - - cdsCoreController - - - - 4955 - - - - cheatListWindow - - - - 5146 - - - - cheatWindowController - - - - 5147 - - - - aboutWindowController - - - - 5721 - - - - troubleshootingWindow - - - - 6449 - - - - supportRequest: - - - - 6452 - - - - emuControlController - - - - 6808 - - - - cdsSoundController - - - - 6824 - - - - romInfoPanelController - - - - 6825 - - - - inputManager - - - - 7004 - - - - inputPrefsView - - - - 7109 - - - - migrationDelegate - - - - 8098 - - - - makeKeyAndOrderFront: - - - - 782 - - - - delegate - - - - 2025 - - - - contentView - - - - 718 - - - - parentWindow - - - - 4791 - - - - toggle: - - - - 4819 - - - - makeKeyAndOrderFront: - - - - 8250 - - - - makeKeyAndOrderFront: - - - - 2611 - - - - value: selection.iconImage - - - - - - value: selection.iconImage - value - selection.iconImage - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEnabled - NSRaisesForNotApplicableKeys - - - YES - - - - - - 2 - - - 5580 - - - - 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 - - - - makeKeyAndOrderFront: - - - - 4279 - - - - value: selection.speedScalar - - - - - - value: selection.speedScalar - value - selection.speedScalar - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEnabled - NSRaisesForNotApplicableKeys - NSValidatesImmediately - - - YES - - - - - - - 2 - - - 1872 - - - - value: selection.speedScalar - - - - - - value: selection.speedScalar - value - selection.speedScalar - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - NSValidatesImmediately - - - YES - - - - - - 2 - - - 1869 - - - - value: selection.romInternalName - - - - - - value: selection.romInternalName - value - selection.romInternalName - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - - - YES - - - - - 2 - - - 5723 - - - - value: selection.romSerial - - - - - - value: selection.romSerial - value - selection.romSerial - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - - - YES - - - - - 2 - - - 5722 - - - - value: selection.gameDeveloperWithCode - - - - - - value: selection.gameDeveloperWithCode - value - selection.gameDeveloperWithCode - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - - - YES - - - - - 2 - - - 8299 - - - - value: selection.romSize - - - - - - value: selection.romSize - value - selection.romSize - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - - - YES - - - - - 2 - - - 5584 - - - - value: values.General_ExecuteROMOnLoad - - - - - - value: values.General_ExecuteROMOnLoad - value - values.General_ExecuteROMOnLoad - 2 - - - 6119 - - - - selectedTag: values.DisplayView_Size - - - - - - selectedTag: values.DisplayView_Size - selectedTag - values.DisplayView_Size - 2 - - - 5973 - - - - value: values.General_AutoloadROMOnLaunch - - - - - - value: values.General_AutoloadROMOnLaunch - value - values.General_AutoloadROMOnLaunch - 2 - - - 6120 - - - - selectedTag: values.General_AutoloadROMOption - - - - - - selectedTag: values.General_AutoloadROMOption - selectedTag - values.General_AutoloadROMOption - 2 - - - 6121 - - - - enabled: values.General_AutoloadROMOnLaunch - - - - - - enabled: values.General_AutoloadROMOnLaunch - enabled - values.General_AutoloadROMOnLaunch - 2 - - - 6122 - - - - enabled: values.General_AutoloadROMSelectedPath - - - - - - enabled: values.General_AutoloadROMSelectedPath - enabled - values.General_AutoloadROMSelectedPath - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6125 - - - - value: selection.AutoloadRomName - - - - - - value: selection.AutoloadRomName - value - selection.AutoloadRomName - 2 - - - 3558 - - - - delegate - - - - 2314 - - - - 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 - - - - value: selection.VideoFilterPreviewImage - - - - - - value: selection.VideoFilterPreviewImage - value - selection.VideoFilterPreviewImage - 2 - - - 3562 - - - - showGeneralView: - - - - 1683 - - - - showDisplayView: - - - - 1684 - - - - showInputView: - - - - 1685 - - - - window - - - - 1689 - - - - viewDisplay - - - - 1690 - - - - viewGeneral - - - - 1691 - - - - viewSound - - - - 2251 - - - - showSoundView: - - - - 2252 - - - - updateVolumeIcon: - - - - 2268 - - - - selectDisplaySize: - - - - 2306 - - - - selectDisplaySize: - - - - 2307 - - - - selectDisplaySize: - - - - 2308 - - - - selectDisplaySize: - - - - 2309 - - - - selectDisplayRotation: - - - - 2310 - - - - selectDisplayRotation: - - - - 2311 - - - - selectDisplayRotation: - - - - 2312 - - - - selectDisplayRotation: - - - - 2313 - - - - displayRotationField - - - - 2315 - - - - displayRotationMenu - - - - 2316 - - - - displayRotationMenuCustomItem - - - - 2317 - - - - chooseRomForAutoload: - - - - 2322 - - - - selectAutoloadRomOption: - - - - 2323 - - - - selectAutoloadRomOption: - - - - 2324 - - - - viewEmulation - - - - 2380 - - - - showEmulationView: - - - - 2381 - - - - selectSPUSyncMode: - - - - 2451 - - - - selectSPUSyncMode: - - - - 2452 - - - - selectSPUSyncMethod: - - - - 2453 - - - - selectSPUSyncMethod: - - - - 2454 - - - - selectSPUSyncMethod: - - - - 2455 - - - - spuSyncMethodMenu - - - - 2456 - - - - chooseFirmwareImage: - - - - 2575 - - - - chooseARM7BiosImage: - - - - 2587 - - - - chooseARM9BiosImage: - - - - 2588 - - - - selectVideoFilterType: - - - - 3346 - - - - selectVideoFilterType: - - - - 3347 - - - - selectVideoFilterType: - - - - 3348 - - - - selectVideoFilterType: - - - - 3349 - - - - selectVideoFilterType: - - - - 3350 - - - - selectVideoFilterType: - - - - 3351 - - - - selectVideoFilterType: - - - - 3352 - - - - selectVideoFilterType: - - - - 3353 - - - - selectVideoFilterType: - - - - 3354 - - - - selectVideoFilterType: - - - - 3355 - - - - selectVideoFilterType: - - - - 3356 - - - - selectVideoFilterType: - - - - 3357 - - - - selectVideoFilterType: - - - - 3358 - - - - selectVideoFilterType: - - - - 3359 - - - - selectVideoFilterType: - - - - 3360 - - - - selectVideoFilterType: - - - - 3361 - - - - selectVideoFilterType: - - - - 3362 - - - - selectVideoFilterType: - - - - 3647 - - - - previewImageView - - - - 4127 - - - - setUseBilinear: - - - - 4128 - - - - firmwareConfigSheet - - - - 4466 - - - - configureInternalFirmware: - - - - 4467 - - - - closeFirmwareConfigSheet: - - - - 4468 - - - - chooseCheatDatabase: - - - - 5078 - - - - cheatWindowController - - - - 5143 - - - - cheatDatabaseController - - - - 5145 - - - - prefWindowController - - - - 5149 - - - - cdsCoreController - - - - 5150 - - - - chooseAdvansceneDatabase: - - - - 5183 - - - - selectDisplayMode: - - - - 5735 - - - - selectDisplayMode: - - - - 5736 - - - - selectDisplayMode: - - - - 5737 - - - - selectVideoFilterType: - - - - 6239 - - - - emuController - - - - 6939 - - - - viewInput - - - - 7108 - - - - selectDisplaySize: - - - - 8187 - - - - makeKeyAndOrderFront: - - - - 4280 - - - - value: selection.mainWindow.displayRotation - - - - - - value: selection.mainWindow.displayRotation - value - selection.mainWindow.displayRotation - 2 - - - 6967 - - - - value: selection.mainWindow.displayRotation - - - - - - value: selection.mainWindow.displayRotation - value - selection.mainWindow.displayRotation - 2 - - - 6966 - - - - 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 - - - - value: selection.volumeIconImage - - - - - - value: selection.volumeIconImage - value - selection.volumeIconImage - 2 - - - 5525 - - - - selectedTag: values.DisplayView_Mode - - - - - - selectedTag: values.DisplayView_Mode - selectedTag - values.DisplayView_Mode - 2 - - - 5972 - - - - selectedTag: values.SPU_InterpolationMode - - - - - - selectedTag: values.SPU_InterpolationMode - selectedTag - values.SPU_InterpolationMode - 2 - - - 4138 - - - - value: values.Emulation_AdvancedBusLevelTiming - - - - - - value: values.Emulation_AdvancedBusLevelTiming - value - values.Emulation_AdvancedBusLevelTiming - 2 - - - 5993 - - - - value: values.Emulation_UseExternalBIOSImages - - - - - - value: values.Emulation_UseExternalBIOSImages - value - values.Emulation_UseExternalBIOSImages - 2 - - - 6000 - - - - enabled: values.BIOS_ARM9ImagePath - - - - - - enabled: values.BIOS_ARM9ImagePath - enabled - values.BIOS_ARM9ImagePath - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6018 - - - - enabled2: values.BIOS_ARM7ImagePath - - - - - - enabled2: values.BIOS_ARM7ImagePath - enabled2 - values.BIOS_ARM7ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6027 - - - - value: selection.Arm9BiosImageName - - - - - - value: selection.Arm9BiosImageName - value - selection.Arm9BiosImageName - 2 - - - 4025 - - - - value: selection.Arm7BiosImageName - - - - - - value: selection.Arm7BiosImageName - value - selection.Arm7BiosImageName - 2 - - - 4026 - - - - value: values.Emulation_BIOSEmulateSWI - - - - - - value: values.Emulation_BIOSEmulateSWI - value - values.Emulation_BIOSEmulateSWI - 2 - - - 5994 - - - - enabled: values.Emulation_UseExternalBIOSImages - - - - - - enabled: values.Emulation_UseExternalBIOSImages - enabled - values.Emulation_UseExternalBIOSImages - - NSRaisesForNotApplicableKeys - - - 2 - - - 6001 - - - - enabled2: values.BIOS_ARM9ImagePath - - - - - - enabled2: values.BIOS_ARM9ImagePath - enabled2 - values.BIOS_ARM9ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6020 - - - - enabled3: values.BIOS_ARM7ImagePath - - - - - - enabled3: values.BIOS_ARM7ImagePath - enabled3 - values.BIOS_ARM7ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6028 - - - - value: values.Emulation_BIOSPatchDelayLoopSWI - - - - - - value: values.Emulation_BIOSPatchDelayLoopSWI - value - values.Emulation_BIOSPatchDelayLoopSWI - 2 - - - 5995 - - - - enabled: values.Emulation_UseExternalBIOSImages - - - - - - enabled: values.Emulation_UseExternalBIOSImages - enabled - values.Emulation_UseExternalBIOSImages - - NSRaisesForNotApplicableKeys - - - 2 - - - 6004 - - - - 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_ARM7ImagePath - - - - - - enabled3: values.BIOS_ARM7ImagePath - enabled3 - values.BIOS_ARM7ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6029 - - - - value: values.Emulation_UseDebugConsole - - - - - - value: values.Emulation_UseDebugConsole - value - values.Emulation_UseDebugConsole - 2 - - - 5998 - - - - value: values.Emulation_EmulateEnsata - - - - - - value: values.Emulation_EmulateEnsata - value - values.Emulation_EmulateEnsata - 2 - - - 5996 - - - - value: values.Emulation_UseExternalFirmwareImage - - - - - - value: values.Emulation_UseExternalFirmwareImage - value - values.Emulation_UseExternalFirmwareImage - 2 - - - 6011 - - - - enabled: values.Emulation_FirmwareImagePath - - - - - - enabled: values.Emulation_FirmwareImagePath - enabled - values.Emulation_FirmwareImagePath - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6034 - - - - value: selection.FirmwareImageName - - - - - - value: selection.FirmwareImageName - value - selection.FirmwareImageName - 2 - - - 3561 - - - - enabled: values.Emulation_UseExternalFirmwareImage - - - - - - enabled: values.Emulation_UseExternalFirmwareImage - enabled - values.Emulation_UseExternalFirmwareImage - - NSRaisesForNotApplicableKeys - - - 2 - - - 6012 - - - - value: values.SPU_AdvancedLogic - - - - - - value: values.SPU_AdvancedLogic - value - values.SPU_AdvancedLogic - 2 - - - 4137 - - - - selectedTag: values.SPU_SyncMethod - - - - - - selectedTag: values.SPU_SyncMethod - selectedTag - values.SPU_SyncMethod - 2 - - - 4140 - - - - selectedTag: values.SPU_SyncMode - - - - - - selectedTag: values.SPU_SyncMode - selectedTag - values.SPU_SyncMode - 2 - - - 4139 - - - - value: values.Emulation_FirmwareBoot - - - - - - value: values.Emulation_FirmwareBoot - value - values.Emulation_FirmwareBoot - 2 - - - 5999 - - - - 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 - - - - enabled3: values.BIOS_ARM9ImagePath - - - - - - enabled3: values.BIOS_ARM9ImagePath - enabled3 - values.BIOS_ARM9ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6024 - - - - enabled4: values.BIOS_ARM7ImagePath - - - - - - enabled4: values.BIOS_ARM7ImagePath - enabled4 - values.BIOS_ARM7ImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6030 - - - - enabled5: values.Emulation_FirmwareImagePath - - - - - - enabled5: values.Emulation_FirmwareImagePath - enabled5 - values.Emulation_FirmwareImagePath - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSIsNotNil - - - - 2 - - - 6037 - - - - delegate - - - - 8091 - - - - enabled: filesPresent - - - - - - enabled: filesPresent - enabled - filesPresent - 2 - - - 8095 - - - - value: values.General_DoNotAskMigrate - - - - - - value: values.General_DoNotAskMigrate - value - values.General_DoNotAskMigrate - 2 - - - 6124 - - - - 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 - - - - enabled: filesPresent - - - - - - enabled: filesPresent - enabled - filesPresent - 2 - - - 8094 - - - - 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.name - - - - - - value: arrangedObjects.name - value - arrangedObjects.name - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - NSCreatesSortDescriptor - NSRaisesForNotApplicableKeys - - - YES - - - - - - - 2 - - - 2928 - - - - 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 - - - - value: values.General_DoNotAskMigrate - - - - - - value: values.General_DoNotAskMigrate - value - values.General_DoNotAskMigrate - 2 - - - 6123 - - - - makeKeyAndOrderFront: - - - - 4638 - - - - delegate - - - - 4700 - - - - delegate - - - - 4716 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6864 - - - - value: arrangedObjects.enabled - - - - - - value: arrangedObjects.enabled - value - arrangedObjects.enabled - 2 - - - 5493 - - - - value: arrangedObjects.description - - - - - - value: arrangedObjects.description - value - arrangedObjects.description - 2 - - - 5495 - - - - 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 - - - - selectedTag: selection.mainWindow.videoFilterType - - - - - - selectedTag: selection.mainWindow.videoFilterType - selectedTag - selection.mainWindow.videoFilterType - 2 - - - 6989 - - - - value: values.DisplayView_UseBilinearOutput - - - - - - value: values.DisplayView_UseBilinearOutput - value - values.DisplayView_UseBilinearOutput - 2 - - - 5975 - - - - value: selection.mainWindow.useBilinearOutput - - - - - - value: selection.mainWindow.useBilinearOutput - value - selection.mainWindow.useBilinearOutput - 2 - - - 6990 - - - - makeKeyAndOrderFront: - - - - 3964 - - - - 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 - - - - value: selection.currentVolumeValue - - - - - - value: selection.currentVolumeValue - value - selection.currentVolumeValue - 2 - - - 6765 - - - - value: selection.currentVolumeValue - - - - - - value: selection.currentVolumeValue - value - selection.currentVolumeValue - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - NSValidatesImmediately - - - YES - - - - - - 2 - - - 6769 - - - - value: selection.currentVolumeIcon - - - - - - value: selection.currentVolumeIcon - value - selection.currentVolumeIcon - 2 - - - 6767 - - - - value: selection.render3DHighPrecisionColorInterpolation - - - - - - value: selection.render3DHighPrecisionColorInterpolation - value - selection.render3DHighPrecisionColorInterpolation - 2 - - - 6818 - - - - value: selection.render3DEdgeMarking - - - - - - value: selection.render3DEdgeMarking - value - selection.render3DEdgeMarking - 2 - - - 6819 - - - - value: selection.render3DFog - - - - - - value: selection.render3DFog - value - selection.render3DFog - 2 - - - 6820 - - - - value: selection.render3DTextures - - - - - - value: selection.render3DTextures - value - selection.render3DTextures - 2 - - - 6817 - - - - delegate - - - - 6809 - - - - value: selection.render3DDepthComparisonThreshold - - - - - - value: selection.render3DDepthComparisonThreshold - value - selection.render3DDepthComparisonThreshold - 2 - - - 6821 - - - - makeKeyAndOrderFront: - - - - 3792 - - - - value: values.Render3D_DepthComparisonThreshold - - - - - - value: values.Render3D_DepthComparisonThreshold - value - values.Render3D_DepthComparisonThreshold - 2 - - - 3834 - - - - value: values.Render3D_HighPrecisionColorInterpolation - - - - - - value: values.Render3D_HighPrecisionColorInterpolation - value - values.Render3D_HighPrecisionColorInterpolation - 2 - - - 3830 - - - - value: values.Render3D_EdgeMarking - - - - - - value: values.Render3D_EdgeMarking - value - values.Render3D_EdgeMarking - 2 - - - 3836 - - - - 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 - - - - selectedTag: selection.render3DRenderingEngine - - - - - - selectedTag: selection.render3DRenderingEngine - selectedTag - selection.render3DRenderingEngine - 2 - - - 6815 - - - - selectedTag: values.Render3D_RenderingEngine - - - - - - selectedTag: values.Render3D_RenderingEngine - selectedTag - values.Render3D_RenderingEngine - 2 - - - 6109 - - - - selectedTag: selection.render3DThreads - - - - - - selectedTag: selection.render3DThreads - selectedTag - selection.render3DThreads - 2 - - - 6823 - - - - value: selection.render3DLineHack - - - - - - value: selection.render3DLineHack - value - selection.render3DLineHack - 2 - - - 6816 - - - - 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 - - - - selectedTag: selection.spuSyncMethod - - - - - - selectedTag: selection.spuSyncMethod - selectedTag - selection.spuSyncMethod - 2 - - - 5612 - - - - selectedTag: values.Sound_AudioOutputEngine - - - - - - selectedTag: values.Sound_AudioOutputEngine - selectedTag - values.Sound_AudioOutputEngine - 2 - - - 5989 - - - - selectedTag: selection.audioOutputEngine - - - - - - selectedTag: selection.audioOutputEngine - selectedTag - selection.audioOutputEngine - 2 - - - 5608 - - - - makeKeyAndOrderFront: - - - - 4063 - - - - value: selection.emuFlagAdvancedBusLevelTiming - - - - - - value: selection.emuFlagAdvancedBusLevelTiming - value - selection.emuFlagAdvancedBusLevelTiming - 2 - - - 4141 - - - - value: selection.emuFlagUseExternalBios - - - - - - value: selection.emuFlagUseExternalBios - value - selection.emuFlagUseExternalBios - 2 - - - 4142 - - - - 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 - - - - value: selection.emuFlagEmulateBiosInterrupts - - - - - - value: selection.emuFlagEmulateBiosInterrupts - value - selection.emuFlagEmulateBiosInterrupts - 2 - - - 4143 - - - - enabled: selection.emuFlagUseExternalBios - - - - - - enabled: selection.emuFlagUseExternalBios - enabled - selection.emuFlagUseExternalBios - 2 - - - 4150 - - - - 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 - - - - value: selection.emuFlagPatchDelayLoop - - - - - - value: selection.emuFlagPatchDelayLoop - value - selection.emuFlagPatchDelayLoop - 2 - - - 4145 - - - - enabled: selection.emuFlagUseExternalBios - - - - - - enabled: selection.emuFlagUseExternalBios - enabled - selection.emuFlagUseExternalBios - 2 - - - 4151 - - - - 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 - - - - value: selection.emuFlagUseExternalFirmware - - - - - - value: selection.emuFlagUseExternalFirmware - value - selection.emuFlagUseExternalFirmware - 2 - - - 4146 - - - - enabled: values.Emulation_FirmwareImagePath - - - - - - enabled: values.Emulation_FirmwareImagePath - enabled - values.Emulation_FirmwareImagePath - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6048 - - - - value: selection.emuFlagFirmwareBoot - - - - - - value: selection.emuFlagFirmwareBoot - value - selection.emuFlagFirmwareBoot - 2 - - - 4147 - - - - 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 - - - - 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 - - - - value: selection.emuFlagDebugConsole - - - - - - value: selection.emuFlagDebugConsole - value - selection.emuFlagDebugConsole - 2 - - - 4148 - - - - value: selection.emuFlagEmulateEnsata - - - - - - value: selection.emuFlagEmulateEnsata - value - selection.emuFlagEmulateEnsata - 2 - - - 4149 - - - - contentView - - - - 4057 - - - - parentWindow - - - - 4058 - - - - toggle: - - - - 4068 - - - - value: selection.nickname - - - - - - value: selection.nickname - value - selection.nickname - 2 - - - 5478 - - - - value: selection.message - - - - - - value: selection.message - value - selection.message - 2 - - - 5479 - - - - value: selection.birthday - - - - - - value: selection.birthday - value - selection.birthday - 2 - - - 5481 - - - - selectedTag: selection.language - - - - - - selectedTag: selection.language - selectedTag - selection.language - 2 - - - 5482 - - - - selectedTag: selection.favoriteColor - - - - - - selectedTag: selection.favoriteColor - selectedTag - selection.favoriteColor - 2 - - - 5480 - - - - 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 - - - - 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 - - - - selectedTag: values.FirmwareConfig_FavoriteColor - - - - - - selectedTag: values.FirmwareConfig_FavoriteColor - selectedTag - values.FirmwareConfig_FavoriteColor - 2 - - - 5731 - - - - 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 - - - 6866 - - - - selectedTag: selection.cheatType - - - - - - selectedTag: selection.cheatType - selectedTag - selection.cheatType - 2 - - - 5487 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6880 - - - - value: selection.enabled - - - - - - value: selection.enabled - value - selection.enabled - 2 - - - 5489 - - - - 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 - - - - value: selection.isCheatingEnabled - - - - - - value: selection.isCheatingEnabled - value - selection.isCheatingEnabled - 2 - - - 4648 - - - - value: selection.memAddressSixDigitString - - - - - - value: selection.memAddressSixDigitString - value - selection.memAddressSixDigitString - 2 - - - 5499 - - - - value: selection.value - - - - - - value: selection.value - value - selection.value - 2 - - - 5484 - - - - selectedTag: selection.bytes - - - - - - selectedTag: selection.bytes - selectedTag - selection.bytes - 2 - - - 5485 - - - - value: arrangedObjects.cheatTypeIcon - - - - - - value: arrangedObjects.cheatTypeIcon - value - arrangedObjects.cheatTypeIcon - 2 - - - 5494 - - - - value: selection.code - - - - - - value: selection.code - value - selection.code - 2 - - - 5486 - - - - value: selection.description - - - - - - value: selection.description - value - selection.description - 2 - - - 5488 - - - - 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 - - - - window - - - - 4699 - - - - viewConfigureActionReplayCheat - - - - 4702 - - - - viewConfigureInternalCheat - - - - 4703 - - - - cheatConfigBox - - - - 4709 - - - - cheatSelectedItemController - - - - 4717 - - - - selectCheatType: - - - - 4718 - - - - selectCheatType: - - - - 4719 - - - - addToList: - - - - 4721 - - - - applyConfiguration: - - - - 4722 - - - - cheatListTable - - - - 4728 - - - - removeFromList: - - - - 4730 - - - - cheatWindowController - - - - 4735 - - - - viewConfigureNoSelection - - - - 4747 - - - - viewConfigureCodeBreakerCheat - - - - 4748 - - - - cheatListController - - - - 4755 - - - - 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 - - - - setInternalCheatValue: - - - - 5070 - - - - viewDatabase: - - - - 5079 - - - - cheatDatabaseSheet - - - - 5108 - - - - closeCheatDatabaseSheet: - - - - 5109 - - - - closeCheatDatabaseSheet: - - - - 5110 - - - - cheatDatabaseController - - - - 5119 - - - - selectAllCheatsInDatabase: - - - - 5122 - - - - selectNoneCheatsInDatabase: - - - - 5123 - - - - delegate - - - - 4946 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6894 - - - - value: arrangedObjects.addressString - - - - - - value: arrangedObjects.addressString - value - arrangedObjects.addressString - 2 - - - 5566 - - - - value: arrangedObjects.value - - - - - - value: arrangedObjects.value - value - arrangedObjects.value - 2 - - - 5567 - - - - value: selection.cheatSearchAddressCount - - - - - - value: selection.cheatSearchAddressCount - value - selection.cheatSearchAddressCount - 2 - - - 5622 - - - - 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 - - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - value: selection.cheatSearchSearchValue - - - - - - value: selection.cheatSearchSearchValue - value - selection.cheatSearchSearchValue - 2 - - - 5623 - - - - 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 - - - 6929 - - - - enabled2: selection.isRunningSearch - - - - - - enabled2: selection.isRunningSearch - enabled2 - selection.isRunningSearch - - YES - - YES - NSMultipleValuesPlaceholder - NSNoSelectionPlaceholder - NSNotApplicablePlaceholder - NSNullPlaceholder - NSValueTransformerName - - - YES - - - - - NSNegateBoolean - - - - 2 - - - 6930 - - - - selectedTag: selection.cheatSearchStyle - - - - - - selectedTag: selection.cheatSearchStyle - selectedTag - selection.cheatSearchStyle - 2 - - - 5621 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 6890 - - - - animate: selection.isRunningSearch - - - - - - animate: selection.isRunningSearch - animate - selection.isRunningSearch - 2 - - - 5626 - - - - value: selection.R4CheatDatabaseName - - - - - - value: selection.R4CheatDatabaseName - value - selection.R4CheatDatabaseName - 2 - - - 5073 - - - - enabled: selection.value - - - - - - enabled: selection.value - enabled - selection.value - - NSValueTransformerName - NSIsNotNil - - 2 - - - 5490 - - - - 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.cheatDBDate - - - - - - value: selection.cheatDBDate - value - selection.cheatDBDate - 2 - - - 5619 - - - - value: selection.cheatDBItemCount - - - - - - value: selection.cheatDBItemCount - value - selection.cheatDBItemCount - 2 - - - 5620 - - - - value: selection.cheatDBTitle - - - - - - value: selection.cheatDBTitle - value - selection.cheatDBTitle - 2 - - - 5618 - - - - value: selection.AdvansceneDatabaseName - - - - - - value: selection.AdvansceneDatabaseName - value - selection.AdvansceneDatabaseName - 2 - - - 5182 - - - - value: values.Advanscene_AutoDetectRomSaveType - - - - - - value: values.Advanscene_AutoDetectRomSaveType - value - values.Advanscene_AutoDetectRomSaveType - 2 - - - 5647 - - - - enabled: values.Advanscene_DatabasePath - - - - - - enabled: values.Advanscene_DatabasePath - enabled - values.Advanscene_DatabasePath - - NSValueTransformerName - NSIsNotNil - - 2 - - - 5992 - - - - makeKeyAndOrderFront: - - - - 5720 - - - - value: selection.buildInfoString - - - - - - value: selection.buildInfoString - value - selection.buildInfoString - 2 - - - 6231 - - - - value: selection.descriptionString - - - - - - value: selection.descriptionString - value - selection.descriptionString - 2 - - - 6232 - - - - font: selection.aboutTextFilesFont - - - - - - font: selection.aboutTextFilesFont - font - selection.aboutTextFilesFont - 2 - - - 6589 - - - - valuePath: selection.readMePath - - - - - - valuePath: selection.readMePath - valuePath - selection.readMePath - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - - - YES - - - - - 2 - - - 6598 - - - - font: selection.aboutTextFilesFont - - - - - - font: selection.aboutTextFilesFont - font - selection.aboutTextFilesFont - 2 - - - 6593 - - - - valuePath: selection.licensePath - - - - - - valuePath: selection.licensePath - valuePath - selection.licensePath - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - - - YES - - - - - 2 - - - 6601 - - - - font: selection.aboutTextFilesFont - - - - - - font: selection.aboutTextFilesFont - font - selection.aboutTextFilesFont - 2 - - - 6594 - - - - valuePath: selection.authorsPath - - - - - - valuePath: selection.authorsPath - valuePath - selection.authorsPath - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - - - YES - - - - - 2 - - - 6604 - - - - font: selection.aboutTextFilesFont - - - - - - font: selection.aboutTextFilesFont - font - selection.aboutTextFilesFont - 2 - - - 6595 - - - - valuePath: selection.changeLogPath - - - - - - valuePath: selection.changeLogPath - valuePath - selection.changeLogPath - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - - - YES - - - - - 2 - - - 6610 - - - - selectedTag: selection.selectedExportRomSaveID - - - - - - selectedTag: selection.selectedExportRomSaveID - selectedTag - selection.selectedExportRomSaveID - 2 - - - 7001 - - - - value: selection.isSpeedLimitEnabled - - - - - - value: selection.isSpeedLimitEnabled - value - selection.isSpeedLimitEnabled - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEnabled - NSRaisesForNotApplicableKeys - NSValidatesImmediately - - - YES - - - - - - - 2 - - - 5971 - - - - selectedTag: values.Emulation_CPUEmulationEngine - - - - - - selectedTag: values.Emulation_CPUEmulationEngine - selectedTag - values.Emulation_CPUEmulationEngine - - NSConditionallySetsEnabled - - - 2 - - - 8074 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8073 - - - - selectedTag: selection.cpuEmulationEngine - - - - - - selectedTag: selection.cpuEmulationEngine - selectedTag - selection.cpuEmulationEngine - - NSConditionallySetsEnabled - - - 2 - - - 8072 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8071 - - - - value: selection.mainWindow.useVerticalSync - - - - - - value: selection.mainWindow.useVerticalSync - value - selection.mainWindow.useVerticalSync - 2 - - - 6991 - - - - value: values.DisplayView_UseVerticalSync - - - - - - value: values.DisplayView_UseVerticalSync - value - values.DisplayView_UseVerticalSync - 2 - - - 6164 - - - - selectedTag: values.DisplayViewCombo_Order - - - - - - selectedTag: values.DisplayViewCombo_Order - selectedTag - values.DisplayViewCombo_Order - 2 - - - 6230 - - - - selectedTag: values.DisplayViewCombo_Orientation - - - - - - selectedTag: values.DisplayViewCombo_Orientation - selectedTag - values.DisplayViewCombo_Orientation - 2 - - - 6226 - - - - delegate - - - - 6450 - - - - 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 - - - - title: selection.goWebpageButtonTitle - - - - - - title: selection.goWebpageButtonTitle - title - selection.goWebpageButtonTitle - 2 - - - 6457 - - - - value: selection.finalFormText - - - - - - value: selection.finalFormText - value - selection.finalFormText - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEditable - NSRaisesForNotApplicableKeys - - - YES - - - - - - 2 - - - 6507 - - - - troubleshootingWindowController - - - - 6442 - - - - window - - - - 6443 - - - - viewBugReport - - - - 6444 - - - - viewFinishedForm - - - - 6445 - - - - viewSupportRequest - - - - 6446 - - - - romInfoController - - - - 6467 - - - - continueToFinalForm: - - - - 6468 - - - - continueToFinalForm: - - - - 6469 - - - - copyRomInfoToTextFields: - - - - 6470 - - - - copyRomInfoToTextFields: - - - - 6471 - - - - backForm: - - - - 6472 - - - - copyInfoToPasteboard: - - - - 6613 - - - - goToWebpage: - - - - 6614 - - - - value: selection.copyPasteHelpText - - - - - - value: selection.copyPasteHelpText - value - selection.copyPasteHelpText - - NSAllowsEditingMultipleValuesSelection - - - 2 - - - 6616 - - - - 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.render3DMultisample - - - - - - value: selection.render3DMultisample - value - selection.render3DMultisample - 2 - - - 6822 - - - - 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 - - - - changeCoreSpeed: - - - - 6747 - - - - changeCoreSpeed: - - - - 6748 - - - - changeCoreSpeed: - - - - 6749 - - - - changeCoreSpeed: - - - - 6750 - - - - closeSheet: - - - - 6799 - - - - closeSheet: - - - - 6800 - - - - closeSheet: - - - - 6801 - - - - closeSheet: - - - - 6802 - - - - closeSheet: - - - - 6803 - - - - saveFileMigrationSheet - - - - 6804 - - - - saveStatePrecloseSheet - - - - 6805 - - - - newDisplayWindow: - - - - 6940 - - - - inputManager - - - - 7005 - - - - toggleExecutePause: - - - - 7009 - - - - reset: - - - - 7010 - - - - toggleCheats: - - - - 7012 - - - - toggleSpeedLimiter: - - - - 7013 - - - - slot1Eject: - - - - 7888 - - - - reset: - - - - 7889 - - - - chooseSlot1R4Directory: - - - - 7897 - - - - slot1ManagerWindow - - - - 7898 - - - - loadRecentRom: - - - - 7983 - - - - loadRecentRom: - - - - 8000 - - - - closeRom: - - - - 8001 - - - - openRom: - - - - 8002 - - - - revealGameDataFolderInFinder: - - - - 8167 - - - - revealRomInFinder: - - - - 8168 - - - - changeCoreSpeed: - - - - 8242 - - - - content - - - - 6826 - - - - emuControl - - - - 7003 - - - - inputManager - - - - 7110 - - - - prefWindow - - - - 7111 - - - - 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 - - - - inputSettingsSetSpeedLimit - - - - 7484 - - - - closeSettingsSheet: - - - - 7490 - - - - closeSettingsSheet: - - - - 7491 - - - - changeSpeed: - - - - 7492 - - - - 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 - - - - inputProfileRenameSheet - - - - 7731 - - - - closeProfileRenameSheet: - - - - 7732 - - - - inputPrefOutlineView - - - - 7734 - - - - audioFileChoose: - - - - 7769 - - - - audioFileChooseNone: - - - - 7770 - - - - dataSource - - - - 7164 - - - - delegate - - - - 7165 - - - - value: selection.object1 - - - - - - value: selection.object1 - value - selection.object1 - 2 - - - 7755 - - - - selectedTag: selection.intValue1 - - - - - - selectedTag: selection.intValue1 - selectedTag - selection.intValue1 - - NSConditionallySetsEnabled - - - 2 - - - 7448 - - - - 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 - - - - value: selection.intValue1 - - - - - - value: selection.intValue1 - value - selection.intValue1 - 2 - - - 7422 - - - - enabled: selection.useInputForIntCoord - - - - - - enabled: selection.useInputForIntCoord - enabled - selection.useInputForIntCoord - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 7419 - - - - value: selection.intValue2 - - - - - - value: selection.intValue2 - value - selection.intValue2 - 2 - - - 7423 - - - - value: selection.useInputForIntCoord - - - - - - value: selection.useInputForIntCoord - value - selection.useInputForIntCoord - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 7421 - - - - 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 - - - - 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 - - - - value: selection.floatValue0 - - - - - - value: selection.floatValue0 - value - selection.floatValue0 - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSConditionallySetsEnabled - NSContinuouslyUpdatesValue - NSRaisesForNotApplicableKeys - NSValidatesImmediately - - - YES - - - - - - - - 2 - - - 7495 - - - - dataSource - - - - 7742 - - - - delegate - - - - 7743 - - - - enabled: selection.Name - - - - - - enabled: selection.Name - enabled - selection.Name - - NSValueTransformerName - NSIsNotNil - - 2 - - - 7754 - - - - enabled: selection.IsDefaultType - - - - - - enabled: selection.IsDefaultType - enabled - selection.IsDefaultType - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 7682 - - - - delegate - - - - 7706 - - - - value: selection.Name - - - - - - value: selection.Name - value - selection.Name - - NSContinuouslyUpdatesValue - - - 2 - - - 7750 - - - - enabled: selection.IsDefaultType - - - - - - enabled: selection.IsDefaultType - enabled - selection.IsDefaultType - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 7705 - - - - 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 - - - 7674 - - - - inputManager - - - - 7741 - - - - profileOutlineView - - - - 7744 - - - - enabled: selection.IsDefaultType - - - - - - enabled: selection.IsDefaultType - enabled - selection.IsDefaultType - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 7719 - - - - delegate - - - - 7720 - - - - value: selection.Name - - - - - - value: selection.Name - value - selection.Name - - NSContinuouslyUpdatesValue - - - 2 - - - 7749 - - - - enabled: selection.Name - - - - - - enabled: selection.Name - enabled - selection.Name - - NSValueTransformerName - NSIsNotNil - - 2 - - - 7752 - - - - value: selection.floatValue0 - - - - - - value: selection.floatValue0 - value - selection.floatValue0 - 2 - - - 7763 - - - - value: selection.floatValue0 - - - - - - value: selection.floatValue0 - value - selection.floatValue0 - 2 - - - 7764 - - - - delegate - - - - 7795 - - - - value: values.DisplayViewCombo_Gap - - - - - - value: values.DisplayViewCombo_Gap - value - values.DisplayViewCombo_Gap - - NSContinuouslyUpdatesValue - - - 2 - - - 7816 - - - - value: values.DisplayViewCombo_Gap - - - - - - value: values.DisplayViewCombo_Gap - value - values.DisplayViewCombo_Gap - 2 - - - 7814 - - - - makeKeyAndOrderFront: - - - - 7850 - - - - value: selection.mainWindow.displayGap - - - - - - value: selection.mainWindow.displayGap - value - selection.mainWindow.displayGap - 2 - - - 7853 - - - - value: selection.mainWindow.displayGap - - - - - - value: selection.mainWindow.displayGap - value - selection.mainWindow.displayGap - - NSContinuouslyUpdatesValue - - - 2 - - - 7842 - - - - makeKeyAndOrderFront: - - - - 7887 - - - - selectedTag: selection.slot1DeviceType - - - - - - selectedTag: selection.slot1DeviceType - selectedTag - selection.slot1DeviceType - 2 - - - 7896 - - - - 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 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 7885 - - - - enabled: selection.currentRom - - - - - - enabled: selection.currentRom - enabled - selection.currentRom - - NSValueTransformerName - NSIsNotNil - - 2 - - - 8042 - - - - value: selection.slot1StatusText - - - - - - value: selection.slot1StatusText - value - selection.slot1StatusText - 2 - - - 7892 - - - - value: selection.iconImage - - - - - - value: selection.iconImage - value - selection.iconImage - 2 - - - 7976 - - - - enabled: selection.isRomLoading - - - - - - enabled: selection.isRomLoading - enabled - selection.isRomLoading - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 8011 - - - - value: selection.romNameAndSerialInfo - - - - - - value: selection.romNameAndSerialInfo - value - selection.romNameAndSerialInfo - 2 - - - 7975 - - - - animate: selection.isRomLoading - - - - - - animate: selection.isRomLoading - animate - selection.isRomLoading - 2 - - - 7979 - - - - value: selection.iconImage - - - - - - value: selection.iconImage - value - selection.iconImage - 2 - - - 8017 - - - - enabled: selection.isRomLoading - - - - - - enabled: selection.isRomLoading - enabled - selection.isRomLoading - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 8020 - - - - 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 - - - 8026 - - - - value: selection.iconImage - - - - - - value: selection.iconImage - value - selection.iconImage - 2 - - - 8029 - - - - 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 - - - 8035 - - - - enabled: selection.isRomLoading - - - - - - enabled: selection.isRomLoading - enabled - selection.isRomLoading - - NSValueTransformerName - NSNegateBoolean - - 2 - - - 8038 - - - - value: selection.romNameAndSerialInfo - - - - - - value: selection.romNameAndSerialInfo - value - selection.romNameAndSerialInfo - 2 - - - 8036 - - - - animate: selection.isRomLoading - - - - - - animate: selection.isRomLoading - animate - selection.isRomLoading - 2 - - - 8037 - - - - value: selection.maxJITBlockSize - - - - - - value: selection.maxJITBlockSize - value - selection.maxJITBlockSize - 2 - - - 8063 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8070 - - - - value: selection.maxJITBlockSize - - - - - - value: selection.maxJITBlockSize - value - selection.maxJITBlockSize - 2 - - - 8062 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8069 - - - - value: values.Emulation_MaxJITBlockSize - - - - - - value: values.Emulation_MaxJITBlockSize - value - values.Emulation_MaxJITBlockSize - 2 - - - 8064 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8067 - - - - value: values.Emulation_MaxJITBlockSize - - - - - - value: values.Emulation_MaxJITBlockSize - value - values.Emulation_MaxJITBlockSize - 2 - - - 8065 - - - - enabled: isAppRunningOnIntel - - - - - - enabled: isAppRunningOnIntel - enabled - isAppRunningOnIntel - 2 - - - 8068 - - - - selectAll: - - - - 8085 - - - - selectNone: - - - - 8086 - - - - handleChoice: - - - - 8087 - - - - handleChoice: - - - - 8088 - - - - handleChoice: - - - - 8089 - - - - window - - - - 8090 - - - - fileListController - - - - 8097 - - - - updateAndShowWindow: - - - - 8133 - - - - makeKeyAndOrderFront: - - - - 8163 - - - - 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: selection.render3DDepthComparisonThreshold - - - - - - value: selection.render3DDepthComparisonThreshold - value - selection.render3DDepthComparisonThreshold - 2 - - - 8193 - - - - value: values.Render3D_DepthComparisonThreshold - - - - - - value: values.Render3D_DepthComparisonThreshold - value - values.Render3D_DepthComparisonThreshold - 2 - - - 8198 - - - - - 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 - - - - - - - - - - - - - - - - - - 578 - - - - - 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 - - - - - 983 - - - YES - - - - - - 984 - - - YES - - - - - - - - - - 987 - - - - - 989 - - - - - 990 - - - - - 991 - - - - - 993 - - - - - 998 - - - YES - - - - - - 999 - - - YES - - - - - - - - - - - - - - - - 1000 - - - YES - - - - - - 1001 - - - - - 1002 - - - YES - - - - - - 1003 - - - - - 1004 - - - YES - - - - - - 1005 - - - - - 1006 - - - YES - - - - - - 1007 - - - - - 1008 - - - YES - - - - - - 1009 - - - - - 1010 - - - YES - - - - - - 1011 - - - - - 1012 - - - YES - - - - - - 1013 - - - - - 1016 - - - YES - - - - - - 1017 - - - - - 1020 - - - YES - - - - - - 1021 - - - - - 1024 - - - YES - - - - - - 1025 - - - YES - - - - - - 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 - - - - - 1539 - - - YES - - - - - - 1540 - - - - - 1541 - - - YES - - - - - - 1542 - - - YES - - - - - - 1543 - - - YES - - - - - - - 1544 - - - - - 1545 - - - - - 1547 - - - YES - - - - - - 1548 - - - - - 1584 - - - YES - - - - Display Preferences View - - - 1615 - - - YES - - - - - - - - 1616 - - - YES - - - - - - 1619 - - - YES - - - - - - - 1620 - - - YES - - - - - - 1621 - - - YES - - - - - - - - - - - 1626 - - - YES - - - - - - 1627 - - - YES - - - - - - 1628 - - - YES - - - - - - - - - - - - - - - - - - - - - - - - 1629 - - - - - 1630 - - - - - 1631 - - - - - 1632 - - - YES - - - - - - 1633 - - - - - 1634 - - - YES - - - - - - 1635 - - - - - 1636 - - - - - 1637 - - - - - 1638 - - - - - 1639 - - - - - 1640 - - - - - 1641 - - - - - 1642 - - - - - 1643 - - - - - 1644 - - - - - 1645 - - - - - 1646 - - - - - 1647 - - - - - 1648 - - - - - 1649 - - - - - 1650 - - - YES - - - - - - 1651 - - - - - 1679 - - - - - 1680 - - - - - 1681 - - - - - 1682 - - - - - 1721 - - - CocoaDS Core Controller - - - 1736 - - - - - 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 - - - - - 2320 - - - YES - - - - - - 2321 - - - - - 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 - - - - - 2473 - - - - - 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 - - - - - 3285 - - - YES - - - - - - 3286 - - - - - 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 - - - 3521 - - - - - 3522 - - - - - 3523 - - - - - 3644 - - - - - 3689 - - - YES - - - - - - 3690 - - - - - 3709 - - - - - 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 - - - - - - - - - - - - 3692 - - - YES - - - - - - 3693 - - - - - 3648 - - - YES - - - - - - - - - - - - - - - - - - - - - - - - - 3667 - - - - - 3666 - - - - - 3665 - - - - - 3664 - - - - - 3663 - - - - - 3662 - - - - - 3661 - - - - - 3660 - - - - - 3659 - - - - - 3658 - - - - - 3657 - - - - - 3656 - - - - - 3655 - - - - - 3654 - - - - - 3653 - - - - - 3652 - - - - - 3651 - - - - - 3650 - - - - - 3649 - - - - - 3789 - - - - - 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 - - - - - 3878 - - - YES - - - - - - 3879 - - - YES - - - - - - - - - - - 3880 - - - - - 3881 - - - - - 3882 - - - - - 3883 - - - - - 3884 - - - - - 3885 - - - YES - - - - - - - 3886 - - - YES - - - - - - 3887 - - - - - 3888 - - - YES - - - - - - 3889 - - - YES - - - - - - 3890 - - - YES - - - - - - - - - - 3894 - - - - - 3893 - - - - - 3892 - - - - - 3891 - - - - - 3896 - - - YES - - - - - - 3897 - - - - - 3899 - - - YES - - - - - - - 3900 - - - YES - - - - - - 3901 - - - - - 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 - - - 4062 - - - - - 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 - - - - - - 491 - - - YES - - - - - - - - - - - 980 - - - - - 979 - - - - - 978 - - - - - 977 - - - - - 492 - - - - - 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 - - - - - 2529 - - - YES - - - - - - 2530 - - - YES - - - - - - - - - 2548 - - - - - 2549 - - - - - 2551 - - - - - 2558 - - - YES - - - - - - 2559 - - - YES - - - - - - 2560 - - - - - 2553 - - - - - 5713 - - - About Window Controller - - - 5933 - - - YES - - - - - Export ROM Save Panel Accessory - - - 5934 - - - YES - - - - - - 5935 - - - YES - - - - - - 5936 - - - - - 5937 - - - YES - - - - - - 5938 - - - YES - - - - - - - - 5939 - - - - - 5942 - - - - - 5963 - - - - - 5965 - - - YES - - - - - - 5966 - - - - - 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 - - - - - 6236 - - - - - 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 - - - 6451 - - - - - 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 - - - - - 6634 - - - - - 6635 - - - - - 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 - - - - - - - - - - - 7871 - - - YES - - - - - - 7872 - - - - - 7877 - - - YES - - - - - - 7878 - - - - - 7880 - - - YES - - - - - - 7881 - - - - - 7886 - - - - - 7899 - - - YES - - - - - - - - - - 7857 - - - YES - - - - - - - - - - 7862 - - - - - 7861 - - - - - 7860 - - - - - 7859 - - - - - 7858 - - - - - 7863 - - - YES - - - - - - 7864 - - - - - 7866 - - - YES - - - - - - 7867 - - - - - 7875 - - - YES - - - - - - 7876 - - - - - 125 - - - YES - - - - - - 126 - - - - - 7873 - - - YES - - - - - - 7874 - - - - - 8009 - - - YES - - - - - - - - - 7971 - - - YES - - - - - - 7974 - - - - - 7972 - - - YES - - - - - - 7973 - - - - - 7978 - - - - - 7987 - - - YES - - - - - - 7988 - - - YES - - - - - - 7989 - - - YES - - - - - - - - - - 8003 - - - - - 7996 - - - - - 7995 - - - YES - - - - - - 7994 - - - - - 7993 - - - - - 7997 - - - YES - - - - - - 7998 - - - - - 7879 - - - - - 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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 8247 - - - - - 8248 - - - - - 8249 - - - - - 8251 - - - - - 8252 - - - - - 8253 - - - - - 8254 - - - - - 8255 - - - - - 8256 - - - - - 8257 - - - - - 8258 - - - - - 8259 - - - - - 8260 - - - - - 8261 - - - - - 8262 - - - - - 8263 - - - - - 8264 - - - - - 8265 - - - - - 8266 - - - - - 8267 - - - - - 8268 - - - - - 8269 - - - - - 8270 - - - - - 8271 - - - - - 8295 - - - - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - 1000.IBPluginDependency - 1001.IBPluginDependency - 1002.IBPluginDependency - 1003.IBPluginDependency - 1004.IBPluginDependency - 1005.IBPluginDependency - 1006.IBPluginDependency - 1007.IBPluginDependency - 1008.IBPluginDependency - 1009.IBPluginDependency - 1010.IBPluginDependency - 1011.IBPluginDependency - 1012.IBPluginDependency - 1013.IBPluginDependency - 1016.IBPluginDependency - 1017.IBPluginDependency - 1020.IBPluginDependency - 1021.IBPluginDependency - 1024.IBPluginDependency - 1025.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.IBPluginDependency - 126.IBPluginDependency - 129.IBPluginDependency - 1298.IBPluginDependency - 1299.IBAttributePlaceholdersKey - 1299.IBPluginDependency - 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.IBPluginDependency - 1510.IBPluginDependency - 1511.IBPluginDependency - 1512.IBPluginDependency - 1525.IBAttributePlaceholdersKey - 1525.IBPluginDependency - 1526.IBPluginDependency - 1527.IBPluginDependency - 1528.IBPluginDependency - 1529.IBPluginDependency - 1530.IBPluginDependency - 1531.IBPluginDependency - 1532.IBPluginDependency - 1538.IBPluginDependency - 1539.IBPluginDependency - 1540.IBPluginDependency - 1541.IBPluginDependency - 1542.IBPluginDependency - 1543.IBPluginDependency - 1544.IBPluginDependency - 1545.IBPluginDependency - 1547.IBPluginDependency - 1548.IBPluginDependency - 1577.IBAttributePlaceholdersKey - 1577.IBPluginDependency - 1578.IBPluginDependency - 1579.IBNumberFormatterBehaviorMetadataKey - 1579.IBNumberFormatterLocalizesFormatMetadataKey - 1579.IBNumberFormatterSampleNumberKey - 1579.IBPluginDependency - 1580.IBPluginDependency - 1581.IBPluginDependency - 1584.IBPluginDependency - 1615.IBAttributePlaceholdersKey - 1615.IBPluginDependency - 1616.IBPluginDependency - 1619.IBPluginDependency - 1620.IBPluginDependency - 1621.IBPluginDependency - 1626.IBAttributePlaceholdersKey - 1626.IBPluginDependency - 1627.IBPluginDependency - 1628.IBPluginDependency - 1629.IBPluginDependency - 1630.IBPluginDependency - 1631.IBPluginDependency - 1632.IBPluginDependency - 1633.IBPluginDependency - 1634.IBPluginDependency - 1635.IBPluginDependency - 1636.IBPluginDependency - 1637.IBPluginDependency - 1638.IBPluginDependency - 1639.IBPluginDependency - 1640.IBPluginDependency - 1641.IBPluginDependency - 1642.IBPluginDependency - 1643.IBPluginDependency - 1644.IBPluginDependency - 1645.IBPluginDependency - 1646.IBPluginDependency - 1647.IBPluginDependency - 1648.IBPluginDependency - 1649.IBPluginDependency - 1650.IBPluginDependency - 1651.IBPluginDependency - 1679.IBPluginDependency - 1679.toolbarItem.selectable - 1680.IBPluginDependency - 1680.toolbarItem.selectable - 1681.IBPluginDependency - 1681.toolbarItem.selectable - 1682.IBPluginDependency - 1721.IBPluginDependency - 1736.IBNumberFormatterBehaviorMetadataKey - 1736.IBNumberFormatterLocalizesFormatMetadataKey - 1736.IBPluginDependency - 1855.IBPluginDependency - 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.toolbarItem.selectable - 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.IBPluginDependency - 2297.IBAttributePlaceholdersKey - 2297.IBPluginDependency - 2298.IBAttributePlaceholdersKey - 2298.IBPluginDependency - 2299.IBPluginDependency - 23.IBPluginDependency - 2320.IBPluginDependency - 2321.IBPluginDependency - 2327.IBPluginDependency - 2328.IBPluginDependency - 2329.IBAttributePlaceholdersKey - 2329.IBPluginDependency - 2330.IBAttributePlaceholdersKey - 2330.IBPluginDependency - 2331.IBPluginDependency - 2332.IBAttributePlaceholdersKey - 2332.IBPluginDependency - 2339.IBPluginDependency - 2340.IBPluginDependency - 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.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.IBPluginDependency - 2427.IBAttributePlaceholdersKey - 2427.IBPluginDependency - 2428.IBPluginDependency - 2429.IBAttributePlaceholdersKey - 2429.IBPluginDependency - 2430.IBPluginDependency - 2431.IBPluginDependency - 2432.IBPluginDependency - 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 - 2473.IBPluginDependency - 2482.IBPluginDependency - 2483.IBPluginDependency - 2518.IBPluginDependency - 2519.IBPluginDependency - 2529.IBPluginDependency - 2530.IBPluginDependency - 2548.IBPluginDependency - 2549.IBPluginDependency - 2551.IBPluginDependency - 2553.IBPluginDependency - 2556.IBPluginDependency - 2558.IBPluginDependency - 2559.IBPluginDependency - 2560.IBPluginDependency - 2565.IBAttributePlaceholdersKey - 2565.IBPluginDependency - 2566.IBPluginDependency - 2604.IBPluginDependency - 2609.IBPluginDependency - 2610.IBPluginDependency - 2653.IBPluginDependency - 2789.IBPluginDependency - 2789.IBWindowTemplateEditedContentRect - 2789.NSWindowTemplate.visibleAtLaunch - 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.IBPluginDependency - 2900.IBPluginDependency - 2901.IBPluginDependency - 2902.IBPluginDependency - 2903.IBPluginDependency - 295.IBPluginDependency - 2954.IBPluginDependency - 2955.IBPluginDependency - 296.IBPluginDependency - 297.IBPluginDependency - 298.IBPluginDependency - 3015.IBPluginDependency - 3042.IBPluginDependency - 3059.IBPluginDependency - 3060.IBPluginDependency - 3061.IBPluginDependency - 3062.IBPluginDependency - 3063.IBPluginDependency - 3146.IBPluginDependency - 3148.IBPluginDependency - 3204.IBPluginDependency - 3205.IBPluginDependency - 3206.IBPluginDependency - 3207.IBPluginDependency - 3208.IBPluginDependency - 3209.IBPluginDependency - 3210.IBPluginDependency - 3211.IBPluginDependency - 3213.IBPluginDependency - 3214.IBPluginDependency - 3285.IBPluginDependency - 3286.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.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 - 3521.IBPluginDependency - 3522.IBPluginDependency - 3523.IBPluginDependency - 3644.IBPluginDependency - 3648.IBPluginDependency - 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 - 3689.IBAttributePlaceholdersKey - 3689.IBPluginDependency - 3690.IBPluginDependency - 3692.IBAttributePlaceholdersKey - 3692.IBPluginDependency - 3693.IBPluginDependency - 3709.IBPluginDependency - 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 - 3778.IBPluginDependency - 3779.IBAttributePlaceholdersKey - 3779.IBPluginDependency - 3780.IBPluginDependency - 3781.IBNumberFormatterBehaviorMetadataKey - 3781.IBNumberFormatterLocalizesFormatMetadataKey - 3781.IBPluginDependency - 3782.IBPluginDependency - 3783.IBPluginDependency - 3784.IBPluginDependency - 3786.IBPluginDependency - 3787.IBPluginDependency - 3788.IBPluginDependency - 3789.IBPluginDependency - 3790.IBPluginDependency - 3790.IBWindowTemplateEditedContentRect - 3790.NSWindowTemplate.visibleAtLaunch - 3791.IBPluginDependency - 3793.IBPluginDependency - 3794.IBPluginDependency - 3798.IBPluginDependency - 3799.IBPluginDependency - 3800.IBAttributePlaceholdersKey - 3800.IBPluginDependency - 3801.IBAttributePlaceholdersKey - 3801.IBPluginDependency - 3802.IBAttributePlaceholdersKey - 3802.IBPluginDependency - 3803.IBAttributePlaceholdersKey - 3803.IBPluginDependency - 3804.IBAttributePlaceholdersKey - 3804.IBPluginDependency - 3805.IBPluginDependency - 3806.IBPluginDependency - 3807.IBPluginDependency - 3808.IBPluginDependency - 3809.IBPluginDependency - 3810.IBNumberFormatterBehaviorMetadataKey - 3810.IBNumberFormatterLocalizesFormatMetadataKey - 3810.IBPluginDependency - 3811.IBPluginDependency - 3837.IBPluginDependency - 3838.IBPluginDependency - 3839.IBAttributePlaceholdersKey - 3839.IBPluginDependency - 3840.IBAttributePlaceholdersKey - 3840.IBPluginDependency - 3841.IBPluginDependency - 3843.IBAttributePlaceholdersKey - 3843.IBPluginDependency - 3844.IBPluginDependency - 3845.IBPluginDependency - 3846.IBAttributePlaceholdersKey - 3846.IBPluginDependency - 3847.IBAttributePlaceholdersKey - 3847.IBPluginDependency - 3849.IBPluginDependency - 3850.IBPluginDependency - 3878.IBPluginDependency - 3879.IBPluginDependency - 3880.IBAttributePlaceholdersKey - 3880.IBPluginDependency - 3881.IBAttributePlaceholdersKey - 3881.IBPluginDependency - 3882.IBPluginDependency - 3883.IBAttributePlaceholdersKey - 3883.IBPluginDependency - 3884.IBAttributePlaceholdersKey - 3884.IBPluginDependency - 3885.IBPluginDependency - 3886.IBAttributePlaceholdersKey - 3886.IBPluginDependency - 3887.IBPluginDependency - 3888.IBAttributePlaceholdersKey - 3888.IBPluginDependency - 3889.IBPluginDependency - 3890.IBPluginDependency - 3891.IBAttributePlaceholdersKey - 3891.IBPluginDependency - 3892.IBAttributePlaceholdersKey - 3892.IBPluginDependency - 3893.IBAttributePlaceholdersKey - 3893.IBPluginDependency - 3894.IBAttributePlaceholdersKey - 3894.IBPluginDependency - 3896.IBPluginDependency - 3897.IBPluginDependency - 3899.IBPluginDependency - 3900.IBAttributePlaceholdersKey - 3900.IBPluginDependency - 3901.IBPluginDependency - 3935.IBPluginDependency - 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.IBPluginDependency - 3997.IBAttributePlaceholdersKey - 3997.IBPluginDependency - 3998.IBAttributePlaceholdersKey - 3998.IBPluginDependency - 4001.IBPluginDependency - 4002.IBAttributePlaceholdersKey - 4002.IBPluginDependency - 4003.IBAttributePlaceholdersKey - 4003.IBPluginDependency - 4004.IBPluginDependency - 4024.IBPluginDependency - 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.IBPluginDependency - 4054.IBPluginDependency - 4059.IBPluginDependency - 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.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 - 4584.IBPluginDependency - 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.IBPluginDependency - 4910.IBAttributePlaceholdersKey - 4910.IBPluginDependency - 4911.IBPluginDependency - 4912.IBPluginDependency - 4913.IBPluginDependency - 4914.IBPluginDependency - 4916.IBPluginDependency - 492.IBPluginDependency - 494.IBPluginDependency - 4947.IBPluginDependency - 5.IBPluginDependency - 5003.IBPluginDependency - 5004.IBPluginDependency - 5005.IBPluginDependency - 5006.IBPluginDependency - 5007.IBPluginDependency - 5008.IBPluginDependency - 5009.IBPluginDependency - 5066.IBPluginDependency - 5067.IBPluginDependency - 5068.IBAttributePlaceholdersKey - 5068.IBPluginDependency - 5069.IBPluginDependency - 5080.IBPluginDependency - 5080.IBWindowTemplateEditedContentRect - 5080.NSWindowTemplate.visibleAtLaunch - 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 - 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.IBPluginDependency - 541.IBPluginDependency - 5419.IBPluginDependency - 542.IBPluginDependency - 5420.IBPluginDependency - 5421.IBPluginDependency - 5427.IBAttributePlaceholdersKey - 5427.IBPluginDependency - 5450.IBPluginDependency - 56.IBPluginDependency - 5648.IBPluginDependency - 5649.IBPluginDependency - 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.IBPluginDependency - 5702.IBPluginDependency - 5713.IBPluginDependency - 575.IBPluginDependency - 576.IBPluginDependency - 578.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 - 5965.IBPluginDependency - 5966.IBPluginDependency - 607.IBPluginDependency - 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 - 6160.IBPluginDependency - 6161.IBAttributePlaceholdersKey - 6161.IBPluginDependency - 6162.IBPluginDependency - 6168.IBPluginDependency - 6169.IBPluginDependency - 6170.IBPluginDependency - 6171.IBPluginDependency - 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 - 6236.IBPluginDependency - 6238.IBPluginDependency - 627.IBPluginDependency - 627.IBWindowTemplateEditedContentRect - 627.NSWindowTemplate.visibleAtLaunch - 628.IBPluginDependency - 629.IBPluginDependency - 6295.IBPluginDependency - 6295.IBWindowTemplateEditedContentRect - 6295.NSWindowTemplate.visibleAtLaunch - 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.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 - 6618.IBAttributePlaceholdersKey - 6618.IBPluginDependency - 6619.IBPluginDependency - 6622.IBPluginDependency - 6623.IBAttributePlaceholdersKey - 6623.IBPluginDependency - 6624.IBPluginDependency - 6627.IBAttributePlaceholdersKey - 6627.IBPluginDependency - 6628.IBPluginDependency - 6630.IBAttributePlaceholdersKey - 6630.IBPluginDependency - 6631.IBPluginDependency - 6634.IBAttributePlaceholdersKey - 6634.IBPluginDependency - 6635.IBAttributePlaceholdersKey - 6635.IBPluginDependency - 6651.IBPluginDependency - 6652.IBPluginDependency - 6931.IBPluginDependency - 6998.IBPluginDependency - 6999.IBPluginDependency - 7002.IBPluginDependency - 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.IBPluginDependency - 7140.IBPluginDependency - 7141.IBPluginDependency - 7142.IBPluginDependency - 715.IBPluginDependency - 7168.IBPluginDependency - 7169.IBPluginDependency - 7171.IBPluginDependency - 7171.IBWindowTemplateEditedContentRect - 7171.NSWindowTemplate.visibleAtLaunch - 7172.IBPluginDependency - 7173.IBPluginDependency - 7173.IBWindowTemplateEditedContentRect - 7173.NSWindowTemplate.visibleAtLaunch - 7174.IBPluginDependency - 7175.IBPluginDependency - 7175.IBWindowTemplateEditedContentRect - 7175.NSWindowTemplate.visibleAtLaunch - 7176.IBPluginDependency - 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.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 - 7294.IBNumberFormatterBehaviorMetadataKey - 7294.IBNumberFormatterLocalizesFormatMetadataKey - 7294.IBPluginDependency - 7295.IBNumberFormatterBehaviorMetadataKey - 7295.IBNumberFormatterLocalizesFormatMetadataKey - 7295.IBPluginDependency - 7301.IBPluginDependency - 7302.IBPluginDependency - 7305.IBPluginDependency - 7308.IBPluginDependency - 7309.IBPluginDependency - 7312.IBPluginDependency - 7313.IBPluginDependency - 7316.IBPluginDependency - 7317.IBPluginDependency - 7320.IBPluginDependency - 7353.IBPluginDependency - 7354.IBPluginDependency - 7355.IBPluginDependency - 7358.IBPluginDependency - 7359.IBPluginDependency - 7392.IBPluginDependency - 7393.IBPluginDependency - 7395.IBPluginDependency - 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 - 7443.IBPluginDependency - 7445.IBPluginDependency - 7446.IBPluginDependency - 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 - 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.IBPluginDependency - 7610.IBAttributePlaceholdersKey - 7610.IBPluginDependency - 7612.IBPluginDependency - 7624.IBPluginDependency - 7625.IBPluginDependency - 7666.CustomClassName - 7666.IBPluginDependency - 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.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.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.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.IBPluginDependency - 7855.IBWindowTemplateEditedContentRect - 7855.NSWindowTemplate.visibleAtLaunch - 7856.IBPluginDependency - 7857.IBPluginDependency - 7858.IBPluginDependency - 7859.IBPluginDependency - 7860.IBPluginDependency - 7861.IBPluginDependency - 7862.IBPluginDependency - 7863.IBPluginDependency - 7864.IBPluginDependency - 7866.IBAttributePlaceholdersKey - 7866.IBPluginDependency - 7867.IBPluginDependency - 787.IBPluginDependency - 7871.IBAttributePlaceholdersKey - 7871.IBPluginDependency - 7872.IBPluginDependency - 7873.IBAttributePlaceholdersKey - 7873.IBPluginDependency - 7874.IBPluginDependency - 7875.IBPluginDependency - 7876.IBPluginDependency - 7877.IBPluginDependency - 7878.IBPluginDependency - 7879.IBPluginDependency - 788.IBPluginDependency - 7880.IBPluginDependency - 7881.IBPluginDependency - 7886.IBPluginDependency - 789.IBPluginDependency - 7899.IBPluginDependency - 79.IBPluginDependency - 794.IBPluginDependency - 794.IBWindowTemplateEditedContentRect - 794.NSWindowTemplate.visibleAtLaunch - 795.IBAttributePlaceholdersKey - 795.IBPluginDependency - 796.IBPluginDependency - 796.IBWindowTemplateEditedContentRect - 796.NSWindowTemplate.visibleAtLaunch - 797.IBPluginDependency - 7971.IBPluginDependency - 7972.IBPluginDependency - 7973.IBPluginDependency - 7974.IBPluginDependency - 7978.IBPluginDependency - 7987.IBPluginDependency - 7988.IBPluginDependency - 7989.IBPluginDependency - 7993.IBPluginDependency - 7994.IBPluginDependency - 7995.IBPluginDependency - 7996.IBPluginDependency - 7997.IBPluginDependency - 7998.IBPluginDependency - 80.IBPluginDependency - 8003.IBPluginDependency - 8009.IBPluginDependency - 8012.IBPluginDependency - 8013.IBPluginDependency - 8014.IBPluginDependency - 8015.IBPluginDependency - 8016.IBPluginDependency - 8021.IBPluginDependency - 8022.IBPluginDependency - 8023.IBPluginDependency - 8024.IBPluginDependency - 8025.IBPluginDependency - 8030.IBPluginDependency - 8031.IBPluginDependency - 8032.IBPluginDependency - 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.IBPluginDependency - 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 - 8189.IBPluginDependency - 8194.IBPluginDependency - 8195.IBPluginDependency - 823.IBPluginDependency - 824.IBPluginDependency - 8245.IBPluginDependency - 8246.IBPluginDependency - 8247.IBPluginDependency - 8248.IBPluginDependency - 8249.IBPluginDependency - 825.IBPluginDependency - 8251.IBPluginDependency - 8252.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 - 8264.IBPluginDependency - 8265.IBPluginDependency - 8266.IBPluginDependency - 8267.IBPluginDependency - 8268.IBPluginDependency - 8269.IBPluginDependency - 827.IBPluginDependency - 8270.IBPluginDependency - 8271.IBPluginDependency - 828.IBPluginDependency - 829.IBPluginDependency - 8295.IBPluginDependency - 83.IBPluginDependency - 830.IBPluginDependency - 831.IBPluginDependency - 832.IBPluginDependency - 833.IBPluginDependency - 834.IBPluginDependency - 835.IBPluginDependency - 836.IBPluginDependency - 843.IBPluginDependency - 844.IBPluginDependency - 845.IBPluginDependency - 846.IBPluginDependency - 850.IBPluginDependency - 855.IBPluginDependency - 861.IBPluginDependency - 861.IBWindowTemplateEditedContentRect - 861.NSWindowTemplate.visibleAtLaunch - 862.IBPluginDependency - 865.IBPluginDependency - 866.IBPluginDependency - 872.IBPluginDependency - 875.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 - 898.IBPluginDependency - 899.IBPluginDependency - 900.IBPluginDependency - 901.IBPluginDependency - 902.IBPluginDependency - 903.IBPluginDependency - 904.IBPluginDependency - 905.IBPluginDependency - 906.IBPluginDependency - 907.IBPluginDependency - 908.IBPluginDependency - 909.IBPluginDependency - 910.IBPluginDependency - 911.IBPluginDependency - 912.IBPluginDependency - 913.IBPluginDependency - 914.IBPluginDependency - 92.IBPluginDependency - 924.IBPluginDependency - 925.IBPluginDependency - 926.IBPluginDependency - 927.IBPluginDependency - 928.IBPluginDependency - 929.IBPluginDependency - 930.IBPluginDependency - 931.IBPluginDependency - 932.IBPluginDependency - 933.IBPluginDependency - 934.IBPluginDependency - 935.IBPluginDependency - 936.IBPluginDependency - 937.IBPluginDependency - 938.IBPluginDependency - 939.IBPluginDependency - 940.IBPluginDependency - 941.IBPluginDependency - 942.IBPluginDependency - 943.IBPluginDependency - 944.IBPluginDependency - 945.IBPluginDependency - 946.IBPluginDependency - 947.IBPluginDependency - 948.IBPluginDependency - 949.IBPluginDependency - 950.IBPluginDependency - 951.IBPluginDependency - 952.IBPluginDependency - 953.IBPluginDependency - 954.IBPluginDependency - 955.IBPluginDependency - 956.IBPluginDependency - 957.IBPluginDependency - 958.IBPluginDependency - 959.IBPluginDependency - 960.IBPluginDependency - 961.IBPluginDependency - 962.IBPluginDependency - 963.IBPluginDependency - 964.IBPluginDependency - 965.IBPluginDependency - 966.IBPluginDependency - 967.IBPluginDependency - 968.IBPluginDependency - 969.IBPluginDependency - 970.IBPluginDependency - 971.IBPluginDependency - 977.IBPluginDependency - 978.IBPluginDependency - 979.IBPluginDependency - 980.IBPluginDependency - 983.IBPluginDependency - 984.IBPluginDependency - 987.IBPluginDependency - 989.IBPluginDependency - 990.IBPluginDependency - 991.IBPluginDependency - 993.IBPluginDependency - 998.IBPluginDependency - 998.IBWindowTemplateEditedContentRect - 998.NSWindowTemplate.visibleAtLaunch - 999.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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 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 - 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 - - ToolTip - - ToolTip - - Sets the default video filter for new DS display views, producing a variety of visual effects. The incurred CPU usage is dependent on which filter is 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1388, 659}, {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 - - 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 - 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 - 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 - 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 - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - 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 - 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. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Pitch bends the sound depending on the emulation speed. Provides the smoothest sound, regardless of emulation speed. High latency. Low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Sounds like "Dual SPU Synch/Asynch," but is a little smoother and has some added latency. Medium latency. Low CPU usage. Recommended setting. - - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{502, 517}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - Enable to use bilinear interpolation on the final video output by default. This creates a smoothed, but slightly blurry, image effect. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Enable to use bilinear interpolation on the final video output. This creates a smoothed, but slightly blurry, image effect. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1328, 256}, {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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1000, 254}, {301, 560}} - - 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 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 - - ToolTip - - ToolTip - - When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. - - - 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 - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - 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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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. Best performance option for single processor machines. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Renders 3D on two separate threads. 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. May improve 3D performance on multiprocessor machines, but significantly reduces performance on single processor machines. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. - - - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Pitch bends the sound depending on the emulation speed. Provides the smoothest sound, regardless of emulation speed. High latency. Low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Sounds like "Dual SPU Synch/Asynch," but is a little smoother and has some added latency. Medium latency. Low CPU usage. Recommended setting. - - - 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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{1332, 177}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - 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 - {{999, 689}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - - 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 - - ToolTip - - ToolTip - - Immediately writes the value once to the target address. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1063, 215}, {500, 416}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - 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 - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{548, 341}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{975, 868}, {400, 100}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{962, 321}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - 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 - - 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 - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1237, 579}, {350, 263}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1202, 1031}, {350, 125}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{976, 297}, {620, 267}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1085, 723}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - {{1202, 877}, {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 - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1127, 996}, {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}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{853, 403}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{1120, 724}, {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 - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{684, 470}, {640, 329}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - Choose a directory where the R4 device stores its data. - - - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Resets the emulation. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1299, 599}, {194, 241}} - - - YES - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1413, 517}, {204, 521}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1444, 249}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{668, 434}, {580, 588}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1117, 350}, {467, 128}} - - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - - - - - YES - - - - - 8299 - - - - 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 - inputManager - inputPrefsView - mLoadStateSlot - mSaveStateSlot - migrationDelegate - prefGeneralView - prefWindow - prefWindowController - romInfoPanelController - troubleshootingWindow - - - YES - NSObjectController - NSBox - NSBox - NSBox - NSBox - NSBox - NSObjectController - NSObjectController - NSWindow - NSObjectController - NSObjectController - InputManager - InputPrefsView - NSMenu - NSMenu - FileMigrationDelegate - NSView - NSWindow - NSObjectController - NSObjectController - NSWindow - - - - YES - - YES - aboutWindowController - boxARMBinaries - boxFileSystem - boxGeneralInfo - boxMisc - boxTitles - cdsCoreController - cdsSoundController - cheatListWindow - cheatWindowController - emuControlController - inputManager - inputPrefsView - mLoadStateSlot - mSaveStateSlot - migrationDelegate - prefGeneralView - prefWindow - prefWindowController - romInfoPanelController - troubleshootingWindow - - - YES - - aboutWindowController - NSObjectController - - - boxARMBinaries - NSBox - - - boxFileSystem - NSBox - - - boxGeneralInfo - NSBox - - - boxMisc - NSBox - - - boxTitles - NSBox - - - cdsCoreController - NSObjectController - - - cdsSoundController - NSObjectController - - - cheatListWindow - NSWindow - - - cheatWindowController - NSObjectController - - - emuControlController - NSObjectController - - - inputManager - InputManager - - - inputPrefsView - InputPrefsView - - - mLoadStateSlot - NSMenu - - - mSaveStateSlot - NSMenu - - - migrationDelegate - FileMigrationDelegate - - - prefGeneralView - NSView - - - prefWindow - NSWindow - - - prefWindowController - NSObjectController - - - romInfoPanelController - NSObjectController - - - troubleshootingWindow - NSWindow - - - - - IBProjectSource - ./Classes/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 - ./Classes/CheatWindowDelegate.h - - - - DisplayWindowController - NSWindowController - - YES - - YES - changeCoreSpeed: - changeDisplayGap: - changeDisplayMode: - changeDisplayOrder: - changeDisplayOrientation: - changeRotation: - changeRotationRelative: - changeScale: - changeVideoFilter: - changeVolume: - copy: - openRom: - reset: - saveScreenshotAs: - toggleBilinearFilteredOutput: - toggleExecutePause: - toggleFullScreenDisplay: - toggleKeepMinDisplaySizeAtNormal: - toggleStatusBar: - toggleVerticalSync: - 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: - changeVideoFilter: - changeVolume: - copy: - openRom: - reset: - saveScreenshotAs: - toggleBilinearFilteredOutput: - toggleExecutePause: - toggleFullScreenDisplay: - toggleKeepMinDisplaySizeAtNormal: - toggleStatusBar: - toggleVerticalSync: - writeDefaultsDisplayGap: - writeDefaultsDisplayRotation: - writeDefaultsDisplayVideoSettings: - writeDefaultsHUDSettings: - - - YES - - changeCoreSpeed: - id - - - changeDisplayGap: - id - - - changeDisplayMode: - id - - - changeDisplayOrder: - id - - - changeDisplayOrientation: - id - - - changeRotation: - id - - - changeRotationRelative: - id - - - changeScale: - id - - - changeVideoFilter: - id - - - changeVolume: - id - - - copy: - id - - - openRom: - id - - - reset: - id - - - saveScreenshotAs: - id - - - toggleBilinearFilteredOutput: - id - - - toggleExecutePause: - id - - - toggleFullScreenDisplay: - id - - - toggleKeepMinDisplaySizeAtNormal: - id - - - toggleStatusBar: - id - - - toggleVerticalSync: - id - - - writeDefaultsDisplayGap: - id - - - writeDefaultsDisplayRotation: - id - - - writeDefaultsDisplayVideoSettings: - id - - - writeDefaultsHUDSettings: - id - - - - - saveScreenshotPanelAccessoryView - NSView - - - saveScreenshotPanelAccessoryView - - saveScreenshotPanelAccessoryView - NSView - - - - IBProjectSource - ./Classes/DisplayWindowController.h - - - - EmuControllerDelegate - NSObject - - YES - - YES - changeAudioEngine: - changeCoreEmuFlags: - changeCoreSpeed: - changeFirmwareSettings: - changeRomSaveType: - changeSpuAdvancedLogic: - changeSpuInterpolationMode: - changeSpuSyncMethod: - changeSpuSyncMode: - changeVolume: - chooseSlot1R4Directory: - closeRom: - closeSheet: - exportRomSave: - importRomSave: - loadEmuSaveStateSlot: - loadRecentRom: - newDisplayWindow: - openEmuSaveState: - openRom: - reset: - revealGameDataFolderInFinder: - revealRomInFinder: - revertEmuSaveState: - saveEmuSaveState: - saveEmuSaveStateAs: - saveEmuSaveStateSlot: - slot1Eject: - toggleAutoFrameSkip: - toggleCheats: - toggleExecutePause: - 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 - - - - YES - - YES - changeAudioEngine: - changeCoreEmuFlags: - changeCoreSpeed: - changeFirmwareSettings: - changeRomSaveType: - changeSpuAdvancedLogic: - changeSpuInterpolationMode: - changeSpuSyncMethod: - changeSpuSyncMode: - changeVolume: - chooseSlot1R4Directory: - closeRom: - closeSheet: - exportRomSave: - importRomSave: - loadEmuSaveStateSlot: - loadRecentRom: - newDisplayWindow: - openEmuSaveState: - openRom: - reset: - revealGameDataFolderInFinder: - revealRomInFinder: - revertEmuSaveState: - saveEmuSaveState: - saveEmuSaveStateAs: - saveEmuSaveStateSlot: - slot1Eject: - toggleAutoFrameSkip: - toggleCheats: - toggleExecutePause: - toggleGPUState: - toggleSpeedLimiter: - writeDefaults3DRenderingSettings: - writeDefaultsEmulationSettings: - writeDefaultsSlot1Settings: - writeDefaultsSoundSettings: - - - YES - - 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 - - - exportRomSave: - id - - - importRomSave: - id - - - loadEmuSaveStateSlot: - id - - - loadRecentRom: - id - - - newDisplayWindow: - id - - - openEmuSaveState: - id - - - openRom: - id - - - reset: - id - - - revealGameDataFolderInFinder: - id - - - revealRomInFinder: - id - - - revertEmuSaveState: - id - - - saveEmuSaveState: - id - - - saveEmuSaveStateAs: - id - - - saveEmuSaveStateSlot: - id - - - slot1Eject: - id - - - toggleAutoFrameSkip: - id - - - toggleCheats: - id - - - toggleExecutePause: - id - - - toggleGPUState: - id - - - toggleSpeedLimiter: - id - - - writeDefaults3DRenderingSettings: - id - - - writeDefaultsEmulationSettings: - id - - - writeDefaultsSlot1Settings: - id - - - writeDefaultsSoundSettings: - id - - - - - YES - - YES - cdsCoreController - cdsSoundController - cheatDatabaseController - cheatListController - cheatWindowController - cheatWindowDelegate - exportRomSavePanelAccessoryView - firmwarePanelController - inputManager - romInfoPanelController - saveFileMigrationSheet - saveStatePrecloseSheet - slot1ManagerWindow - - - YES - NSObjectController - NSObjectController - NSArrayController - NSArrayController - NSObjectController - CheatWindowDelegate - NSView - NSObjectController - InputManager - NSObjectController - NSWindow - NSWindow - NSWindow - - - - YES - - YES - cdsCoreController - cdsSoundController - cheatDatabaseController - cheatListController - cheatWindowController - cheatWindowDelegate - exportRomSavePanelAccessoryView - firmwarePanelController - inputManager - romInfoPanelController - saveFileMigrationSheet - saveStatePrecloseSheet - slot1ManagerWindow - - - YES - - cdsCoreController - NSObjectController - - - cdsSoundController - NSObjectController - - - cheatDatabaseController - NSArrayController - - - cheatListController - NSArrayController - - - cheatWindowController - NSObjectController - - - cheatWindowDelegate - CheatWindowDelegate - - - exportRomSavePanelAccessoryView - NSView - - - firmwarePanelController - NSObjectController - - - inputManager - InputManager - - - romInfoPanelController - NSObjectController - - - saveFileMigrationSheet - NSWindow - - - saveStatePrecloseSheet - NSWindow - - - slot1ManagerWindow - NSWindow - - - - - IBProjectSource - ./Classes/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 - ./Classes/FileMigrationDelegate.h - - - - InputManager - NSObject - - emuControl - EmuControllerDelegate - - - emuControl - - emuControl - EmuControllerDelegate - - - - IBProjectSource - ./Classes/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 - inputSettingsSaveStateSlot - inputSettingsSetSpeedLimit - inputSettingsTouch - prefWindow - - - YES - InputManager - NSOutlineView - InputProfileController - NSPopUpButton - NSButton - NSButton - NSWindow - NSWindow - NSObjectController - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - - - - YES - - YES - inputManager - inputPrefOutlineView - inputProfileController - inputProfileMenu - inputProfileNextButton - inputProfilePreviousButton - inputProfileRenameSheet - inputProfileSheet - inputSettingsController - inputSettingsGPUState - inputSettingsLoadStateSlot - inputSettingsMicrophone - 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 - - - inputSettingsSaveStateSlot - NSWindow - - - inputSettingsSetSpeedLimit - NSWindow - - - inputSettingsTouch - NSWindow - - - prefWindow - NSWindow - - - - - IBProjectSource - ./Classes/InputPrefsView.h - - - - InputProfileController - NSObjectController - - YES - - YES - inputManager - profileOutlineView - - - YES - InputManager - NSOutlineView - - - - YES - - YES - inputManager - profileOutlineView - - - YES - - inputManager - InputManager - - - profileOutlineView - NSOutlineView - - - - - IBProjectSource - ./Classes/InputProfileController.h - - - - PreferencesWindowDelegate - NSObject - - YES - - YES - chooseARM7BiosImage: - chooseARM9BiosImage: - chooseAdvansceneDatabase: - chooseCheatDatabase: - chooseFirmwareImage: - chooseRomForAutoload: - closeFirmwareConfigSheet: - configureInternalFirmware: - selectAutoloadRomOption: - selectDisplayMode: - selectDisplayRotation: - selectDisplaySize: - selectSPUSyncMethod: - selectSPUSyncMode: - selectVideoFilterType: - setUseBilinear: - showDisplayView: - showEmulationView: - showGeneralView: - showInputView: - showSoundView: - updateVolumeIcon: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - YES - - YES - chooseARM7BiosImage: - chooseARM9BiosImage: - chooseAdvansceneDatabase: - chooseCheatDatabase: - chooseFirmwareImage: - chooseRomForAutoload: - closeFirmwareConfigSheet: - configureInternalFirmware: - selectAutoloadRomOption: - selectDisplayMode: - selectDisplayRotation: - selectDisplaySize: - selectSPUSyncMethod: - selectSPUSyncMode: - selectVideoFilterType: - setUseBilinear: - showDisplayView: - showEmulationView: - showGeneralView: - showInputView: - showSoundView: - updateVolumeIcon: - - - YES - - chooseARM7BiosImage: - id - - - chooseARM9BiosImage: - id - - - chooseAdvansceneDatabase: - id - - - chooseCheatDatabase: - id - - - chooseFirmwareImage: - id - - - chooseRomForAutoload: - id - - - closeFirmwareConfigSheet: - id - - - configureInternalFirmware: - id - - - selectAutoloadRomOption: - id - - - selectDisplayMode: - id - - - selectDisplayRotation: - id - - - selectDisplaySize: - id - - - selectSPUSyncMethod: - id - - - selectSPUSyncMode: - id - - - selectVideoFilterType: - id - - - setUseBilinear: - id - - - showDisplayView: - id - - - showEmulationView: - id - - - showGeneralView: - id - - - showInputView: - id - - - showSoundView: - id - - - updateVolumeIcon: - id - - - - - YES - - YES - cdsCoreController - cheatDatabaseController - cheatWindowController - displayRotationField - displayRotationMenu - displayRotationMenuCustomItem - emuController - firmwareConfigSheet - prefWindowController - previewImageView - spuSyncMethodMenu - viewDisplay - viewEmulation - viewGeneral - viewInput - viewSound - window - - - YES - NSObjectController - NSArrayController - NSObjectController - NSTextField - NSPopUpButton - NSMenuItem - NSObjectController - NSWindow - NSObjectController - NSImageView - NSPopUpButton - NSView - NSView - NSView - InputPrefsView - NSView - NSWindow - - - - YES - - YES - cdsCoreController - cheatDatabaseController - cheatWindowController - displayRotationField - displayRotationMenu - displayRotationMenuCustomItem - emuController - firmwareConfigSheet - prefWindowController - previewImageView - spuSyncMethodMenu - 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 - - - previewImageView - NSImageView - - - spuSyncMethodMenu - NSPopUpButton - - - viewDisplay - NSView - - - viewEmulation - NSView - - - viewGeneral - NSView - - - viewInput - InputPrefsView - - - viewSound - NSView - - - window - NSWindow - - - - - IBProjectSource - ./Classes/PreferencesWindowDelegate.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 - romInfoController - troubleshootingWindowController - viewBugReport - viewFinishedForm - viewSupportRequest - window - - - YES - NSObjectController - NSObjectController - NSView - NSView - NSView - NSWindow - - - - YES - - YES - romInfoController - troubleshootingWindowController - viewBugReport - viewFinishedForm - viewSupportRequest - window - - - YES - - romInfoController - NSObjectController - - - troubleshootingWindowController - NSObjectController - - - viewBugReport - NSView - - - viewFinishedForm - NSView - - - viewSupportRequest - NSView - - - window - NSWindow - - - - - IBProjectSource - ./Classes/TroubleshootingWindowDelegate.h - - - - - 0 - IBCocoaFramework - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 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_Input_420x420 - Icon_ShowHUD_420x420 - Icon_Speaker_420x420 - Icon_VolumeFull_16x16 - 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} - {20, 20} - {15, 15} - {8, 8} - {128, 128} - {11, 11} - {10, 3} - {32, 32} - {16, 15} - {8, 8} - {15, 15} - - - + + + + + + + + 400 + 75 + + 1 + + + + + + + {{1, 1}, {253, 62}} + + + + {{16, 413}, {255, 78}} + + {0, 0} + + 67108864 + 0 + Audio Output Engine + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {288, 511} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + SoundSettingsPanel + YES + + + 8215 + 2 + {{107, 480}, {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 + + + + 268 + {{15, 64}, {131, 17}} + + + YES + + 68157504 + 272630784 + ROM Serial: + + + + + + NO + + + + 268 + {{15, 39}, {131, 17}} + + + YES + + 68157504 + 272630784 + ROM Developer: + + + + + + NO + + + + 268 + {{15, 14}, {131, 17}} + + + YES + + 68157504 + 272630784 + Chip Size: + + + + + + NO + + + + 268 + {{148, 89}, {245, 17}} + + + YES + + 70254657 + 4199424 + + + ? + + + + 1 + MSAxIDEAA + + + NO + + + + 268 + {{148, 64}, {245, 17}} + + + YES + + 70254657 + 4199424 + + + ? + + + + + NO + + + + 268 + {{148, 39}, {245, 17}} + + + YES + + 70254657 + 4199424 + + + ? + + + + + NO + + + + 268 + {{148, 14}, {245, 17}} + + + YES + + 70254657 + 4199424 + + + ? + + + + + NO + + + {{1, 1}, {408, 116}} + + + + + {{153, 436}, {410, 132}} + + + {0, 0} + + 67108864 + 0 + General Info + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 376}, {186, 14}} + + + YES + + 68157504 + 272897024 + JAPANESE TITLE: + + + + + + NO + + + + 268 + {{15, 312}, {186, 14}} + + + YES + + 68157504 + 272897024 + ENGLISH TITLE: + + + + + + NO + + + + 268 + {{15, 248}, {186, 14}} + + + YES + + 68157504 + 272897024 + FRENCH TITLE: + + + + + + NO + + + + 268 + {{15, 184}, {186, 14}} + + + YES + + 68157504 + 272897024 + GERMAN TITLE: + + + + + + NO + + + + 268 + {{15, 120}, {186, 14}} + + + YES + + 68157504 + 272897024 + ITALIAN TITLE: + + + + + + NO + + + + 268 + {{15, 56}, {186, 14}} + + + YES + + 68157504 + 272897024 + SPANISH TITLE: + + + + + + NO + + + + 268 + {{15, 334}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + + 268 + {{15, 270}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + + 268 + {{15, 206}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + + 268 + {{15, 142}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + + 268 + {{15, 78}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + + 268 + {{15, 14}, {186, 42}} + + + YES + + 69206017 + 272896000 + + + ? + + + + + NO + + + {{1, 1}, {216, 400}} + + + + + {{17, 16}, {218, 416}} + + + {0, 0} + + 67108864 + 0 + Titles + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 168}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM9 Binary ROM Offset: + + + + + + NO + + + + 268 + {{15, 146}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM9 Binary Entry Address: + + + + + + NO + + + + 268 + {{15, 124}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM9 Binary Start Address: + + + + + + NO + + + + 268 + {{15, 102}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM9 Binary Size: + + + + + + NO + + + + 268 + {{15, 80}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM7 Binary ROM Offset: + + + + + + NO + + + + 268 + {{15, 58}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM7 Binary Entry Address: + + + + + + NO + + + + 268 + {{15, 36}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM7 Binary Start Address: + + + + + + NO + + + + 268 + {{15, 14}, {186, 14}} + + + YES + + 68157504 + 272630784 + ARM7 Binary Size: + + + + + + NO + + + + 268 + {{203, 168}, {106, 14}} + + + YES + + 70254657 + 71308288 + + ? + + + + + NO + + + + 268 + {{203, 146}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{203, 124}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{203, 102}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? bytes + + + + + NO + + + + 268 + {{203, 80}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{203, 58}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{203, 36}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{203, 14}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? bytes + + + + + NO + + + {{1, 1}, {324, 192}} + + + + + {{237, 224}, {326, 208}} + + + {0, 0} + + 67108864 + 0 + ARM9 & ARM7 Binaries + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 80}, {186, 14}} + + + YES + + 68157504 + 272630784 + FNT ROM Offset: + + + + + + NO + + + + 268 + {{203, 80}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{15, 58}, {186, 14}} + + + YES + + 68157504 + 272630784 + FNT Size: + + + + + + NO + + + + 268 + {{203, 58}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? bytes + + + + + NO + + + + 268 + {{15, 36}, {186, 14}} + + + YES + + 68157504 + 272630784 + FAT ROM Offset: + + + + + + NO + + + + 268 + {{203, 36}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{15, 14}, {186, 14}} + + + YES + + 68157504 + 272630784 + FAT Size: + + + + + + NO + + + + 268 + {{203, 14}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? bytes + + + + + NO + + + {{1, 1}, {324, 104}} + + + + + {{237, 98}, {326, 120}} + + + {0, 0} + + 67108864 + 0 + File System + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 36}, {186, 14}} + + + YES + + 68157504 + 272630784 + Icon/Title Region ROM Offset: + + + + + + NO + + + + 268 + {{203, 36}, {106, 14}} + + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + + 268 + {{15, 14}, {186, 14}} + + + YES + + 68157504 + 272630784 + Used ROM Size: + + + + + + NO + + + + 268 + {{203, 14}, {106, 14}} + + YES + + 70254657 + 71308288 + + + ? + + + + + NO + + + {{1, 1}, {324, 60}} + + + + + {{237, 16}, {326, 76}} + + + {0, 0} + + 67108864 + 0 + Miscellaneous + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {580, 588} + + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + ROMInfoPanel + YES + + + 279 + 2 + {{1360, 99}, {467, 128}} + -461897728 + Set Speed Limit + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{30, 43}, {411, 26}} + + + YES + + -2080112384 + 0 + + + 10 + 0.0 + 1 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{20, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 0x + + + + + + NO + + + + 268 + {{412, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 10x + + + + + + NO + + + + 268 + {{98, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 2x + + + + + + NO + + + + 268 + {{177, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 4x + + + + + + NO + + + + 268 + {{255, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 6x + + + + + + NO + + + + 268 + {{335, 70}, {38, 17}} + + + YES + + 68157504 + 138413056 + 8x + + + + + + NO + + + + 268 + {{32, 18}, {133, 19}} + + + 100 + YES + + 67108864 + 134217728 + Set to Normal Speed + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{203, 21}, {156, 17}} + + + YES + + 68157504 + 71304192 + Speed limit set to: + + + + + + NO + + + + 268 + {{361, 21}, {81, 17}} + + YES + + 68157504 + 4195328 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + #0.00x + -∞ + + + #0.00x + +∞ + + + + #0.00x + #0.00x + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.2fx + + + + + NO + + + + 268 + {{158, 93}, {154, 18}} + + + YES + + -2080374784 + 0 + Enable Speed Limit + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {467, 128} + + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + SetSpeedLimitPanel + 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 + + + + 268 + {{85, 94}, {39, 17}} + + YES + + 68157504 + 138413056 + 180º + + + + + + NO + + + + 268 + {{44, 127}, {39, 17}} + + YES + + 68157504 + 138413056 + 270º + + + + + + NO + + + + 268 + {{125, 127}, {38, 17}} + + YES + + 68157504 + 138413056 + 90º + + + + + + NO + + + + 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 + + + + 268 + {{24, 69}, {101, 17}} + + YES + + 68157504 + 272630784 + Rotation set to: + + + + + + NO + + + + 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 + + + + 268 + {{298, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 150% + + + + + + NO + + + + 268 + {{205, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 100% + + + + + + NO + + + + 268 + {{113, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 50% + + + + + + NO + + + + 268 + {{22, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 0% + + + + + + NO + + + + 268 + {{249, 51}, {107, 17}} + + YES + + 68157504 + 71304192 + Gap Percentage: + + + + + + NO + + + + 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 + + + + 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 + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 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 + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 1 + 0 + 2 + NO + + + {173, 339} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + GPULayersPanel + YES + + + + 268 + + YES + + + 268 + {{195, 5}, {226, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 1 + + + 400 + 75 + + + DeSmuME ROM Save (.dsv) + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + No$GBA ROM Save (.sav) + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Raw Save File (.sav) + + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 11}, {176, 17}} + + YES + + 68157504 + 71304192 + Select ROM Save Format: + + + + + + NO + + + {450, 35} + NSView + + + 7 + 2 + {{75, 507}, {580, 592}} + 1685586944 + Troubleshooting Form + NSWindow + + + {580, 592} + {580, 592} + + + 256 + {580, 592} + + {{0, 0}, {1920, 1178}} + {580, 614} + {580, 614} + YES + + + + 268 + + YES + + + 1292 + {{364, 339}, {32, 32}} + + 28682 + 100 + + + + 265 + {{396, 343}, {168, 28}} + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + + + + 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 + + + + 34 + {{12, 50}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 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 + + + + 269 + {{17, 309}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us what you need help with. + + + + + + NO + + + + 10 + {{12, 332}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 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 + + + + 269 + {{17, 539}, {546, 17}} + + YES + + 68157504 + 138413056 + DeSmuME Technical Support Request Form + + + + + + NO + + + + 10 + {{12, 478}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 269 + {{17, 455}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us about the ROM. + + + + + + NO + + + + 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 + + + + 268 + {{17, 347}, {77, 17}} + + YES + + 68157504 + 272630784 + ROM Serial: + + + + + + NO + + + + 268 + {{17, 377}, {78, 17}} + + YES + + 68157504 + 272630784 + ROM Name: + + + + + + NO + + + + 266 + {{100, 345}, {256, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 266 + {{100, 375}, {256, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 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 + + + + 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 + + + + 34 + {{12, 50}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 256 + {{17, 145}, {206, 14}} + + YES + + 68157504 + 272761856 + Expected Behavior: + + + + + + NO + + + + 256 + {{17, 251}, {206, 14}} + + YES + + 68157504 + 272761856 + Observed Behavior: + + + + + + NO + + + + 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 + + + + 269 + {{17, 309}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us what is happening. + + + + + + NO + + + + 10 + {{12, 332}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 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 + + + + 269 + {{17, 539}, {546, 17}} + + YES + + 68157504 + 138413056 + DeSmuME Bug Report Form + + + + + + NO + + + + 10 + {{12, 478}, {556, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 269 + {{17, 455}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us about the ROM. + + + + + + NO + + + + 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 + + + + 268 + {{17, 347}, {77, 17}} + + YES + + 68157504 + 272630784 + ROM Serial: + + + + + + NO + + + + 268 + {{17, 377}, {78, 17}} + + YES + + 68157504 + 272630784 + ROM Name: + + + + + + NO + + + + 266 + {{100, 345}, {255, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 266 + {{100, 375}, {255, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + + + + 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 + + + + 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 + {{0, 157}, {523, 443}} + + + + + + + + + + + YES + + + 38 + + + + 523 + 1 + + + 100665601 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 0 + + 6 + {597, 10000000} + + + + {{1, 1}, {523, 443}} + + + + + + 4 + + + + 256 + {{524, 1}, {15, 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 + + CocoaDSCore + + + + + YES + spuInterpolationMode + spuSyncMode + spuSyncMethod + spuAdvancedLogic + volume + audioOutputEngine + + YES + + + + + YES + isWorking + isRomLoading + statusText + currentVolumeValue + currentVolumeIcon + isShowingSaveStateDialog + isShowingFileMigrationDialog + isUserInterfaceBlockingExecution + currentSaveStateURL + selectedRomSaveTypeID + currentRom + render3DRenderingEngine + render3DHighPrecisionColorInterpolation + render3DEdgeMarking + render3DFog + render3DTextures + render3DDepthComparisonThreshold + render3DThreads + render3DLineHack + render3DMultisample + mainWindow + mainWindow.displayRotation + mainWindow.videoFilterType + mainWindow.useBilinearOutput + mainWindow.useVerticalSync + mainWindow.screenshotFileFormat + selectedExportRomSaveID + mainWindow.displayGap + + 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 + + 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 + + + + + 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 + + + + showGeneralView: + + + + 1683 + + + + showDisplayView: + + + + 1684 + + + + showInputView: + + + + 1685 + + + + window + + + + 1689 + + + + viewDisplay + + + + 1690 + + + + viewGeneral + + + + 1691 + + + + mLoadStateSlot + + + + 1775 + + + + mSaveStateSlot + + + + 1776 + + + + value: selection.speedScalar + + + + + + value: selection.speedScalar + value + selection.speedScalar + + YES + + YES + NSAllowsEditingMultipleValuesSelection + NSRaisesForNotApplicableKeys + NSValidatesImmediately + + + YES + + + + + + 2 + + + 1869 + + + + value: selection.speedScalar + + + + + + value: selection.speedScalar + value + selection.speedScalar + + YES + + YES + NSAllowsEditingMultipleValuesSelection + NSConditionallySetsEnabled + NSRaisesForNotApplicableKeys + NSValidatesImmediately + + + YES + + + + + + + 2 + + + 1872 + + + + delegate + + + + 2025 + + + + prefGeneralView + + + + 2093 + + + + prefWindow + + + + 2094 + + + + viewSound + + + + 2251 + + + + showSoundView: + + + + 2252 + + + + updateVolumeIcon: + + + + 2268 + + + + selectDisplaySize: + + + + 2306 + + + + selectDisplaySize: + + + + 2307 + + + + selectDisplaySize: + + + + 2308 + + + + selectDisplaySize: + + + + 2309 + + + + selectDisplayRotation: + + + + 2310 + + + + selectDisplayRotation: + + + + 2311 + + + + selectDisplayRotation: + + + + 2312 + + + + selectDisplayRotation: + + + + 2313 + + + + delegate + + + + 2314 + + + + displayRotationField + + + + 2315 + + + + displayRotationMenu + + + + 2316 + + + + displayRotationMenuCustomItem + + + + 2317 + + + + chooseRomForAutoload: + + + + 2322 + + + + selectAutoloadRomOption: + + + + 2323 + + + + selectAutoloadRomOption: + + + + 2324 + + + + viewEmulation + + + + 2380 + + + + showEmulationView: + + + + 2381 + + + + 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 + + + + selectVideoFilterType: + + + + 3346 + + + + selectVideoFilterType: + + + + 3347 + + + + selectVideoFilterType: + + + + 3348 + + + + selectVideoFilterType: + + + + 3349 + + + + selectVideoFilterType: + + + + 3350 + + + + selectVideoFilterType: + + + + 3351 + + + + selectVideoFilterType: + + + + 3352 + + + + selectVideoFilterType: + + + + 3353 + + + + selectVideoFilterType: + + + + 3354 + + + + selectVideoFilterType: + + + + 3355 + + + + selectVideoFilterType: + + + + 3356 + + + + selectVideoFilterType: + + + + 3357 + + + + selectVideoFilterType: + + + + 3358 + + + + selectVideoFilterType: + + + + 3359 + + + + selectVideoFilterType: + + + + 3360 + + + + selectVideoFilterType: + + + + 3361 + + + + selectVideoFilterType: + + + + 3362 + + + + prefWindowController + + + + 3532 + + + + value: selection.AutoloadRomName + + + + + + value: selection.AutoloadRomName + value + selection.AutoloadRomName + 2 + + + 3558 + + + + value: selection.FirmwareImageName + + + + + + value: selection.FirmwareImageName + value + selection.FirmwareImageName + 2 + + + 3561 + + + + value: selection.VideoFilterPreviewImage + + + + + + value: selection.VideoFilterPreviewImage + value + selection.VideoFilterPreviewImage + 2 + + + 3562 + + + + selectVideoFilterType: + + + + 3647 + + + + 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 + + + + previewImageView + + + + 4127 + + + + setUseBilinear: + + + + 4128 + + + + 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: + + + + 4279 + + + + 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 + + + + selectDisplayMode: + + + + 5735 + + + + selectDisplayMode: + + + + 5736 + + + + selectDisplayMode: + + + + 5737 + + + + value: selection.isSpeedLimitEnabled + + + + + + value: selection.isSpeedLimitEnabled + value + selection.isSpeedLimitEnabled + + YES + + YES + NSAllowsEditingMultipleValuesSelection + NSConditionallySetsEnabled + NSRaisesForNotApplicableKeys + NSValidatesImmediately + + + YES + + + + + + + 2 + + + 5971 + + + + selectedTag: values.DisplayView_Mode + + + + + + selectedTag: values.DisplayView_Mode + selectedTag + values.DisplayView_Mode + 2 + + + 5972 + + + + selectedTag: values.DisplayView_Size + + + + + + selectedTag: values.DisplayView_Size + selectedTag + values.DisplayView_Size + 2 + + + 5973 + + + + value: values.DisplayView_Rotation + + + + + + value: values.DisplayView_Rotation + value + values.DisplayView_Rotation + 2 + + + 5974 + + + + value: values.DisplayView_UseBilinearOutput + + + + + + value: values.DisplayView_UseBilinearOutput + value + values.DisplayView_UseBilinearOutput + 2 + + + 5975 + + + + 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_AutoloadROMOnLaunch + + + + + + value: values.General_AutoloadROMOnLaunch + value + values.General_AutoloadROMOnLaunch + 2 + + + 6120 + + + + selectedTag: values.General_AutoloadROMOption + + + + + + selectedTag: values.General_AutoloadROMOption + selectedTag + values.General_AutoloadROMOption + 2 + + + 6121 + + + + enabled: values.General_AutoloadROMOnLaunch + + + + + + enabled: values.General_AutoloadROMOnLaunch + enabled + values.General_AutoloadROMOnLaunch + 2 + + + 6122 + + + + 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 + + + + enabled: values.General_AutoloadROMSelectedPath + + + + + + enabled: values.General_AutoloadROMSelectedPath + enabled + values.General_AutoloadROMSelectedPath + + NSValueTransformerName + NSIsNotNil + + 2 + + + 6125 + + + + 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 + + + + selectVideoFilterType: + + + + 6239 + + + + 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 + + + + changeCoreSpeed: + + + + 6747 + + + + changeCoreSpeed: + + + + 6748 + + + + changeCoreSpeed: + + + + 6749 + + + + changeCoreSpeed: + + + + 6750 + + + + 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 + + + + selectedTag: selection.render3DRenderingEngine + + + + + + selectedTag: selection.render3DRenderingEngine + selectedTag + selection.render3DRenderingEngine + 2 + + + 6815 + + + + value: selection.render3DLineHack + + + + + + value: selection.render3DLineHack + value + selection.render3DLineHack + 2 + + + 6816 + + + + value: selection.render3DTextures + + + + + + value: selection.render3DTextures + value + selection.render3DTextures + 2 + + + 6817 + + + + value: selection.render3DHighPrecisionColorInterpolation + + + + + + value: selection.render3DHighPrecisionColorInterpolation + value + selection.render3DHighPrecisionColorInterpolation + 2 + + + 6818 + + + + value: selection.render3DEdgeMarking + + + + + + value: selection.render3DEdgeMarking + value + selection.render3DEdgeMarking + 2 + + + 6819 + + + + value: selection.render3DFog + + + + + + value: selection.render3DFog + value + selection.render3DFog + 2 + + + 6820 + + + + value: selection.render3DDepthComparisonThreshold + + + + + + value: selection.render3DDepthComparisonThreshold + value + selection.render3DDepthComparisonThreshold + 2 + + + 6821 + + + + value: selection.render3DMultisample + + + + + + value: selection.render3DMultisample + value + selection.render3DMultisample + 2 + + + 6822 + + + + selectedTag: selection.render3DThreads + + + + + + selectedTag: selection.render3DThreads + selectedTag + selection.render3DThreads + 2 + + + 6823 + + + + 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.mainWindow.videoFilterType + + + + + + selectedTag: selection.mainWindow.videoFilterType + selectedTag + selection.mainWindow.videoFilterType + 2 + + + 6989 + + + + value: selection.mainWindow.useBilinearOutput + + + + + + value: selection.mainWindow.useBilinearOutput + value + selection.mainWindow.useBilinearOutput + 2 + + + 6990 + + + + value: selection.mainWindow.useVerticalSync + + + + + + value: selection.mainWindow.useVerticalSync + value + selection.mainWindow.useVerticalSync + 2 + + + 6991 + + + + selectedTag: selection.selectedExportRomSaveID + + + + + + selectedTag: selection.selectedExportRomSaveID + selectedTag + selection.selectedExportRomSaveID + 2 + + + 7001 + + + + emuControl + + + + 7003 + + + + inputManager + + + + 7004 + + + + inputManager + + + + 7005 + + + + toggleExecutePause: + + + + 7009 + + + + reset: + + + + 7010 + + + + copy: + + + + 7011 + + + + toggleCheats: + + + + 7012 + + + + toggleSpeedLimiter: + + + + 7013 + + + + 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 + + + + selectDisplaySize: + + + + 8187 + + + + value: selection.render3DDepthComparisonThreshold + + + + + + value: selection.render3DDepthComparisonThreshold + value + selection.render3DDepthComparisonThreshold + 2 + + + 8193 + + + + 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 + + + + changeCoreSpeed: + + + + 8242 + + + + makeKeyAndOrderFront: + + + + 8250 + + + + toggleVerticalSync: + + + + 8274 + + + + toggleBilinearFilteredOutput: + + + + 8275 + + + + changeVideoFilter: + + + + 8276 + + + + changeVideoFilter: + + + + 8277 + + + + changeVideoFilter: + + + + 8278 + + + + changeVideoFilter: + + + + 8279 + + + + changeVideoFilter: + + + + 8280 + + + + changeVideoFilter: + + + + 8281 + + + + changeVideoFilter: + + + + 8282 + + + + changeVideoFilter: + + + + 8283 + + + + changeVideoFilter: + + + + 8284 + + + + changeVideoFilter: + + + + 8285 + + + + changeVideoFilter: + + + + 8286 + + + + changeVideoFilter: + + + + 8287 + + + + changeVideoFilter: + + + + 8288 + + + + changeVideoFilter: + + + + 8289 + + + + changeVideoFilter: + + + + 8290 + + + + changeVideoFilter: + + + + 8291 + + + + changeVideoFilter: + + + + 8292 + + + + changeVideoFilter: + + + + 8293 + + + + changeVideoFilter: + + + + 8294 + + + + toggleFullScreenDisplay: + + + + 8297 + + + + value: selection.gameDeveloperWithCode + + + + + + value: selection.gameDeveloperWithCode + value + selection.gameDeveloperWithCode + + YES + + YES + NSAllowsEditingMultipleValuesSelection + NSRaisesForNotApplicableKeys + + + YES + + + + + 2 + + + 8299 + + + + + 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 + + + + + + + + + + + + + + + + + + 578 + + + + + 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 + + + + + 983 + + + YES + + + + + + 984 + + + YES + + + + + + + + + + 987 + + + + + 989 + + + + + 990 + + + + + 991 + + + + + 993 + + + + + 998 + + + YES + + + + + + 999 + + + YES + + + + + + + + + + + + + + + + 1000 + + + YES + + + + + + 1001 + + + + + 1002 + + + YES + + + + + + 1003 + + + + + 1004 + + + YES + + + + + + 1005 + + + + + 1006 + + + YES + + + + + + 1007 + + + + + 1008 + + + YES + + + + + + 1009 + + + + + 1010 + + + YES + + + + + + 1011 + + + + + 1012 + + + YES + + + + + + 1013 + + + + + 1016 + + + YES + + + + + + 1017 + + + + + 1020 + + + YES + + + + + + 1021 + + + + + 1024 + + + YES + + + + + + 1025 + + + YES + + + + + + 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 + + + + + 1539 + + + YES + + + + + + 1540 + + + + + 1541 + + + YES + + + + + + 1542 + + + YES + + + + + + 1543 + + + YES + + + + + + + 1544 + + + + + 1545 + + + + + 1547 + + + YES + + + + + + 1548 + + + + + 1584 + + + YES + + + + Display Preferences View + + + 1615 + + + YES + + + + + + + + 1616 + + + YES + + + + + + 1619 + + + YES + + + + + + + 1620 + + + YES + + + + + + 1621 + + + YES + + + + + + + + + + + 1626 + + + YES + + + + + + 1627 + + + YES + + + + + + 1628 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + 1629 + + + + + 1630 + + + + + 1631 + + + + + 1632 + + + YES + + + + + + 1633 + + + + + 1634 + + + YES + + + + + + 1635 + + + + + 1636 + + + + + 1637 + + + + + 1638 + + + + + 1639 + + + + + 1640 + + + + + 1641 + + + + + 1642 + + + + + 1643 + + + + + 1644 + + + + + 1645 + + + + + 1646 + + + + + 1647 + + + + + 1648 + + + + + 1649 + + + + + 1650 + + + YES + + + + + + 1651 + + + + + 1679 + + + + + 1680 + + + + + 1681 + + + + + 1682 + + + + + 1721 + + + CocoaDS Core Controller + + + 1736 + + + + + 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 + + + + + 2320 + + + YES + + + + + + 2321 + + + + + 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 + + + + + 2473 + + + + + 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 + + + + + 3285 + + + YES + + + + + + 3286 + + + + + 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 + + + 3521 + + + + + 3522 + + + + + 3523 + + + + + 3644 + + + + + 3689 + + + YES + + + + + + 3690 + + + + + 3709 + + + + + 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 + + + + + + + + + + + + 3692 + + + YES + + + + + + 3693 + + + + + 3648 + + + YES + + + + + + + + + + + + + + + + + + + + + + + + + 3667 + + + + + 3666 + + + + + 3665 + + + + + 3664 + + + + + 3663 + + + + + 3662 + + + + + 3661 + + + + + 3660 + + + + + 3659 + + + + + 3658 + + + + + 3657 + + + + + 3656 + + + + + 3655 + + + + + 3654 + + + + + 3653 + + + + + 3652 + + + + + 3651 + + + + + 3650 + + + + + 3649 + + + + + 3789 + + + + + 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 + + + + + 3878 + + + YES + + + + + + 3879 + + + YES + + + + + + + + + + + 3880 + + + + + 3881 + + + + + 3882 + + + + + 3883 + + + + + 3884 + + + + + 3885 + + + YES + + + + + + + 3886 + + + YES + + + + + + 3887 + + + + + 3888 + + + YES + + + + + + 3889 + + + YES + + + + + + 3890 + + + YES + + + + + + + + + + 3894 + + + + + 3893 + + + + + 3892 + + + + + 3891 + + + + + 3896 + + + YES + + + + + + 3897 + + + + + 3899 + + + YES + + + + + + + 3900 + + + YES + + + + + + 3901 + + + + + 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 + + + 4062 + + + + + 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 + + + + + + 491 + + + YES + + + + + + + + + + + 980 + + + + + 979 + + + + + 978 + + + + + 977 + + + + + 492 + + + + + 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 + + + + + 2529 + + + YES + + + + + + 2530 + + + YES + + + + + + + + + 2548 + + + + + 2549 + + + + + 2551 + + + + + 2558 + + + YES + + + + + + 2559 + + + YES + + + + + + 2560 + + + + + 2553 + + + + + 5713 + + + About Window Controller + + + 5933 + + + YES + + + + + Export ROM Save Panel Accessory + + + 5934 + + + YES + + + + + + 5935 + + + YES + + + + + + 5936 + + + + + 5937 + + + YES + + + + + + 5938 + + + YES + + + + + + + + 5939 + + + + + 5942 + + + + + 5963 + + + + + 5965 + + + YES + + + + + + 5966 + + + + + 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 + + + + + 6236 + + + + + 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 + + + 6451 + + + + + 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 + + + + + 6634 + + + + + 6635 + + + + + 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 + + + + + + + + + + + 7871 + + + YES + + + + + + 7872 + + + + + 7877 + + + YES + + + + + + 7878 + + + + + 7880 + + + YES + + + + + + 7881 + + + + + 7886 + + + + + 7899 + + + YES + + + + + + + + + + 7857 + + + YES + + + + + + + + + + + 7862 + + + + + 7861 + + + + + 7860 + + + + + 7859 + + + + + 7858 + + + + + 7863 + + + YES + + + + + + 7864 + + + + + 7866 + + + YES + + + + + + 7867 + + + + + 7875 + + + YES + + + + + + 7876 + + + + + 125 + + + YES + + + + + + 126 + + + + + 7873 + + + YES + + + + + + 7874 + + + + + 8009 + + + YES + + + + + + + + + 7971 + + + YES + + + + + + 7974 + + + + + 7972 + + + YES + + + + + + 7973 + + + + + 7978 + + + + + 7987 + + + YES + + + + + + 7988 + + + YES + + + + + + 7989 + + + YES + + + + + + + + + + 8003 + + + + + 7996 + + + + + 7995 + + + YES + + + + + + 7994 + + + + + 7993 + + + + + 7997 + + + YES + + + + + + 7998 + + + + + 7879 + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8247 + + + + + 8248 + + + + + 8249 + + + + + 8251 + + + + + 8252 + + + + + 8253 + + + + + 8254 + + + + + 8255 + + + + + 8256 + + + + + 8257 + + + + + 8258 + + + + + 8259 + + + + + 8260 + + + + + 8261 + + + + + 8262 + + + + + 8263 + + + + + 8264 + + + + + 8265 + + + + + 8266 + + + + + 8267 + + + + + 8268 + + + + + 8269 + + + + + 8270 + + + + + 8271 + + + + + 8295 + + + + + 8301 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 1000.IBPluginDependency + 1001.IBPluginDependency + 1002.IBPluginDependency + 1003.IBPluginDependency + 1004.IBPluginDependency + 1005.IBPluginDependency + 1006.IBPluginDependency + 1007.IBPluginDependency + 1008.IBPluginDependency + 1009.IBPluginDependency + 1010.IBPluginDependency + 1011.IBPluginDependency + 1012.IBPluginDependency + 1013.IBPluginDependency + 1016.IBPluginDependency + 1017.IBPluginDependency + 1020.IBPluginDependency + 1021.IBPluginDependency + 1024.IBPluginDependency + 1025.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.IBPluginDependency + 126.IBPluginDependency + 129.IBPluginDependency + 1298.IBEditorWindowLastContentRect + 1298.IBPluginDependency + 1299.IBAttributePlaceholdersKey + 1299.IBPluginDependency + 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.IBPluginDependency + 1510.IBPluginDependency + 1511.IBPluginDependency + 1512.IBPluginDependency + 1525.IBAttributePlaceholdersKey + 1525.IBPluginDependency + 1526.IBPluginDependency + 1527.IBPluginDependency + 1528.IBPluginDependency + 1529.IBPluginDependency + 1530.IBPluginDependency + 1531.IBPluginDependency + 1532.IBPluginDependency + 1538.IBPluginDependency + 1539.IBPluginDependency + 1540.IBPluginDependency + 1541.IBPluginDependency + 1542.IBPluginDependency + 1543.IBPluginDependency + 1544.IBPluginDependency + 1545.IBPluginDependency + 1547.IBPluginDependency + 1548.IBPluginDependency + 1577.IBAttributePlaceholdersKey + 1577.IBPluginDependency + 1578.IBPluginDependency + 1579.IBNumberFormatterBehaviorMetadataKey + 1579.IBNumberFormatterLocalizesFormatMetadataKey + 1579.IBNumberFormatterSampleNumberKey + 1579.IBPluginDependency + 1580.IBPluginDependency + 1581.IBPluginDependency + 1584.IBPluginDependency + 1615.IBAttributePlaceholdersKey + 1615.IBPluginDependency + 1616.IBPluginDependency + 1619.IBPluginDependency + 1620.IBPluginDependency + 1621.IBPluginDependency + 1626.IBAttributePlaceholdersKey + 1626.IBPluginDependency + 1627.IBPluginDependency + 1628.IBPluginDependency + 1629.IBPluginDependency + 1630.IBPluginDependency + 1631.IBPluginDependency + 1632.IBPluginDependency + 1633.IBPluginDependency + 1634.IBPluginDependency + 1635.IBPluginDependency + 1636.IBPluginDependency + 1637.IBPluginDependency + 1638.IBPluginDependency + 1639.IBPluginDependency + 1640.IBPluginDependency + 1641.IBPluginDependency + 1642.IBPluginDependency + 1643.IBPluginDependency + 1644.IBPluginDependency + 1645.IBPluginDependency + 1646.IBPluginDependency + 1647.IBPluginDependency + 1648.IBPluginDependency + 1649.IBPluginDependency + 1650.IBPluginDependency + 1651.IBPluginDependency + 1679.IBPluginDependency + 1679.toolbarItem.selectable + 1680.IBPluginDependency + 1680.toolbarItem.selectable + 1681.IBPluginDependency + 1681.toolbarItem.selectable + 1682.IBPluginDependency + 1721.IBPluginDependency + 1736.IBNumberFormatterBehaviorMetadataKey + 1736.IBNumberFormatterLocalizesFormatMetadataKey + 1736.IBPluginDependency + 1855.IBPluginDependency + 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.toolbarItem.selectable + 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.IBPluginDependency + 2297.IBAttributePlaceholdersKey + 2297.IBPluginDependency + 2298.IBAttributePlaceholdersKey + 2298.IBPluginDependency + 2299.IBPluginDependency + 23.IBPluginDependency + 2320.IBPluginDependency + 2321.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.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.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.IBPluginDependency + 2427.IBAttributePlaceholdersKey + 2427.IBPluginDependency + 2428.IBPluginDependency + 2429.IBAttributePlaceholdersKey + 2429.IBPluginDependency + 2430.IBPluginDependency + 2431.IBPluginDependency + 2432.IBPluginDependency + 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 + 2473.IBPluginDependency + 2482.IBPluginDependency + 2483.IBPluginDependency + 2518.IBPluginDependency + 2519.IBPluginDependency + 2529.IBPluginDependency + 2530.IBPluginDependency + 2548.IBPluginDependency + 2549.IBPluginDependency + 2551.IBPluginDependency + 2553.IBPluginDependency + 2556.IBPluginDependency + 2558.IBPluginDependency + 2559.IBPluginDependency + 2560.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.IBPluginDependency + 2900.IBPluginDependency + 2901.IBPluginDependency + 2902.IBPluginDependency + 2903.IBPluginDependency + 295.IBPluginDependency + 2954.IBPluginDependency + 2955.IBPluginDependency + 296.IBPluginDependency + 297.IBPluginDependency + 298.IBPluginDependency + 3015.IBPluginDependency + 3042.IBPluginDependency + 3059.IBPluginDependency + 3060.IBPluginDependency + 3061.IBPluginDependency + 3062.IBPluginDependency + 3063.IBPluginDependency + 3146.IBPluginDependency + 3148.IBPluginDependency + 3204.IBPluginDependency + 3205.IBPluginDependency + 3206.IBPluginDependency + 3207.IBPluginDependency + 3208.IBPluginDependency + 3209.IBPluginDependency + 3210.IBPluginDependency + 3211.IBPluginDependency + 3213.IBPluginDependency + 3214.IBPluginDependency + 3285.IBPluginDependency + 3286.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.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 + 3521.IBPluginDependency + 3522.IBPluginDependency + 3523.IBPluginDependency + 3644.IBPluginDependency + 3648.IBPluginDependency + 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 + 3689.IBAttributePlaceholdersKey + 3689.IBPluginDependency + 3690.IBPluginDependency + 3692.IBAttributePlaceholdersKey + 3692.IBPluginDependency + 3693.IBPluginDependency + 3709.IBPluginDependency + 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 + 3778.IBPluginDependency + 3779.IBAttributePlaceholdersKey + 3779.IBPluginDependency + 3780.IBPluginDependency + 3781.IBNumberFormatterBehaviorMetadataKey + 3781.IBNumberFormatterLocalizesFormatMetadataKey + 3781.IBPluginDependency + 3782.IBPluginDependency + 3783.IBPluginDependency + 3784.IBPluginDependency + 3786.IBPluginDependency + 3787.IBPluginDependency + 3788.IBPluginDependency + 3789.IBPluginDependency + 3790.IBPluginDependency + 3790.IBWindowTemplateEditedContentRect + 3790.NSWindowTemplate.visibleAtLaunch + 3791.IBPluginDependency + 3793.IBPluginDependency + 3794.IBPluginDependency + 3798.IBPluginDependency + 3799.IBPluginDependency + 3800.IBAttributePlaceholdersKey + 3800.IBPluginDependency + 3801.IBAttributePlaceholdersKey + 3801.IBPluginDependency + 3802.IBAttributePlaceholdersKey + 3802.IBPluginDependency + 3803.IBAttributePlaceholdersKey + 3803.IBPluginDependency + 3804.IBAttributePlaceholdersKey + 3804.IBPluginDependency + 3805.IBPluginDependency + 3806.IBPluginDependency + 3807.IBPluginDependency + 3808.IBPluginDependency + 3809.IBPluginDependency + 3810.IBNumberFormatterBehaviorMetadataKey + 3810.IBNumberFormatterLocalizesFormatMetadataKey + 3810.IBPluginDependency + 3811.IBPluginDependency + 3837.IBPluginDependency + 3838.IBPluginDependency + 3839.IBAttributePlaceholdersKey + 3839.IBPluginDependency + 3840.IBAttributePlaceholdersKey + 3840.IBPluginDependency + 3841.IBPluginDependency + 3843.IBAttributePlaceholdersKey + 3843.IBPluginDependency + 3844.IBPluginDependency + 3845.IBPluginDependency + 3846.IBAttributePlaceholdersKey + 3846.IBPluginDependency + 3847.IBAttributePlaceholdersKey + 3847.IBPluginDependency + 3849.IBPluginDependency + 3850.IBPluginDependency + 3878.IBPluginDependency + 3879.IBPluginDependency + 3880.IBAttributePlaceholdersKey + 3880.IBPluginDependency + 3881.IBAttributePlaceholdersKey + 3881.IBPluginDependency + 3882.IBPluginDependency + 3883.IBAttributePlaceholdersKey + 3883.IBPluginDependency + 3884.IBAttributePlaceholdersKey + 3884.IBPluginDependency + 3885.IBPluginDependency + 3886.IBAttributePlaceholdersKey + 3886.IBPluginDependency + 3887.IBPluginDependency + 3888.IBAttributePlaceholdersKey + 3888.IBPluginDependency + 3889.IBPluginDependency + 3890.IBPluginDependency + 3891.IBAttributePlaceholdersKey + 3891.IBPluginDependency + 3892.IBAttributePlaceholdersKey + 3892.IBPluginDependency + 3893.IBAttributePlaceholdersKey + 3893.IBPluginDependency + 3894.IBAttributePlaceholdersKey + 3894.IBPluginDependency + 3896.IBPluginDependency + 3897.IBPluginDependency + 3899.IBPluginDependency + 3900.IBAttributePlaceholdersKey + 3900.IBPluginDependency + 3901.IBPluginDependency + 3935.IBPluginDependency + 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.IBPluginDependency + 3997.IBAttributePlaceholdersKey + 3997.IBPluginDependency + 3998.IBAttributePlaceholdersKey + 3998.IBPluginDependency + 4001.IBPluginDependency + 4002.IBAttributePlaceholdersKey + 4002.IBPluginDependency + 4003.IBAttributePlaceholdersKey + 4003.IBPluginDependency + 4004.IBPluginDependency + 4024.IBPluginDependency + 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.IBPluginDependency + 4054.IBPluginDependency + 4059.IBPluginDependency + 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.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 + 4584.IBPluginDependency + 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.IBPluginDependency + 4910.IBAttributePlaceholdersKey + 4910.IBPluginDependency + 4911.IBPluginDependency + 4912.IBPluginDependency + 4913.IBPluginDependency + 4914.IBPluginDependency + 4916.IBPluginDependency + 492.IBPluginDependency + 494.IBPluginDependency + 4947.IBPluginDependency + 5.IBPluginDependency + 5003.IBPluginDependency + 5004.IBPluginDependency + 5005.IBPluginDependency + 5006.IBPluginDependency + 5007.IBPluginDependency + 5008.IBPluginDependency + 5009.IBPluginDependency + 5066.IBPluginDependency + 5067.IBPluginDependency + 5068.IBAttributePlaceholdersKey + 5068.IBPluginDependency + 5069.IBPluginDependency + 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 + 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.IBPluginDependency + 541.IBPluginDependency + 5419.IBPluginDependency + 542.IBPluginDependency + 5420.IBPluginDependency + 5421.IBPluginDependency + 5427.IBAttributePlaceholdersKey + 5427.IBPluginDependency + 5450.IBPluginDependency + 56.IBPluginDependency + 5648.IBPluginDependency + 5649.IBPluginDependency + 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.IBPluginDependency + 5702.IBPluginDependency + 5713.IBPluginDependency + 575.IBPluginDependency + 576.IBPluginDependency + 578.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 + 5965.IBPluginDependency + 5966.IBPluginDependency + 607.IBPluginDependency + 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 + 6160.IBPluginDependency + 6161.IBAttributePlaceholdersKey + 6161.IBPluginDependency + 6162.IBPluginDependency + 6168.IBPluginDependency + 6169.IBPluginDependency + 6170.IBPluginDependency + 6171.IBPluginDependency + 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 + 6236.IBPluginDependency + 6238.IBPluginDependency + 627.IBPluginDependency + 627.IBWindowTemplateEditedContentRect + 627.NSWindowTemplate.visibleAtLaunch + 628.IBPluginDependency + 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.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 + 6618.IBAttributePlaceholdersKey + 6618.IBPluginDependency + 6619.IBPluginDependency + 6622.IBPluginDependency + 6623.IBAttributePlaceholdersKey + 6623.IBPluginDependency + 6624.IBPluginDependency + 6627.IBAttributePlaceholdersKey + 6627.IBPluginDependency + 6628.IBPluginDependency + 6630.IBAttributePlaceholdersKey + 6630.IBPluginDependency + 6631.IBPluginDependency + 6634.IBAttributePlaceholdersKey + 6634.IBPluginDependency + 6635.IBAttributePlaceholdersKey + 6635.IBPluginDependency + 6651.IBPluginDependency + 6652.IBPluginDependency + 6931.IBPluginDependency + 6998.IBPluginDependency + 6999.IBPluginDependency + 7002.IBPluginDependency + 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.IBPluginDependency + 7140.IBPluginDependency + 7141.IBPluginDependency + 7142.IBPluginDependency + 715.IBPluginDependency + 7168.IBPluginDependency + 7169.IBPluginDependency + 7171.IBPluginDependency + 7171.IBWindowTemplateEditedContentRect + 7171.NSWindowTemplate.visibleAtLaunch + 7172.IBPluginDependency + 7173.IBPluginDependency + 7173.IBWindowTemplateEditedContentRect + 7173.NSWindowTemplate.visibleAtLaunch + 7174.IBPluginDependency + 7175.IBPluginDependency + 7175.IBWindowTemplateEditedContentRect + 7175.NSWindowTemplate.visibleAtLaunch + 7176.IBPluginDependency + 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.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 + 7294.IBNumberFormatterBehaviorMetadataKey + 7294.IBNumberFormatterLocalizesFormatMetadataKey + 7294.IBPluginDependency + 7295.IBNumberFormatterBehaviorMetadataKey + 7295.IBNumberFormatterLocalizesFormatMetadataKey + 7295.IBPluginDependency + 7301.IBPluginDependency + 7302.IBPluginDependency + 7305.IBPluginDependency + 7308.IBPluginDependency + 7309.IBPluginDependency + 7312.IBPluginDependency + 7313.IBPluginDependency + 7316.IBPluginDependency + 7317.IBPluginDependency + 7320.IBPluginDependency + 7353.IBPluginDependency + 7354.IBPluginDependency + 7355.IBPluginDependency + 7358.IBPluginDependency + 7359.IBPluginDependency + 7392.IBPluginDependency + 7393.IBPluginDependency + 7395.IBPluginDependency + 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 + 7443.IBPluginDependency + 7445.IBPluginDependency + 7446.IBPluginDependency + 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.IBPluginDependency + 7610.IBAttributePlaceholdersKey + 7610.IBPluginDependency + 7612.IBPluginDependency + 7624.IBPluginDependency + 7625.IBPluginDependency + 7666.CustomClassName + 7666.IBPluginDependency + 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.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.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.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.IBPluginDependency + 7863.IBPluginDependency + 7864.IBPluginDependency + 7866.IBAttributePlaceholdersKey + 7866.IBPluginDependency + 7867.IBPluginDependency + 787.IBPluginDependency + 7871.IBAttributePlaceholdersKey + 7871.IBPluginDependency + 7872.IBPluginDependency + 7873.IBAttributePlaceholdersKey + 7873.IBPluginDependency + 7874.IBPluginDependency + 7875.IBPluginDependency + 7876.IBPluginDependency + 7877.IBPluginDependency + 7878.IBPluginDependency + 7879.IBPluginDependency + 788.IBPluginDependency + 7880.IBPluginDependency + 7881.IBPluginDependency + 7886.IBPluginDependency + 789.IBPluginDependency + 7899.IBPluginDependency + 79.IBPluginDependency + 794.IBPluginDependency + 794.IBWindowTemplateEditedContentRect + 794.NSWindowTemplate.visibleAtLaunch + 795.IBAttributePlaceholdersKey + 795.IBPluginDependency + 796.IBPluginDependency + 796.IBWindowTemplateEditedContentRect + 796.NSWindowTemplate.visibleAtLaunch + 797.IBPluginDependency + 7971.IBPluginDependency + 7972.IBPluginDependency + 7973.IBPluginDependency + 7974.IBPluginDependency + 7978.IBPluginDependency + 7987.IBPluginDependency + 7988.IBPluginDependency + 7989.IBPluginDependency + 7993.IBPluginDependency + 7994.IBPluginDependency + 7995.IBPluginDependency + 7996.IBPluginDependency + 7997.IBPluginDependency + 7998.IBPluginDependency + 80.IBPluginDependency + 8003.IBPluginDependency + 8009.IBPluginDependency + 8012.IBPluginDependency + 8013.IBPluginDependency + 8014.IBPluginDependency + 8015.IBPluginDependency + 8016.IBPluginDependency + 8021.IBPluginDependency + 8022.IBPluginDependency + 8023.IBPluginDependency + 8024.IBPluginDependency + 8025.IBPluginDependency + 8030.IBPluginDependency + 8031.IBPluginDependency + 8032.IBPluginDependency + 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.IBPluginDependency + 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 + 8189.IBPluginDependency + 8194.IBPluginDependency + 8195.IBPluginDependency + 823.IBPluginDependency + 824.IBPluginDependency + 8245.IBPluginDependency + 8246.IBPluginDependency + 8247.IBPluginDependency + 8248.IBPluginDependency + 8249.IBPluginDependency + 825.IBPluginDependency + 8251.IBPluginDependency + 8252.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 + 8264.IBPluginDependency + 8265.IBPluginDependency + 8266.IBPluginDependency + 8267.IBPluginDependency + 8268.IBPluginDependency + 8269.IBPluginDependency + 827.IBPluginDependency + 8270.IBPluginDependency + 8271.IBPluginDependency + 828.IBPluginDependency + 829.IBPluginDependency + 8295.IBPluginDependency + 83.IBPluginDependency + 830.IBPluginDependency + 831.IBPluginDependency + 832.IBPluginDependency + 833.IBPluginDependency + 834.IBPluginDependency + 835.IBPluginDependency + 836.IBPluginDependency + 843.IBPluginDependency + 844.IBPluginDependency + 845.IBPluginDependency + 846.IBPluginDependency + 850.IBPluginDependency + 855.IBPluginDependency + 861.IBPluginDependency + 861.IBWindowTemplateEditedContentRect + 861.NSWindowTemplate.visibleAtLaunch + 862.IBPluginDependency + 865.IBPluginDependency + 866.IBPluginDependency + 872.IBPluginDependency + 875.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 + 898.IBPluginDependency + 899.IBPluginDependency + 900.IBPluginDependency + 901.IBPluginDependency + 902.IBPluginDependency + 903.IBPluginDependency + 904.IBPluginDependency + 905.IBPluginDependency + 906.IBPluginDependency + 907.IBPluginDependency + 908.IBPluginDependency + 909.IBPluginDependency + 910.IBPluginDependency + 911.IBPluginDependency + 912.IBPluginDependency + 913.IBPluginDependency + 914.IBPluginDependency + 92.IBPluginDependency + 924.IBPluginDependency + 925.IBPluginDependency + 926.IBPluginDependency + 927.IBPluginDependency + 928.IBPluginDependency + 929.IBPluginDependency + 930.IBPluginDependency + 931.IBPluginDependency + 932.IBPluginDependency + 933.IBPluginDependency + 934.IBPluginDependency + 935.IBPluginDependency + 936.IBPluginDependency + 937.IBPluginDependency + 938.IBPluginDependency + 939.IBPluginDependency + 940.IBPluginDependency + 941.IBPluginDependency + 942.IBPluginDependency + 943.IBPluginDependency + 944.IBPluginDependency + 945.IBPluginDependency + 946.IBPluginDependency + 947.IBPluginDependency + 948.IBPluginDependency + 949.IBPluginDependency + 950.IBPluginDependency + 951.IBPluginDependency + 952.IBPluginDependency + 953.IBPluginDependency + 954.IBPluginDependency + 955.IBPluginDependency + 956.IBPluginDependency + 957.IBPluginDependency + 958.IBPluginDependency + 959.IBPluginDependency + 960.IBPluginDependency + 961.IBPluginDependency + 962.IBPluginDependency + 963.IBPluginDependency + 964.IBPluginDependency + 965.IBPluginDependency + 966.IBPluginDependency + 967.IBPluginDependency + 968.IBPluginDependency + 969.IBPluginDependency + 970.IBPluginDependency + 971.IBPluginDependency + 977.IBPluginDependency + 978.IBPluginDependency + 979.IBPluginDependency + 980.IBPluginDependency + 983.IBPluginDependency + 984.IBPluginDependency + 987.IBPluginDependency + 989.IBPluginDependency + 990.IBPluginDependency + 991.IBPluginDependency + 993.IBPluginDependency + 998.IBPluginDependency + 998.IBWindowTemplateEditedContentRect + 998.NSWindowTemplate.visibleAtLaunch + 999.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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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, 372}, {520, 450}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + 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 + + ToolTip + + ToolTip + + Sets the default size for new DS display views. + + + 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 rotation for new DS display views. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 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 + 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 + + ToolTip + + ToolTip + + Sets the default video filter for new DS display views, producing a variety of visual effects. The incurred CPU usage is dependent on which filter is 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1388, 659}, {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 + + 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 + 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 + 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 + {{343, 426}, {554, 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 + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + 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 + 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. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Pitch bends the sound depending on the emulation speed. Provides the smoothest sound, regardless of emulation speed. High latency. Low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sounds like "Dual SPU Synch/Asynch," but is a little smoother and has some added latency. Medium latency. Low CPU usage. Recommended setting. + + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{502, 517}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + Enable to use bilinear interpolation on the final video output by default. This creates a smoothed, but slightly blurry, image effect. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable to use bilinear interpolation on the final video output. This creates a smoothed, but slightly blurry, image effect. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1328, 256}, {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 + 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 + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1000, 254}, {301, 560}} + + 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 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 + + ToolTip + + ToolTip + + When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. + + + 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 + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + 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 + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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. Best performance option for single processor machines. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Renders 3D on two separate threads. 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. May improve 3D performance on multiprocessor machines, but significantly reduces performance on single processor machines. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. + + + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Pitch bends the sound depending on the emulation speed. Provides the smoothest sound, regardless of emulation speed. High latency. Low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sounds like "Dual SPU Synch/Asynch," but is a little smoother and has some added latency. Medium latency. Low CPU usage. Recommended setting. + + + 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 + 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{1332, 177}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + 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 + {{999, 689}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + 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 + + ToolTip + + ToolTip + + Immediately writes the value once to the target address. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1063, 215}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + 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 + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{548, 341}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 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 + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{975, 868}, {400, 100}} + + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + 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 + + 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 + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1237, 579}, {350, 263}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1202, 1031}, {350, 125}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{976, 297}, {620, 267}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1085, 723}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + {{1202, 877}, {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 + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1127, 996}, {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 + 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{853, 403}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{1120, 724}, {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 + 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 + {{342, 490}, {640, 355}} + com.apple.InterfaceBuilder.CocoaPlugin + {{342, 490}, {640, 355}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwwwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + Choose a directory where the R4 device stores its data. + + + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Resets the emulation. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1299, 599}, {194, 241}} + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1413, 517}, {204, 521}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1444, 249}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{668, 434}, {580, 588}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1117, 350}, {467, 128}} + + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 8301 + + + + 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 + inputManager + inputPrefsView + mLoadStateSlot + mSaveStateSlot + migrationDelegate + prefGeneralView + prefWindow + prefWindowController + romInfoPanelController + troubleshootingWindow + + + YES + NSObjectController + NSBox + NSBox + NSBox + NSBox + NSBox + NSObjectController + NSObjectController + NSWindow + NSObjectController + NSObjectController + InputManager + InputPrefsView + NSMenu + NSMenu + FileMigrationDelegate + NSView + NSWindow + NSObjectController + NSObjectController + NSWindow + + + + YES + + YES + aboutWindowController + boxARMBinaries + boxFileSystem + boxGeneralInfo + boxMisc + boxTitles + cdsCoreController + cdsSoundController + cheatListWindow + cheatWindowController + emuControlController + inputManager + inputPrefsView + mLoadStateSlot + mSaveStateSlot + migrationDelegate + prefGeneralView + prefWindow + prefWindowController + romInfoPanelController + troubleshootingWindow + + + YES + + aboutWindowController + NSObjectController + + + boxARMBinaries + NSBox + + + boxFileSystem + NSBox + + + boxGeneralInfo + NSBox + + + boxMisc + NSBox + + + boxTitles + NSBox + + + cdsCoreController + NSObjectController + + + cdsSoundController + NSObjectController + + + cheatListWindow + NSWindow + + + cheatWindowController + NSObjectController + + + emuControlController + NSObjectController + + + inputManager + InputManager + + + inputPrefsView + InputPrefsView + + + mLoadStateSlot + NSMenu + + + mSaveStateSlot + NSMenu + + + migrationDelegate + FileMigrationDelegate + + + prefGeneralView + NSView + + + prefWindow + NSWindow + + + prefWindowController + NSObjectController + + + romInfoPanelController + NSObjectController + + + 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 + + + + DisplayWindowController + NSWindowController + + YES + + YES + changeCoreSpeed: + changeDisplayGap: + changeDisplayMode: + changeDisplayOrder: + changeDisplayOrientation: + changeRotation: + changeRotationRelative: + changeScale: + changeVideoFilter: + changeVolume: + copy: + openRom: + reset: + saveScreenshotAs: + toggleBilinearFilteredOutput: + toggleExecutePause: + toggleFullScreenDisplay: + toggleKeepMinDisplaySizeAtNormal: + toggleStatusBar: + toggleVerticalSync: + 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: + changeVideoFilter: + changeVolume: + copy: + openRom: + reset: + saveScreenshotAs: + toggleBilinearFilteredOutput: + toggleExecutePause: + toggleFullScreenDisplay: + toggleKeepMinDisplaySizeAtNormal: + toggleStatusBar: + toggleVerticalSync: + writeDefaultsDisplayGap: + writeDefaultsDisplayRotation: + writeDefaultsDisplayVideoSettings: + writeDefaultsHUDSettings: + + + YES + + changeCoreSpeed: + id + + + changeDisplayGap: + id + + + changeDisplayMode: + id + + + changeDisplayOrder: + id + + + changeDisplayOrientation: + id + + + changeRotation: + id + + + changeRotationRelative: + id + + + changeScale: + id + + + changeVideoFilter: + id + + + changeVolume: + id + + + copy: + id + + + openRom: + id + + + reset: + id + + + saveScreenshotAs: + id + + + toggleBilinearFilteredOutput: + id + + + toggleExecutePause: + id + + + toggleFullScreenDisplay: + id + + + toggleKeepMinDisplaySizeAtNormal: + id + + + toggleStatusBar: + id + + + toggleVerticalSync: + id + + + writeDefaultsDisplayGap: + id + + + writeDefaultsDisplayRotation: + id + + + writeDefaultsDisplayVideoSettings: + id + + + writeDefaultsHUDSettings: + id + + + + + saveScreenshotPanelAccessoryView + NSView + + + saveScreenshotPanelAccessoryView + + saveScreenshotPanelAccessoryView + NSView + + + + IBProjectSource + userinterface/DisplayWindowController.h + + + + EmuControllerDelegate + NSObject + + YES + + YES + changeAudioEngine: + changeCoreEmuFlags: + changeCoreSpeed: + changeFirmwareSettings: + changeRomSaveType: + changeSpuAdvancedLogic: + changeSpuInterpolationMode: + changeSpuSyncMethod: + changeSpuSyncMode: + changeVolume: + chooseSlot1R4Directory: + closeRom: + closeSheet: + exportRomSave: + importRomSave: + loadEmuSaveStateSlot: + loadRecentRom: + newDisplayWindow: + openEmuSaveState: + openRom: + reset: + revealGameDataFolderInFinder: + revealRomInFinder: + revertEmuSaveState: + saveEmuSaveState: + saveEmuSaveStateAs: + saveEmuSaveStateSlot: + slot1Eject: + toggleAutoFrameSkip: + toggleCheats: + toggleExecutePause: + 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 + + + + YES + + YES + changeAudioEngine: + changeCoreEmuFlags: + changeCoreSpeed: + changeFirmwareSettings: + changeRomSaveType: + changeSpuAdvancedLogic: + changeSpuInterpolationMode: + changeSpuSyncMethod: + changeSpuSyncMode: + changeVolume: + chooseSlot1R4Directory: + closeRom: + closeSheet: + exportRomSave: + importRomSave: + loadEmuSaveStateSlot: + loadRecentRom: + newDisplayWindow: + openEmuSaveState: + openRom: + reset: + revealGameDataFolderInFinder: + revealRomInFinder: + revertEmuSaveState: + saveEmuSaveState: + saveEmuSaveStateAs: + saveEmuSaveStateSlot: + slot1Eject: + toggleAutoFrameSkip: + toggleCheats: + toggleExecutePause: + toggleGPUState: + toggleSpeedLimiter: + writeDefaults3DRenderingSettings: + writeDefaultsEmulationSettings: + writeDefaultsSlot1Settings: + writeDefaultsSoundSettings: + + + YES + + 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 + + + exportRomSave: + id + + + importRomSave: + id + + + loadEmuSaveStateSlot: + id + + + loadRecentRom: + id + + + newDisplayWindow: + id + + + openEmuSaveState: + id + + + openRom: + id + + + reset: + id + + + revealGameDataFolderInFinder: + id + + + revealRomInFinder: + id + + + revertEmuSaveState: + id + + + saveEmuSaveState: + id + + + saveEmuSaveStateAs: + id + + + saveEmuSaveStateSlot: + id + + + slot1Eject: + id + + + toggleAutoFrameSkip: + id + + + toggleCheats: + id + + + toggleExecutePause: + id + + + toggleGPUState: + id + + + toggleSpeedLimiter: + id + + + writeDefaults3DRenderingSettings: + id + + + writeDefaultsEmulationSettings: + id + + + writeDefaultsSlot1Settings: + id + + + writeDefaultsSoundSettings: + id + + + + + YES + + YES + cdsCoreController + cdsSoundController + cheatDatabaseController + cheatListController + cheatWindowController + cheatWindowDelegate + exportRomSavePanelAccessoryView + firmwarePanelController + inputManager + romInfoPanelController + saveFileMigrationSheet + saveStatePrecloseSheet + slot1ManagerWindow + + + YES + NSObjectController + NSObjectController + NSArrayController + NSArrayController + NSObjectController + CheatWindowDelegate + NSView + NSObjectController + InputManager + NSObjectController + NSWindow + NSWindow + NSWindow + + + + YES + + YES + cdsCoreController + cdsSoundController + cheatDatabaseController + cheatListController + cheatWindowController + cheatWindowDelegate + exportRomSavePanelAccessoryView + firmwarePanelController + inputManager + romInfoPanelController + saveFileMigrationSheet + saveStatePrecloseSheet + slot1ManagerWindow + + + YES + + cdsCoreController + NSObjectController + + + cdsSoundController + NSObjectController + + + cheatDatabaseController + NSArrayController + + + cheatListController + NSArrayController + + + cheatWindowController + NSObjectController + + + cheatWindowDelegate + CheatWindowDelegate + + + exportRomSavePanelAccessoryView + NSView + + + firmwarePanelController + NSObjectController + + + inputManager + InputManager + + + romInfoPanelController + NSObjectController + + + saveFileMigrationSheet + NSWindow + + + saveStatePrecloseSheet + NSWindow + + + slot1ManagerWindow + NSWindow + + + + + 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 + inputSettingsSaveStateSlot + inputSettingsSetSpeedLimit + inputSettingsTouch + prefWindow + + + YES + InputManager + NSOutlineView + InputProfileController + NSPopUpButton + NSButton + NSButton + NSWindow + NSWindow + NSObjectController + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + + + + YES + + YES + inputManager + inputPrefOutlineView + inputProfileController + inputProfileMenu + inputProfileNextButton + inputProfilePreviousButton + inputProfileRenameSheet + inputProfileSheet + inputSettingsController + inputSettingsGPUState + inputSettingsLoadStateSlot + inputSettingsMicrophone + 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 + + + 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 + chooseARM7BiosImage: + chooseARM9BiosImage: + chooseAdvansceneDatabase: + chooseCheatDatabase: + chooseFirmwareImage: + chooseRomForAutoload: + closeFirmwareConfigSheet: + configureInternalFirmware: + selectAutoloadRomOption: + selectDisplayMode: + selectDisplayRotation: + selectDisplaySize: + selectSPUSyncMethod: + selectSPUSyncMode: + selectVideoFilterType: + setUseBilinear: + showDisplayView: + showEmulationView: + showGeneralView: + showInputView: + showSoundView: + updateVolumeIcon: + + + YES + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + YES + + YES + chooseARM7BiosImage: + chooseARM9BiosImage: + chooseAdvansceneDatabase: + chooseCheatDatabase: + chooseFirmwareImage: + chooseRomForAutoload: + closeFirmwareConfigSheet: + configureInternalFirmware: + selectAutoloadRomOption: + selectDisplayMode: + selectDisplayRotation: + selectDisplaySize: + selectSPUSyncMethod: + selectSPUSyncMode: + selectVideoFilterType: + setUseBilinear: + showDisplayView: + showEmulationView: + showGeneralView: + showInputView: + showSoundView: + updateVolumeIcon: + + + YES + + chooseARM7BiosImage: + id + + + chooseARM9BiosImage: + id + + + chooseAdvansceneDatabase: + id + + + chooseCheatDatabase: + id + + + chooseFirmwareImage: + id + + + chooseRomForAutoload: + id + + + closeFirmwareConfigSheet: + id + + + configureInternalFirmware: + id + + + selectAutoloadRomOption: + id + + + selectDisplayMode: + id + + + selectDisplayRotation: + id + + + selectDisplaySize: + id + + + selectSPUSyncMethod: + id + + + selectSPUSyncMode: + id + + + selectVideoFilterType: + id + + + setUseBilinear: + id + + + showDisplayView: + id + + + showEmulationView: + id + + + showGeneralView: + id + + + showInputView: + id + + + showSoundView: + id + + + updateVolumeIcon: + id + + + + + YES + + YES + cdsCoreController + cheatDatabaseController + cheatWindowController + displayRotationField + displayRotationMenu + displayRotationMenuCustomItem + emuController + firmwareConfigSheet + prefWindowController + previewImageView + spuSyncMethodMenu + viewDisplay + viewEmulation + viewGeneral + viewInput + viewSound + window + + + YES + NSObjectController + NSArrayController + NSObjectController + NSTextField + NSPopUpButton + NSMenuItem + NSObjectController + NSWindow + NSObjectController + NSImageView + NSPopUpButton + NSView + NSView + NSView + InputPrefsView + NSView + NSWindow + + + + YES + + YES + cdsCoreController + cheatDatabaseController + cheatWindowController + displayRotationField + displayRotationMenu + displayRotationMenuCustomItem + emuController + firmwareConfigSheet + prefWindowController + previewImageView + spuSyncMethodMenu + 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 + + + previewImageView + NSImageView + + + spuSyncMethodMenu + NSPopUpButton + + + viewDisplay + NSView + + + viewEmulation + NSView + + + viewGeneral + NSView + + + viewInput + InputPrefsView + + + viewSound + NSView + + + window + NSWindow + + + + + IBProjectSource + userinterface/preferencesWindowDelegate.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 + romInfoController + troubleshootingWindowController + viewBugReport + viewFinishedForm + viewSupportRequest + window + + + YES + NSObjectController + NSObjectController + NSView + NSView + NSView + NSWindow + + + + YES + + YES + romInfoController + troubleshootingWindowController + viewBugReport + viewFinishedForm + viewSupportRequest + window + + + YES + + 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_Input_420x420 + Icon_ShowHUD_420x420 + Icon_Speaker_420x420 + Icon_VolumeFull_16x16 + 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} + {20, 20} + {15, 15} + {8, 8} + {128, 128} + {11, 11} + {10, 3} + {32, 32} + {16, 15} + {8, 8} + {15, 15} + + + diff --git a/desmume/src/utils/advanscene.cpp b/desmume/src/utils/advanscene.cpp index fa23c67b4..dba880673 100644 --- a/desmume/src/utils/advanscene.cpp +++ b/desmume/src/utils/advanscene.cpp @@ -19,7 +19,7 @@ #include #define TIXML_USE_STL -#include "utils/tinyxml/tinyxml.h" +#include "tinyxml/tinyxml.h" #include "advanscene.h" #include "mc.h"