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:
commit
fdff4cb1ff
|
@ -27,9 +27,7 @@ obj/
|
||||||
[Rr]elease*/
|
[Rr]elease*/
|
||||||
_ReSharper*/
|
_ReSharper*/
|
||||||
[Tt]est[Rr]esult*
|
[Tt]est[Rr]esult*
|
||||||
Binary/Win32
|
Binary
|
||||||
Binary/x64
|
|
||||||
Binary/Darwin*
|
|
||||||
Source/Core/Common/Src/scmrev.h
|
Source/Core/Common/Src/scmrev.h
|
||||||
*.opensdf
|
*.opensdf
|
||||||
*.sdf
|
*.sdf
|
||||||
|
|
|
@ -2,6 +2,17 @@
|
||||||
# General setup
|
# General setup
|
||||||
#
|
#
|
||||||
cmake_minimum_required(VERSION 2.6)
|
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)
|
project(dolphin-emu)
|
||||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/CMakeTests)
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/CMakeTests)
|
||||||
set(DOLPHIN_IS_STABLE FALSE)
|
set(DOLPHIN_IS_STABLE FALSE)
|
||||||
|
@ -114,7 +125,7 @@ if(UNIX AND NOT APPLE)
|
||||||
endif(VISIBILITY_HIDDEN)
|
endif(VISIBILITY_HIDDEN)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if(APPLE)
|
||||||
# Ignore MacPorts and Fink and any other locally installed packages that
|
# Ignore MacPorts and Fink and any other locally installed packages that
|
||||||
# might prevent building a distributable binary.
|
# might prevent building a distributable binary.
|
||||||
set(CMAKE_SYSTEM_PREFIX_PATH /usr)
|
set(CMAKE_SYSTEM_PREFIX_PATH /usr)
|
||||||
|
@ -135,8 +146,17 @@ if (APPLE)
|
||||||
# features can be used, not the minimum required version to run.
|
# features can be used, not the minimum required version to run.
|
||||||
set(OSX_MIN_VERSION "10.5.4")
|
set(OSX_MIN_VERSION "10.5.4")
|
||||||
set(TARGET_FLAGS "${TARGET_FLAGS} -mmacosx-version-min=${OSX_MIN_VERSION}")
|
set(TARGET_FLAGS "${TARGET_FLAGS} -mmacosx-version-min=${OSX_MIN_VERSION}")
|
||||||
set(TARGET_FLAGS "${TARGET_FLAGS} -isysroot /Developer/SDKs/MacOSX10.6.sdk")
|
set(SYSROOT_LEGACY_PATH "/Developer/SDKs/MacOSX10.6.sdk")
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-syslibroot,/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.
|
# Do not warn about frameworks that are not available on all architectures.
|
||||||
# This avoids a warning when linking with QuickTime.
|
# This avoids a warning when linking with QuickTime.
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_arch_warnings")
|
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)
|
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
|
||||||
if(NOT DISABLE_WX)
|
if(NOT DISABLE_WX)
|
||||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
||||||
include(FindwxWidgets OPTIONAL)
|
include(FindwxWidgets OPTIONAL)
|
||||||
FIND_PACKAGE(wxWidgets COMPONENTS core aui adv)
|
FIND_PACKAGE(wxWidgets COMPONENTS core aui adv)
|
||||||
endif()
|
|
||||||
|
|
||||||
if(wxWidgets_FOUND)
|
if(wxWidgets_FOUND)
|
||||||
EXECUTE_PROCESS(
|
EXECUTE_PROCESS(
|
||||||
|
@ -473,15 +491,17 @@ if(NOT DISABLE_WX)
|
||||||
ERROR_QUIET
|
ERROR_QUIET
|
||||||
)
|
)
|
||||||
message("Found wxWidgets version ${wxWidgets_VERSION}")
|
message("Found wxWidgets version ${wxWidgets_VERSION}")
|
||||||
if(${wxWidgets_VERSION} VERSION_LESS "2.8.9")
|
if(UNIX AND NOT APPLE)
|
||||||
message("At least 2.8.9 is required; ignoring found version")
|
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)
|
unset(wxWidgets_FOUND)
|
||||||
endif()
|
endif()
|
||||||
endif(wxWidgets_FOUND)
|
endif(wxWidgets_FOUND)
|
||||||
|
|
||||||
if(wxWidgets_FOUND)
|
|
||||||
include(${wxWidgets_USE_FILE})
|
|
||||||
|
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX AND NOT APPLE)
|
||||||
# There is a bug in the FindGTK module in cmake version 2.8.2 that
|
# 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
|
# 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()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(wxWidgets_FOUND)
|
||||||
|
include(${wxWidgets_USE_FILE})
|
||||||
message("wxWidgets found, enabling GUI build")
|
message("wxWidgets found, enabling GUI build")
|
||||||
else(wxWidgets_FOUND)
|
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")
|
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")
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
add_definitions(-D__WXOSX_COCOA__)
|
add_definitions(-D__WXOSX_COCOA__)
|
||||||
include_directories(Externals/wxWidgets3)
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||||
include_directories(Externals/wxWidgets3/include)
|
add_definitions(-D__WXGTK__)
|
||||||
add_subdirectory(Externals/wxWidgets3)
|
|
||||||
set(wxWidgets_LIBRARIES "wx")
|
# 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()
|
else()
|
||||||
include_directories(Externals/wxWidgets/include)
|
message(FATAL_ERROR "wxWidgets in Externals is not compatible with your platform")
|
||||||
add_subdirectory(Externals/wxWidgets)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
Externals/wxWidgets3
|
||||||
|
Externals/wxWidgets3/include)
|
||||||
|
add_subdirectory(Externals/wxWidgets3)
|
||||||
set(wxWidgets_FOUND TRUE)
|
set(wxWidgets_FOUND TRUE)
|
||||||
|
set(wxWidgets_LIBRARIES "wx")
|
||||||
endif(wxWidgets_FOUND)
|
endif(wxWidgets_FOUND)
|
||||||
add_definitions(-DHAVE_WX=1)
|
add_definitions(-DHAVE_WX=1)
|
||||||
endif(NOT DISABLE_WX)
|
endif(NOT DISABLE_WX)
|
||||||
|
@ -554,7 +585,7 @@ option(UNITTESTS "Build unitests" OFF)
|
||||||
########################################
|
########################################
|
||||||
# Start compiling our code
|
# Start compiling our code
|
||||||
#
|
#
|
||||||
add_definitions(-std=c++0x)
|
add_definitions(-std=gnu++0x)
|
||||||
add_subdirectory(Source)
|
add_subdirectory(Source)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -153,7 +153,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
EFBCopyEnable = True
|
EFBCopyEnable = True
|
||||||
|
|
|
@ -151,7 +151,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
EFBCopyEnable = True
|
EFBCopyEnable = True
|
||||||
|
|
|
@ -15,6 +15,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,7 +15,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
DlistCachingEnable = False
|
DlistCachingEnable = False
|
||||||
|
|
|
@ -15,7 +15,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
DlistCachingEnable = False
|
DlistCachingEnable = False
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
|
@ -18,7 +18,6 @@ MMU = 1
|
||||||
VBeam = 1
|
VBeam = 1
|
||||||
BlockMerging = 1
|
BlockMerging = 1
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
DlistCachingEnable = False
|
DlistCachingEnable = False
|
||||||
|
|
|
@ -18,7 +18,6 @@ MMU = 1
|
||||||
VBeam = 1
|
VBeam = 1
|
||||||
BlockMerging = 1
|
BlockMerging = 1
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
DlistCachingEnable = False
|
DlistCachingEnable = False
|
||||||
|
|
|
@ -18,7 +18,6 @@ MMU = 1
|
||||||
VBeam = 1
|
VBeam = 1
|
||||||
BlockMerging = 1
|
BlockMerging = 1
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
DlistCachingEnable = False
|
DlistCachingEnable = False
|
||||||
|
|
|
@ -15,6 +15,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
# G4FD69 - FIFA 07
|
# G4FD69 - FIFA 07
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
# G4FE69 - FIFA 07
|
# G4FE69 - FIFA 07
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
# G4FF69 - FIFA 07
|
# G4FF69 - FIFA 07
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
# G4FE69 - FIFA 07
|
# G4FE69 - FIFA 07
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -15,6 +15,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -105,5 +105,4 @@ $Have Power Bracelet
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,4 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
EFBScale = 2
|
EFBScale = 2
|
||||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
EFBScale = 2
|
EFBScale = 2
|
||||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
EFBScale = 2
|
EFBScale = 2
|
||||||
|
|
|
@ -317,7 +317,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Core]
|
[Core]
|
||||||
FastDiscSpeed = 1
|
FastDiscSpeed = 1
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Core]
|
[Core]
|
||||||
FastDiscSpeed = 1
|
FastDiscSpeed = 1
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Core]
|
[Core]
|
||||||
FastDiscSpeed = 1
|
FastDiscSpeed = 1
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Core]
|
[Core]
|
||||||
FastDiscSpeed = 1
|
FastDiscSpeed = 1
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 5
|
EmulationStateId = 5
|
||||||
EmulationIssues = Slowdowns ingame if Accurate texture cache is disabled.
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
@ -65,6 +65,4 @@ $C-Stick Sends All Car Back To Start
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = False
|
UseRealXFB = False
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 128
|
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 5
|
EmulationStateId = 5
|
||||||
EmulationIssues = Slowdowns ingame if Accurate texture cache is disabled.
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
@ -15,6 +15,4 @@ PH_ZFar =
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = False
|
UseRealXFB = False
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 128
|
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -10,6 +10,5 @@ EmulationIssues =
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,6 +15,5 @@ PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
EFBScale = 1
|
EFBScale = 1
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
EFBScale = 1
|
EFBScale = 1
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 0
|
SafeTextureCacheColorSamples = 0
|
||||||
|
|
|
@ -7,5 +7,4 @@ EmulationIssues = Need ZTP BLoom Hack and Safe Texture Cache
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -299,7 +299,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Enhancements]
|
[Video_Enhancements]
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
|
|
|
@ -16,7 +16,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
EFBEmulateFormatChanges = True
|
EFBEmulateFormatChanges = True
|
||||||
|
|
|
@ -1,17 +1,19 @@
|
||||||
# GCZE69 - CATWOMAN
|
# GCZE69 - CATWOMAN
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationIssues = Needs MMU and is slow (r6898)
|
EmulationIssues =
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Enhancements]
|
[Video_Enhancements]
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
# GCZP69 - CATWOMAN
|
# GCZP69 - CATWOMAN
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationIssues = Needs MMU and is slow (r6898)
|
EmulationIssues =
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
[Video_Enhancements]
|
||||||
|
|
|
@ -16,5 +16,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GDGE7H - Dragon's Lair 3D
|
# GDGE7H - Dragon's Lair 3D
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Needs MMU (very slow due to that).
|
EmulationIssues = Needs Real Xfb for videos to show up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GDGP78 - Dragon's Lair 3D
|
# GDGP78 - Dragon's Lair 3D
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Needs MMU (very slow due to that).
|
EmulationIssues = Needs Real Xfb for videos to show up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear =
|
||||||
PH_ZFar = 1.99998
|
PH_ZFar = 1.99998
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear =
|
||||||
PH_ZFar = 1.99998
|
PH_ZFar = 1.99998
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear = 5
|
||||||
PH_ZFar = 0.15
|
PH_ZFar = 0.15
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,5 +14,4 @@ PH_ZNear = 5
|
||||||
PH_ZFar = 0.15
|
PH_ZFar = 0.15
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,3 +14,5 @@ PH_ExtraParam = 0
|
||||||
PH_ZNear =
|
PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
[Video_Settings]
|
||||||
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,3 +14,5 @@ PH_ExtraParam = 0
|
||||||
PH_ZNear =
|
PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
[Video_Settings]
|
||||||
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,3 +14,5 @@ PH_ExtraParam = 0
|
||||||
PH_ZNear =
|
PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
[Video_Settings]
|
||||||
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -14,3 +14,5 @@ PH_ExtraParam = 0
|
||||||
PH_ZNear =
|
PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
[Video_Settings]
|
||||||
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -8,7 +8,6 @@ EmulationIssues = GFX glitches
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = False
|
UseRealXFB = False
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
EFBScale = 0
|
EFBScale = 0
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -8,7 +8,6 @@ EmulationIssues = GFX glitches
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = False
|
UseRealXFB = False
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
EFBScale = 0
|
EFBScale = 0
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Enhancements]
|
[Video_Enhancements]
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Enhancements]
|
[Video_Enhancements]
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
# GF5E69 - FIFA Soccer 2005
|
# GF5E69 - FIFA Soccer 2005
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[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)
|
EmulationIssues = Sound issues need LLE audio to be fixed and the videos are messed up.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
# GF6E69 - FIFA 06
|
# GF6E69 - FIFA 06
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
# GF6F69 - FIFA 06
|
# GF6F69 - FIFA 06
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -78,7 +78,6 @@ PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
EFBScale = 1
|
EFBScale = 1
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
EFBToTextureEnable = False
|
EFBToTextureEnable = False
|
||||||
|
|
|
@ -75,7 +75,6 @@ PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
EFBScale = 1
|
EFBScale = 1
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
EFBToTextureEnable = False
|
EFBToTextureEnable = False
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GFAD69 - FIFA 2003
|
# GFAD69 - FIFA 2003
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GFAE69 - FIFA 2003
|
# GFAE69 - FIFA 2003
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GFAP69 - FIFA 2003
|
# GFAP69 - FIFA 2003
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GFAS69 - FIFA 2003
|
# GFAS69 - FIFA 2003
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU.
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
# GFYE69 - FIFA Street 2
|
# GFYE69 - FIFA Street 2
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
$Master Code
|
$Master Code
|
||||||
|
@ -35,8 +34,11 @@ $Away Team Low Trick Points
|
||||||
044349E8 00000000
|
044349E8 00000000
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
# GFYP69 - FIFA Street 2
|
# GFYP69 - FIFA Street 2
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Sound issues need LLE plugin and videos are messed up. Slow due to MMU(r6932)
|
EmulationIssues = Sound issues need LLE plugin and videos are messed up.
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[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
|
EmulationStateId = 4
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
|
|
|
@ -16,6 +16,5 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -11,5 +11,4 @@ EmulationIssues =
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -117,5 +117,4 @@ $0 Rations Used
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# GGYE41 - GR2GC
|
# GGYE41 - GR2GC
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 3
|
||||||
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
|
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
|
||||||
|
@ -18,6 +17,4 @@ PH_ZFar =
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = True
|
UseRealXFB = True
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# GGYP41 - GR2GC
|
# GGYP41 - GR2GC
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
MMU = 1
|
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 3
|
||||||
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
|
EmulationIssues = Needs Real XFB for videos to show up, lle for sound issues.(r6932)
|
||||||
|
@ -18,6 +17,4 @@ PH_ZFar =
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = True
|
UseRealXFB = True
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# GH7E5D - Happy Feet
|
# GH7E5D - Happy Feet
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationIssues =
|
EmulationIssues =
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# GHCE4Q - Chicken Little
|
# GHCE4Q - Chicken Little
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
EmulationIssues =
|
EmulationIssues =
|
||||||
|
@ -8,5 +8,9 @@ EmulationIssues =
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# GHCF4Q - Chicken Little
|
# GHCF4Q - Chicken Little
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
EmulationIssues =
|
EmulationIssues =
|
||||||
|
@ -8,4 +8,9 @@ EmulationIssues =
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
# GIKE70 - IKARUGA
|
# GIKE70 - IKARUGA
|
||||||
[EmuState]
|
[EmuState]
|
||||||
EmulationStateId = 5
|
EmulationStateId = 5
|
||||||
|
EmulationIssues =
|
||||||
[Video]
|
[Video]
|
||||||
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[OnFrame]
|
[OnFrame]
|
||||||
[ActionReplay]
|
[ActionReplay]
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
|
|
|
@ -6,4 +6,3 @@ EmulationStateId = 5
|
||||||
[ActionReplay]
|
[ActionReplay]
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# GILE51 - Aggressive Inline
|
# GILE51 - Aggressive Inline
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# GILP51 - Aggressive Inline
|
# GILP51 - Aggressive Inline
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
[Video_Hacks]
|
[Video_Hacks]
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# GIZE52 - Ty3
|
# GIZE52 - Ty3
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[Core] Values set here will override the main dolphin settings.
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Text is broken ingame. Fixed in tex-preload Dolphin branch.
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -13,4 +13,3 @@ PH_ZNear =
|
||||||
PH_ZFar = 0.1
|
PH_ZFar = 0.1
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
|
|
|
@ -14,7 +14,6 @@ PH_ZNear =
|
||||||
PH_ZFar = 0.1
|
PH_ZFar = 0.1
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
UseXFB = True
|
UseXFB = True
|
||||||
UseRealXFB = True
|
UseRealXFB = True
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# GJWE78 - Tak: The Great Juju Challenge
|
# GJWE78 - Tak: The Great Juju Challenge
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationIssues =
|
EmulationIssues =
|
||||||
EmulationStateId = 4
|
EmulationStateId = 4
|
||||||
|
@ -26,5 +26,9 @@ $Infinite Green Fruit
|
||||||
0444C434 4479C000
|
0444C434 4479C000
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,6 @@ EmulationIssues = Slow,needs mmu and lle audio plugin for proper audio(r7411).
|
||||||
[ActionReplay]
|
[ActionReplay]
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 128
|
|
||||||
[Core]
|
[Core]
|
||||||
MMU = 1
|
MMU = 1
|
||||||
FastDiscSpeed = 1
|
FastDiscSpeed = 1
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
TLBHack = 1
|
TLBHack = 1
|
||||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 4
|
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.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#Values set here will override the main dolphin settings.
|
#Values set here will override the main dolphin settings.
|
||||||
[EmuState]
|
[EmuState]
|
||||||
#The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
#The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 5
|
EmulationStateId = 4
|
||||||
EmulationIssues =
|
EmulationIssues =
|
||||||
[OnFrame]
|
[OnFrame]
|
||||||
[ActionReplay]
|
[ActionReplay]
|
||||||
|
@ -51,5 +51,12 @@ $MILLIARDE Quick Level Up
|
||||||
042D55E0 000F423F
|
042D55E0 000F423F
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
|
[Video_Settings]
|
||||||
|
UseXFB = True
|
||||||
|
UseRealXFB = False
|
||||||
[Gecko]
|
[Gecko]
|
||||||
|
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -15,5 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
||||||
EFBAccessEnable = False
|
EFBAccessEnable = False
|
||||||
EFBCopyEnable = True
|
EFBCopyEnable = True
|
||||||
EFBToTextureEnable = False
|
EFBToTextureEnable = False
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
# GKLE69 - The Lord of the Rings; The Return of the King
|
# GKLE69 - The Lord of the Rings; The Return of the King
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
# GKLF69 - The Lord of the Rings; The Return of the King
|
# GKLF69 - The Lord of the Rings; The Return of the King
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
ProjectionHack = 0
|
ProjectionHack = 0
|
||||||
|
PH_SZNear = 0
|
||||||
|
PH_SZFar = 0
|
||||||
|
PH_ExtraParam = 0
|
||||||
|
PH_ZNear =
|
||||||
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# GKLP69 - The Lord of the Rings; The Return of the King
|
# GKLP69 - The Lord of the Rings; The Return of the King
|
||||||
[Core] Values set here will override the main dolphin settings.
|
[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.
|
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 3
|
EmulationStateId = 4
|
||||||
EmulationIssues = Needs MMU, and is very slow because of it (r6572)
|
EmulationIssues =
|
||||||
[OnFrame] Add memory patches to be applied every frame here.
|
[OnFrame] Add memory patches to be applied every frame here.
|
||||||
[ActionReplay] Add action replay cheats here.
|
[ActionReplay] Add action replay cheats here.
|
||||||
[Video]
|
[Video]
|
||||||
|
@ -15,6 +15,4 @@ PH_ZNear =
|
||||||
PH_ZFar =
|
PH_ZFar =
|
||||||
[Gecko]
|
[Gecko]
|
||||||
[Video_Settings]
|
[Video_Settings]
|
||||||
SafeTextureCache = True
|
|
||||||
SafeTextureCacheColorSamples = 512
|
SafeTextureCacheColorSamples = 512
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue