移除NESDeltaCore
This commit is contained in:
parent
d34b53aee3
commit
bc6fe13e00
@ -1,7 +1,7 @@
|
||||
// REVISION TRACKING
|
||||
// This file is auto-generated.
|
||||
// Do not commit this file to the code repository!
|
||||
#define SCR_REV_STR "ba258bdfca0ef38ee9043bd36fea051df3f5d899"
|
||||
#define SCM_DESC_STR "ba258bd"
|
||||
#define SCR_REV_STR "d34b53aee3320f5af74576cb98b707c88f875cc5"
|
||||
#define SCM_DESC_STR "d34b53a"
|
||||
#define SCM_BRANCH_STR "main"
|
||||
#define SCM_IS_MASTER 0
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
#define PLUGIN_REVISION "ba258bd"
|
||||
#define PLUGIN_REVISION_W L"ba258bd"
|
||||
#define PLUGIN_REVISION "d34b53a"
|
||||
#define PLUGIN_REVISION_W L"d34b53a"
|
||||
|
||||
@ -1424,7 +1424,6 @@
|
||||
"${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/Harmony2ToHarmony3.xcmappingmodel",
|
||||
"${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/HarmonyToHarmony2.xcmappingmodel",
|
||||
"${PODS_CONFIGURATION_BUILD_DIR}/N64DeltaCore/Mupen64Plus.bundle",
|
||||
"${PODS_CONFIGURATION_BUILD_DIR}/NESDeltaCore/NESDeltaCore.bundle",
|
||||
"${PODS_ROOT}/../External/Roxas/Roxas/RSTCollectionViewCell.xib",
|
||||
"${PODS_ROOT}/../External/Roxas/Roxas/RSTPlaceholderView.xib",
|
||||
"${PODS_CONFIGURATION_BUILD_DIR}/SNESDeltaCore/SNESDeltaCore.bundle",
|
||||
@ -1440,7 +1439,6 @@
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Harmony2ToHarmony3.cdm",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/HarmonyToHarmony2.cdm",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Mupen64Plus.bundle",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/NESDeltaCore.bundle",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTCollectionViewCell.nib",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTPlaceholderView.nib",
|
||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SNESDeltaCore.bundle",
|
||||
|
||||
3
Delta.xcworkspace/contents.xcworkspacedata
generated
3
Delta.xcworkspace/contents.xcworkspacedata
generated
@ -7,9 +7,6 @@
|
||||
<FileRef
|
||||
location = "group:Cores/DeltaCore/DeltaCore.xcodeproj">
|
||||
</FileRef>
|
||||
<FileRef
|
||||
location = "group:Cores/NESDeltaCore/NESDeltaCore.xcodeproj">
|
||||
</FileRef>
|
||||
<FileRef
|
||||
location = "group:Cores/SNESDeltaCore/SNESDeltaCore.xcodeproj">
|
||||
</FileRef>
|
||||
|
||||
Binary file not shown.
@ -9,7 +9,7 @@
|
||||
import Foundation
|
||||
|
||||
import DeltaCore
|
||||
import NESDeltaCore
|
||||
//import NESDeltaCore
|
||||
|
||||
@objc
|
||||
enum CheatDevice: Int16
|
||||
@ -65,8 +65,8 @@ extension CheatDevice
|
||||
case .famicomGameGenie, .snesGameGenie, .gbGameGenie, .gameGearGameGenie, .masterSystemGameGenie:
|
||||
return .gameGenie
|
||||
|
||||
case .nesGameGenie:
|
||||
return CheatType(rawValue: DeltaCore.CheatType.gameGenie8.rawValue)
|
||||
// case .nesGameGenie:
|
||||
// return CheatType(rawValue: DeltaCore.CheatType.gameGenie8.rawValue)
|
||||
|
||||
case .gbaCodeBreaker, .dsCodeBreaker:
|
||||
return .codeBreaker
|
||||
@ -76,14 +76,16 @@ extension CheatDevice
|
||||
|
||||
case .nesRaw, .nesRawCompare:
|
||||
return nil
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
var gameType: GameType? {
|
||||
switch self
|
||||
{
|
||||
case .famicomGameGenie, .famicomRaw, .famicomRawCompare: return .nes
|
||||
case .nesGameGenie, .nesRaw, .nesRawCompare: return .nes
|
||||
// case .famicomGameGenie, .famicomRaw, .famicomRawCompare: return .gba
|
||||
// case .nesGameGenie, .nesRaw, .nesRawCompare: return .gba
|
||||
case .snesActionReplay, .snesGameGenie: return .snes
|
||||
case .n64GameShark: return .n64
|
||||
case .gbGameGenie, .gbcGameShark: return .gbc
|
||||
@ -95,6 +97,7 @@ extension CheatDevice
|
||||
// Not yet supported
|
||||
case .gameGearActionReplay, .gameGearGameGenie: return nil
|
||||
case .masterSystemActionReplay, .masterSystemGameGenie: return nil
|
||||
default: return nil
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -28,8 +28,8 @@ struct AirPlaySkinsOptions
|
||||
@Option(name: "Manage Skins", detailView: { _ in SkinManager() })
|
||||
private var skinManager: String = "" // Hack until I figure out how to support Void properties...
|
||||
|
||||
@Option(name: LocalizedStringKey(System.nes.localizedName), description: "The controller skin used when AirPlaying NES games.", detailView: { SkinPicker(gameType: .nes, controllerSkinID: $0) })
|
||||
var nes: String?
|
||||
// @Option(name: LocalizedStringKey(System.nes.localizedName), description: "The controller skin used when AirPlaying NES games.", detailView: { SkinPicker(gameType: .nes, controllerSkinID: $0) })
|
||||
// var nes: String?
|
||||
|
||||
@Option(name: LocalizedStringKey(System.snes.localizedName), description: "The controller skin used when AirPlaying SNES games.", detailView: { SkinPicker(gameType: .snes, controllerSkinID: $0) })
|
||||
var snes: String?
|
||||
@ -53,13 +53,15 @@ struct AirPlaySkinsOptions
|
||||
guard let system = System(gameType: gameType) else { return nil }
|
||||
switch system
|
||||
{
|
||||
case .nes: return self.nes
|
||||
// case .nes: return self.nes
|
||||
case .snes: return self.snes
|
||||
case .genesis: return self.genesis
|
||||
case .n64: return self.n64
|
||||
case .gbc: return self.gbc
|
||||
case .gba: return self.gba
|
||||
case .ds: return self.ds
|
||||
default:
|
||||
return self.gba
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
import DeltaCore
|
||||
|
||||
import NESDeltaCore
|
||||
//import NESDeltaCore
|
||||
import SNESDeltaCore
|
||||
import GBCDeltaCore
|
||||
import GBADeltaCore
|
||||
@ -68,7 +68,7 @@ extension DeltaCoreProtocol
|
||||
private var maximumFastForwardSpeed: Double {
|
||||
switch self
|
||||
{
|
||||
case NES.core, SNES.core, GBC.core: return 4
|
||||
// case NES.core, SNES.core, GBC.core: return 4
|
||||
case GBA.core: return 3
|
||||
case N64.core where UIDevice.current.hasA11ProcessorOrBetter: return 3
|
||||
case N64.core where UIDevice.current.hasA9ProcessorOrBetter: return 1.5
|
||||
|
||||
@ -11,7 +11,7 @@ import DeltaCore
|
||||
import SNESDeltaCore
|
||||
import GBADeltaCore
|
||||
import GBCDeltaCore
|
||||
import NESDeltaCore
|
||||
//import NESDeltaCore
|
||||
import N64DeltaCore
|
||||
//import MelonDSDeltaCore
|
||||
import Systems
|
||||
@ -35,7 +35,7 @@ enum System: CaseIterable
|
||||
}
|
||||
|
||||
static var allCores: [DeltaCoreProtocol] {
|
||||
return [NES.core, SNES.core, N64.core, GBC.core, GBA.core, DS.core, GPGX.core]
|
||||
return [ SNES.core, N64.core, GBC.core, GBA.core, DS.core, GPGX.core]
|
||||
}
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ extension System
|
||||
var deltaCore: DeltaCoreProtocol {
|
||||
switch self
|
||||
{
|
||||
case .nes: return NES.core
|
||||
case .nes: return GBA.core
|
||||
case .snes: return SNES.core
|
||||
case .n64: return N64.core
|
||||
case .gbc: return GBC.core
|
||||
@ -99,7 +99,7 @@ extension System
|
||||
var gameType: DeltaCore.GameType {
|
||||
switch self
|
||||
{
|
||||
case .nes: return .nes
|
||||
case .nes: return .gba
|
||||
case .snes: return .snes
|
||||
case .n64: return .n64
|
||||
case .gbc: return .gbc
|
||||
@ -113,7 +113,7 @@ extension System
|
||||
{
|
||||
switch gameType
|
||||
{
|
||||
case GameType.nes: self = .nes
|
||||
// case GameType.nes: self = .nes
|
||||
case GameType.snes: self = .snes
|
||||
case GameType.n64: self = .n64
|
||||
case GameType.gbc: self = .gbc
|
||||
@ -131,7 +131,7 @@ extension DeltaCore.GameType
|
||||
{
|
||||
switch fileExtension.lowercased()
|
||||
{
|
||||
case "nes": self = .nes
|
||||
// case "nes": self = .nes
|
||||
case "smc", "sfc", "fig": self = .snes
|
||||
case "n64", "z64": self = .n64
|
||||
case "gbc", "gb": self = .gbc
|
||||
|
||||
2
Podfile
2
Podfile
@ -10,7 +10,7 @@ target 'Delta' do
|
||||
pod 'SMCalloutView', '~> 2.1.0'
|
||||
|
||||
pod 'DeltaCore', :path => 'Cores/DeltaCore'
|
||||
pod 'NESDeltaCore', :path => 'Cores/NESDeltaCore'
|
||||
# pod 'NESDeltaCore', :path => 'Cores/NESDeltaCore'
|
||||
pod 'SNESDeltaCore', :path => 'Cores/SNESDeltaCore'
|
||||
pod 'N64DeltaCore', :path => 'Cores/N64DeltaCore'
|
||||
pod 'GBCDeltaCore', :path => 'Cores/GBCDeltaCore'
|
||||
|
||||
@ -50,8 +50,6 @@ PODS:
|
||||
- DeltaCore
|
||||
- N64DeltaCore/Video (0.1):
|
||||
- DeltaCore
|
||||
- NESDeltaCore (0.1):
|
||||
- DeltaCore
|
||||
- Roxas (0.1)
|
||||
- SDWebImage (3.8.3):
|
||||
- SDWebImage/Core (= 3.8.3)
|
||||
@ -73,7 +71,6 @@ DEPENDENCIES:
|
||||
- GBCDeltaCore (from `Cores/GBCDeltaCore`)
|
||||
- Harmony (from `External/Harmony`)
|
||||
- N64DeltaCore (from `Cores/N64DeltaCore`)
|
||||
- NESDeltaCore (from `Cores/NESDeltaCore`)
|
||||
- Roxas (from `External/Roxas`)
|
||||
- SDWebImage (~> 3.8)
|
||||
- SMCalloutView (~> 2.1.0)
|
||||
@ -107,8 +104,6 @@ EXTERNAL SOURCES:
|
||||
:path: External/Harmony
|
||||
N64DeltaCore:
|
||||
:path: Cores/N64DeltaCore
|
||||
NESDeltaCore:
|
||||
:path: Cores/NESDeltaCore
|
||||
Roxas:
|
||||
:path: External/Roxas
|
||||
SNESDeltaCore:
|
||||
@ -127,7 +122,6 @@ SPEC CHECKSUMS:
|
||||
GTMSessionFetcher: 5595ec75acf5be50814f81e9189490412bad82ba
|
||||
Harmony: 5fdc51d0a4f2ce7dcd4439becbbdda1fac4c9e3f
|
||||
N64DeltaCore: 4eeb468746722952bcd5467ecb9ebe7df070f53a
|
||||
NESDeltaCore: ffae3bba878fc505bac0914150a695ede7bc9550
|
||||
Roxas: 1990039f843f5dc284918dc82375feb80020ef62
|
||||
SDWebImage: a72e880a8fe0f7fc31efe15aaed443c074d2a80c
|
||||
SMCalloutView: 5c0ee363dc8e7204b2fda17dfad38c93e9e23481
|
||||
@ -136,6 +130,6 @@ SPEC CHECKSUMS:
|
||||
SwiftyDropbox: 378b4425a2e8d0cb24c7b0f2e3af72bfbaaf1e73
|
||||
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197
|
||||
|
||||
PODFILE CHECKSUM: 759348f5414630836525cd10fd3f8d2910d04e78
|
||||
PODFILE CHECKSUM: c5bbd2d1c2e99046d5ceb5fbf68e825f272d4ac5
|
||||
|
||||
COCOAPODS: 1.15.2
|
||||
|
||||
@ -1 +0,0 @@
|
||||
../../../../../Cores/NESDeltaCore/NESDeltaCore/NESDeltaCore.h
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstApu.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstAssert.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstBarcodeReader.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstBase.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridge.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeInes.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeRomset.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeUnif.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCheats.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstChecksum.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstChips.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCore.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCpu.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCrc32.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstDipSwitches.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFds.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFile.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFpuPrecision.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstHook.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstImage.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstImageDatabase.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoAccessor.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoLine.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoMap.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoPort.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstLog.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstMachine.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstMemory.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstNsf.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcher.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcherIps.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcherUps.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPins.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPpu.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstProperties.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstRam.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSha1.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundPcm.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundPlayer.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundRenderer.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstState.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstStream.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTimer.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTracker.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTrackerMovie.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTrackerRewinder.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVector.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilter2xSaI.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterHqX.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterNone.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterNtsc.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterScaleX.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterxBR.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoRenderer.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoScreen.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstXml.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstZlib.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApi.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiBarcodeReader.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiCartridge.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiCheats.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiConfig.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiDipSwitches.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiEmulator.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiFds.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiInput.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiMachine.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiMovie.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiNsf.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiRewinder.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiSound.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiTapeRecorder.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiUser.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiVideo.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoard.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAcclaim.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAcclaimMcAcc.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAe.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAgci.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAve.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAveD1012.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAveNina.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAxRom.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandai.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandai24c0x.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiAerobicsStudio.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiDatach.hpp
|
||||
@ -1 +0,0 @@
|
||||
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiKaraokeStudio.hpp
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user