Merge branch 'master' into wii-network

Conflicts:
	Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp
	Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_FileIO.cpp
	Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp
	Source/VSProps/Dolphin.Win32.props
	Source/VSProps/Dolphin.x64.props
This commit is contained in:
Pierre Bourdon 2012-05-16 09:27:37 +02:00
commit fdff4cb1ff
2925 changed files with 69775 additions and 594118 deletions

4
.gitignore vendored
View File

@ -27,9 +27,7 @@ obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
Binary/Win32
Binary/x64
Binary/Darwin*
Binary
Source/Core/Common/Src/scmrev.h
*.opensdf
*.sdf

View File

@ -2,6 +2,17 @@
# General setup
#
cmake_minimum_required(VERSION 2.6)
# Update compiler before calling project()
if (APPLE)
# Use clang compiler
set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang")
set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++")
if (NOT EXISTS "${CMAKE_CXX_COMPILER}")
set(CMAKE_C_COMPILER "clang")
set(CMAKE_CXX_COMPILER "clang++")
endif()
endif()
project(dolphin-emu)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/CMakeTests)
set(DOLPHIN_IS_STABLE FALSE)
@ -114,7 +125,7 @@ if(UNIX AND NOT APPLE)
endif(VISIBILITY_HIDDEN)
endif()
if (APPLE)
if(APPLE)
# Ignore MacPorts and Fink and any other locally installed packages that
# might prevent building a distributable binary.
set(CMAKE_SYSTEM_PREFIX_PATH /usr)
@ -135,8 +146,17 @@ if (APPLE)
# features can be used, not the minimum required version to run.
set(OSX_MIN_VERSION "10.5.4")
set(TARGET_FLAGS "${TARGET_FLAGS} -mmacosx-version-min=${OSX_MIN_VERSION}")
set(TARGET_FLAGS "${TARGET_FLAGS} -isysroot /Developer/SDKs/MacOSX10.6.sdk")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-syslibroot,/Developer/SDKs/MacOSX10.6.sdk")
set(SYSROOT_LEGACY_PATH "/Developer/SDKs/MacOSX10.6.sdk")
set(SYSROOT_PATH "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk")
if(EXISTS "${SYSROOT_PATH}/")
set(TARGET_SYSROOT ${SYSROOT_PATH})
elseif(EXISTS "${SYSROOT_LEGACY_PATH}/")
set(TARGET_SYSROOT ${SYSROOT_LEGACY_PATH})
endif()
if(${TARGET_SYSROOT})
set(TARGET_FLAGS "${TARGET_FLAGS} -isysroot ${TARGET_SYSROOT}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-syslibroot,${TARGET_SYSROOT}")
endif()
# Do not warn about frameworks that are not available on all architectures.
# This avoids a warning when linking with QuickTime.
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_arch_warnings")
@ -459,10 +479,8 @@ endif()
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
if(NOT DISABLE_WX)
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
include(FindwxWidgets OPTIONAL)
FIND_PACKAGE(wxWidgets COMPONENTS core aui adv)
endif()
if(wxWidgets_FOUND)
EXECUTE_PROCESS(
@ -473,15 +491,17 @@ if(NOT DISABLE_WX)
ERROR_QUIET
)
message("Found wxWidgets version ${wxWidgets_VERSION}")
if(${wxWidgets_VERSION} VERSION_LESS "2.8.9")
message("At least 2.8.9 is required; ignoring found version")
if(UNIX AND NOT APPLE)
set(wxMIN_VERSION "2.9.3")
else()
set(wxMIN_VERSION "2.9.4")
endif()
if(${wxWidgets_VERSION} VERSION_LESS ${wxMIN_VERSION})
message("At least ${wxMIN_VERSION} is required; ignoring found version")
unset(wxWidgets_FOUND)
endif()
endif(wxWidgets_FOUND)
if(wxWidgets_FOUND)
include(${wxWidgets_USE_FILE})
if(UNIX AND NOT APPLE)
# There is a bug in the FindGTK module in cmake version 2.8.2 that
# does not find gdk-pixbuf-2.0. On the other hand some 2.8.3
@ -503,23 +523,34 @@ if(NOT DISABLE_WX)
endif()
endif()
if(wxWidgets_FOUND)
include(${wxWidgets_USE_FILE})
message("wxWidgets found, enabling GUI build")
else(wxWidgets_FOUND)
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
message(FATAL_ERROR "wxWidgets not found. It is required to build the GUI")
endif()
message("Using static wxWidgets from Externals")
# These definitions and includes are used when building dolphin against wx,
# not when building wx itself (see wxw3 CMakeLists.txt for that)
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
add_definitions(-D__WXOSX_COCOA__)
include_directories(Externals/wxWidgets3)
include_directories(Externals/wxWidgets3/include)
add_subdirectory(Externals/wxWidgets3)
set(wxWidgets_LIBRARIES "wx")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
add_definitions(-D__WXGTK__)
# Check for required libs
check_lib(GTHREAD2 gthread-2.0 glib/gthread.h REQUIRED)
check_lib(PANGOCAIRO pangocairo pango/pangocairo.h REQUIRED)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
add_definitions(-D__WXMSW__)
else()
include_directories(Externals/wxWidgets/include)
add_subdirectory(Externals/wxWidgets)
message(FATAL_ERROR "wxWidgets in Externals is not compatible with your platform")
endif()
include_directories(
Externals/wxWidgets3
Externals/wxWidgets3/include)
add_subdirectory(Externals/wxWidgets3)
set(wxWidgets_FOUND TRUE)
set(wxWidgets_LIBRARIES "wx")
endif(wxWidgets_FOUND)
add_definitions(-DHAVE_WX=1)
endif(NOT DISABLE_WX)
@ -554,7 +585,7 @@ option(UNITTESTS "Build unitests" OFF)
########################################
# Start compiling our code
#
add_definitions(-std=c++0x)
add_definitions(-std=gnu++0x)
add_subdirectory(Source)

View File

@ -14,5 +14,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,5 +14,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -153,7 +153,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
EFBCopyEnable = True

View File

@ -151,7 +151,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
EFBCopyEnable = True

View File

@ -15,6 +15,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,7 +15,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
DlistCachingEnable = False

View File

@ -15,7 +15,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
DlistCachingEnable = False

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -18,7 +18,6 @@ MMU = 1
VBeam = 1
BlockMerging = 1
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
[Video_Hacks]
DlistCachingEnable = False

View File

@ -18,7 +18,6 @@ MMU = 1
VBeam = 1
BlockMerging = 1
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
[Video_Hacks]
DlistCachingEnable = False

View File

@ -18,7 +18,6 @@ MMU = 1
VBeam = 1
BlockMerging = 1
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
[Video_Hacks]
DlistCachingEnable = False

View File

@ -15,6 +15,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,11 +1,16 @@
# G4FD69 - FIFA 07
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,12 +1,16 @@
# G4FE69 - FIFA 07
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationStateId = 4
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,11 +1,16 @@
# G4FF69 - FIFA 07
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,11 +1,16 @@
# G4FE69 - FIFA 07
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -15,6 +15,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,6 +14,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -105,5 +105,4 @@ $Have Power Bracelet
ProjectionHack = 0
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,4 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,6 +14,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
EFBScale = 2

View File

@ -14,6 +14,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
EFBScale = 2

View File

@ -14,6 +14,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 0
EFBScale = 2

View File

@ -317,7 +317,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Core]
FastDiscSpeed = 1

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Core]
FastDiscSpeed = 1

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Core]
FastDiscSpeed = 1

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Core]
FastDiscSpeed = 1

View File

@ -2,7 +2,7 @@
[Core] Values set here will override the main dolphin settings.
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 5
EmulationIssues = Slowdowns ingame if Accurate texture cache is disabled.
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[Video]
ProjectionHack = 0
@ -65,6 +65,4 @@ $C-Stick Sends All Car Back To Start
[Video_Settings]
UseXFB = True
UseRealXFB = False
SafeTextureCache = True
SafeTextureCacheColorSamples = 128
[Gecko]

View File

@ -2,7 +2,7 @@
[Core] Values set here will override the main dolphin settings.
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 5
EmulationIssues = Slowdowns ingame if Accurate texture cache is disabled.
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[Video]
ProjectionHack = 0
@ -15,6 +15,4 @@ PH_ZFar =
[Video_Settings]
UseXFB = True
UseRealXFB = False
SafeTextureCache = True
SafeTextureCacheColorSamples = 128
[Gecko]

View File

@ -10,6 +10,5 @@ EmulationIssues =
ProjectionHack = 0
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,6 +15,5 @@ PH_ZFar =
[Gecko]
[Video_Settings]
EFBScale = 1
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -15,5 +15,4 @@ PH_ZFar =
[Gecko]
[Video_Settings]
EFBScale = 1
SafeTextureCache = True
SafeTextureCacheColorSamples = 0

View File

@ -7,5 +7,4 @@ EmulationIssues = Need ZTP BLoom Hack and Safe Texture Cache
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -299,7 +299,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Enhancements]
[Video_Hacks]

View File

@ -16,7 +16,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
EFBEmulateFormatChanges = True

View File

@ -1,17 +1,19 @@
# GCZE69 - CATWOMAN
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs MMU and is slow (r6898)
EmulationIssues =
EmulationStateId = 4
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Enhancements]

View File

@ -1,15 +1,19 @@
# GCZP69 - CATWOMAN
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs MMU and is slow (r6898)
EmulationIssues =
EmulationStateId = 4
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Enhancements]

View File

@ -16,5 +16,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,9 +1,9 @@
# GDGE7H - Dragon's Lair 3D
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs MMU (very slow due to that).
EmulationStateId = 4
EmulationIssues = Needs Real Xfb for videos to show up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -1,9 +1,9 @@
# GDGP78 - Dragon's Lair 3D
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs MMU (very slow due to that).
EmulationStateId = 4
EmulationIssues = Needs Real Xfb for videos to show up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -14,5 +14,4 @@ PH_ZNear =
PH_ZFar = 1.99998
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,5 +14,4 @@ PH_ZNear =
PH_ZFar = 1.99998
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,5 +14,4 @@ PH_ZNear = 5
PH_ZFar = 0.15
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,5 +14,4 @@ PH_ZNear = 5
PH_ZFar = 0.15
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -14,3 +14,5 @@ PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCacheColorSamples = 512

View File

@ -14,3 +14,5 @@ PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCacheColorSamples = 512

View File

@ -14,3 +14,5 @@ PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCacheColorSamples = 512

View File

@ -14,3 +14,5 @@ PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCacheColorSamples = 512

View File

@ -8,7 +8,6 @@ EmulationIssues = GFX glitches
[Video_Settings]
UseXFB = True
UseRealXFB = False
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
EFBScale = 0
[Video]

View File

@ -8,7 +8,6 @@ EmulationIssues = GFX glitches
[Video_Settings]
UseXFB = True
UseRealXFB = False
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
EFBScale = 0
[Video]

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Enhancements]
[Video_Hacks]

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Enhancements]
[Video_Hacks]

View File

@ -1,13 +1,16 @@
# GF5E69 - FIFA Soccer 2005
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationStateId = 3
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
EmulationStateId = 4
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,12 +1,16 @@
# GF6E69 - FIFA 06
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationStateId = 4
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,11 +1,16 @@
# GF6F69 - FIFA 06
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -78,7 +78,6 @@ PH_ZFar =
[Gecko]
[Video_Settings]
EFBScale = 1
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
EFBToTextureEnable = False

View File

@ -75,7 +75,6 @@ PH_ZFar =
[Gecko]
[Video_Settings]
EFBScale = 1
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
EFBToTextureEnable = False

View File

@ -1,9 +1,9 @@
# GFAD69 - FIFA 2003
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -1,9 +1,9 @@
# GFAE69 - FIFA 2003
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -1,9 +1,9 @@
# GFAP69 - FIFA 2003
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -1,9 +1,9 @@
# GFAS69 - FIFA 2003
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -1,10 +1,9 @@
# GFYE69 - FIFA Street 2
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
$Master Code
@ -35,8 +34,11 @@ $Away Team Low Trick Points
044349E8 00000000
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,15 +1,13 @@
# GFYP69 - FIFA Street 2
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
EmulationStateId = 4
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -2,7 +2,7 @@
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs Jitil to run. LLE audio fixes sound issues.
EmulationIssues = LLE audio fixes sound issues.
EmulationStateId = 4
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.

View File

@ -16,6 +16,5 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -11,5 +11,4 @@ EmulationIssues =
[Video]
ProjectionHack = 0
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -117,5 +117,4 @@ $0 Rations Used
[Video]
ProjectionHack = 0
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,7 +1,6 @@
# GGYE41 - GR2GC
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
@ -18,6 +17,4 @@ PH_ZFar =
[Video_Settings]
UseXFB = True
UseRealXFB = True
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,7 +1,6 @@
# GGYP41 - GR2GC
[Core] Values set here will override the main dolphin settings.
TLBHack = 1
MMU = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
@ -18,6 +17,4 @@ PH_ZFar =
[Video_Settings]
UseXFB = True
UseRealXFB = True
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,6 +1,6 @@
# GH7E5D - Happy Feet
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues =
EmulationStateId = 4
@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,6 +1,6 @@
# GHCE4Q - Chicken Little
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues =
@ -8,5 +8,9 @@ EmulationIssues =
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,6 +1,6 @@
# GHCF4Q - Chicken Little
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues =
@ -8,4 +8,9 @@ EmulationIssues =
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -1,9 +1,15 @@
# GIKE70 - IKARUGA
[EmuState]
EmulationStateId = 5
EmulationIssues =
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[OnFrame]
[ActionReplay]
[Gecko]
[Video_Settings]
SafeTextureCache = True

View File

@ -6,4 +6,3 @@ EmulationStateId = 5
[ActionReplay]
[Gecko]
[Video_Settings]
SafeTextureCache = True

View File

@ -1,6 +1,5 @@
# GILE51 - Aggressive Inline
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
[Video]

View File

@ -1,6 +1,5 @@
# GILP51 - Aggressive Inline
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
[Video_Hacks]
[Video]

View File

@ -1,8 +1,8 @@
# GIZE52 - Ty3
[Core] Values set here will override the main dolphin settings.
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Text is broken ingame. Fixed in tex-preload Dolphin branch.
EmulationStateId = 4
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -13,4 +13,3 @@ PH_ZNear =
PH_ZFar = 0.1
[ActionReplay] Add action replay cheats here.
[Video_Settings]
SafeTextureCache = True

View File

@ -14,7 +14,6 @@ PH_ZNear =
PH_ZFar = 0.1
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512
UseXFB = True
UseRealXFB = True

View File

@ -1,6 +1,6 @@
# GJWE78 - Tak: The Great Juju Challenge
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues =
EmulationStateId = 4
@ -26,5 +26,9 @@ $Infinite Green Fruit
0444C434 4479C000
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]

View File

@ -13,8 +13,6 @@ EmulationIssues = Slow,needs mmu and lle audio plugin for proper audio(r7411).
[ActionReplay]
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 128
[Core]
MMU = 1
FastDiscSpeed = 1

View File

@ -3,7 +3,7 @@
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4
EmulationIssues = Needs Jitil to run. LLE audio fixes some sound issues.
EmulationIssues = LLE audio fixes some sound issues.
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]

View File

@ -3,7 +3,7 @@
#Values set here will override the main dolphin settings.
[EmuState]
#The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 5
EmulationStateId = 4
EmulationIssues =
[OnFrame]
[ActionReplay]
@ -51,5 +51,12 @@ $MILLIARDE Quick Level Up
042D55E0 000F423F
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Video_Settings]
UseXFB = True
UseRealXFB = False
[Gecko]

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -15,5 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -17,4 +17,3 @@ PH_ZFar =
EFBAccessEnable = False
EFBCopyEnable = True
EFBToTextureEnable = False

View File

@ -1,13 +1,18 @@
# GKLE69 - The Lord of the Rings; The Return of the King
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
EmulationStateId = 4
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,13 +1,18 @@
# GKLF69 - The Lord of the Rings; The Return of the King
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
EmulationStateId = 4
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
ProjectionHack = 0
PH_SZNear = 0
PH_SZFar = 0
PH_ExtraParam = 0
PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

View File

@ -1,9 +1,9 @@
# GKLP69 - The Lord of the Rings; The Return of the King
[Core] Values set here will override the main dolphin settings.
MMU = 1
TLBHack = 1
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 3
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
EmulationStateId = 4
EmulationIssues =
[OnFrame] Add memory patches to be applied every frame here.
[ActionReplay] Add action replay cheats here.
[Video]
@ -15,6 +15,4 @@ PH_ZNear =
PH_ZFar =
[Gecko]
[Video_Settings]
SafeTextureCache = True
SafeTextureCacheColorSamples = 512

Some files were not shown because too many files have changed in this diff Show More