Merge branch 'master' into FIFO-BP
# By Jordan Woyak (46) and others # Via Jordan Woyak (2) and others * master: (70 commits) Fixes two memory leaks, one is pretty bad for OSX. Yell at pauldachz if this doesn't work. Or... say thanks. Added a BluetoothEnumerateInstalledServices call so that the wiimote remembers the pairing. Make ARMJit core default CPU core on ARM architecture Fix a StringUtil regression from the arm-noglsl merge Small improvement to cmpli/cmpi in ARMJit. Merge latest ArmEmitter changes from ppsspp while we're at it. Ah. I blame vim on this typo entirely. Add disabled code for authenticating wiimotes on Windows. Add the missing FPR cache Buildfix. Yell at the user if they change window size while dumping frames, and some other avi dumping stuff. Not sure if this is the right way to handle this, but it makes the save states perfectly stable. That's all that really matters, right? Abort loading states from incompatible graphics backends. ARM Support without GLSL Improve VideoSoftware save states. They are fairly stable, but not perfect. OpcodeDecoder::DoState() needs to be fixed. Begin implementing save states to video software. Kind of works, sometimes. Make error message for loading save state with wrong dsp engine shorter. Abort load state if it uses a different dsp engine, instead of crashing. Update the gameini of F-zero. Efb to Ram is no longer the default choice. fix last commit by neobrain ... Conflicts: Source/Core/VideoCommon/Src/Fifo.cpp
This commit is contained in:
commit
73da6f4f3f
|
@ -106,9 +106,22 @@ if(DOLPHIN_IS_STABLE)
|
|||
else()
|
||||
set(DOLPHIN_VERSION_PATCH ${DOLPHIN_WC_REVISION})
|
||||
endif()
|
||||
message(${CMAKE_SYSTEM_PROCESSOR})
|
||||
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^arm")
|
||||
set(_M_GENERIC 1)
|
||||
set(_M_ARM 1)
|
||||
add_definitions(-marm -march=armv7-a)
|
||||
add_definitions(-D_M_ARM=1)
|
||||
add_definitions(-D_M_GENERIC=1)
|
||||
endif()
|
||||
|
||||
# Set these next two lines to test generic
|
||||
#set(_M_GENERIC 1)
|
||||
#add_definitions(-D_M_GENERIC=1)
|
||||
# Various compile flags
|
||||
if(NOT _M_GENERIC)
|
||||
add_definitions(-msse2)
|
||||
endif()
|
||||
|
||||
include(CheckCXXCompilerFlag)
|
||||
macro(check_and_add_flag var flag)
|
||||
|
@ -258,13 +271,18 @@ if(USE_EGL)
|
|||
endif()
|
||||
add_definitions(-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE)
|
||||
|
||||
option(ANDROID "Enables a build for Android" OFF)
|
||||
if(ANDROID)
|
||||
message("Building for Android")
|
||||
add_definitions(-DANDROID)
|
||||
endif()
|
||||
########################################
|
||||
# Dependency checking
|
||||
#
|
||||
# TODO: We should have options for dependencies included in the externals to
|
||||
# override autodetection of system libraries and force the usage of the
|
||||
# externals.
|
||||
|
||||
if(NOT ANDROID)
|
||||
include(CheckLib)
|
||||
|
||||
include(FindOpenGL)
|
||||
|
@ -313,7 +331,7 @@ else()
|
|||
message("bluez NOT found, disabling bluetooth support")
|
||||
endif(BLUEZ_FOUND)
|
||||
|
||||
check_lib(PULSEAUDIO libpulse-simple QUIET)
|
||||
check_lib(PULSEAUDIO libpulse QUIET)
|
||||
if(PULSEAUDIO_FOUND)
|
||||
add_definitions(-DHAVE_PULSEAUDIO=1)
|
||||
message("PulseAudio found, enabling PulseAudio sound backend")
|
||||
|
@ -376,6 +394,7 @@ else()
|
|||
set(PORTAUDIO_FOUND FALSE)
|
||||
endif(PORTAUDIO)
|
||||
|
||||
option(OPROFILING "Enable profiling" OFF)
|
||||
if(OPROFILING)
|
||||
check_lib(OPROFILE opagent opagent.h)
|
||||
check_lib(BFD bfd bfd.h)
|
||||
|
@ -386,7 +405,7 @@ if(OPROFILING)
|
|||
message(FATAL_ERROR "oprofile or bfd not found. Can't build profiling support.")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
endif()
|
||||
########################################
|
||||
# Setup include directories (and make sure they are preferred over the Externals)
|
||||
#
|
||||
|
@ -401,7 +420,6 @@ include_directories(Source/Core/InputCommon/Src)
|
|||
include_directories(Source/Core/VideoCommon/Src)
|
||||
include_directories(Source/Core/VideoUICommon/Src)
|
||||
|
||||
|
||||
########################################
|
||||
# Process externals and setup their include directories
|
||||
#
|
||||
|
@ -415,7 +433,7 @@ include_directories(Source/Core/VideoUICommon/Src)
|
|||
add_subdirectory(Externals/Bochs_disasm)
|
||||
include_directories(Externals/Bochs_disasm)
|
||||
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID)
|
||||
check_lib(LZO lzo2 lzo/lzo1x.h QUIET)
|
||||
endif()
|
||||
if(LZO_FOUND)
|
||||
|
@ -440,6 +458,7 @@ if(OPENAL_FOUND)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT ANDROID)
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
include(FindSDL2 OPTIONAL)
|
||||
endif()
|
||||
|
@ -461,11 +480,12 @@ else(SDL2_FOUND)
|
|||
add_subdirectory(Externals/SDL)
|
||||
endif(SDL_FOUND)
|
||||
endif(SDL2_FOUND)
|
||||
endif()
|
||||
|
||||
set(SFML_FIND_VERSION TRUE)
|
||||
set(SFML_FIND_VERSION_MAJOR 1)
|
||||
set(SFML_FIND_VERSION_MINOR 5)
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID)
|
||||
include(FindSFML OPTIONAL)
|
||||
endif()
|
||||
if(SFML_FOUND AND NOT SFML_VERSION_MAJOR) # SFML 1.x doesn't define SFML_VERSION_MAJOR
|
||||
|
@ -476,7 +496,7 @@ else()
|
|||
include_directories(Externals/SFML/include)
|
||||
endif()
|
||||
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID)
|
||||
check_lib(SOIL SOIL SOIL/SOIL.h QUIET)
|
||||
endif()
|
||||
if(SOIL_FOUND)
|
||||
|
@ -506,6 +526,7 @@ if(WIN32)
|
|||
find_library(GLEW glew32s PATHS Externals/GLew)
|
||||
include_directories(Externals/GLew/include)
|
||||
else()
|
||||
if(NOT ANDROID)
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
check_lib(GLEW GLEW GL/glew.h)
|
||||
endif()
|
||||
|
@ -514,18 +535,10 @@ else()
|
|||
add_subdirectory(Externals/GLew)
|
||||
include_directories(Externals/GLew/include)
|
||||
endif(NOT GLEW_FOUND)
|
||||
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
check_lib(CG Cg Cg/cg.h)
|
||||
endif()
|
||||
if(NOT CG_FOUND)
|
||||
message("Using static Cg from Externals")
|
||||
include_directories(Externals)
|
||||
endif(NOT CG_FOUND)
|
||||
check_lib(CGGL CgGL Cg/cgGL.h)
|
||||
endif()
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID)
|
||||
find_library(CL OpenCL)
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-weak_framework,OpenCL")
|
||||
else()
|
||||
|
@ -533,10 +546,25 @@ else()
|
|||
add_subdirectory(Externals/CLRun)
|
||||
endif()
|
||||
|
||||
if(NOT DISABLE_WX)
|
||||
if(NOT DISABLE_WX AND NOT ANDROID)
|
||||
include(FindwxWidgets OPTIONAL)
|
||||
FIND_PACKAGE(wxWidgets COMPONENTS core aui adv)
|
||||
|
||||
if(wxWidgets_FOUND)
|
||||
EXECUTE_PROCESS(
|
||||
COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}"
|
||||
${wxWidgets_CONFIG_OPTIONS} --version
|
||||
OUTPUT_VARIABLE wxWidgets_VERSION
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
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")
|
||||
unset(wxWidgets_FOUND)
|
||||
endif()
|
||||
endif(wxWidgets_FOUND)
|
||||
|
||||
if(wxWidgets_FOUND)
|
||||
EXECUTE_PROCESS(
|
||||
COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}"
|
||||
|
@ -608,7 +636,7 @@ if(NOT DISABLE_WX)
|
|||
set(wxWidgets_LIBRARIES "wx")
|
||||
endif(wxWidgets_FOUND)
|
||||
add_definitions(-DHAVE_WX=1)
|
||||
endif(NOT DISABLE_WX)
|
||||
endif(NOT DISABLE_WX AND NOT ANDROID)
|
||||
|
||||
|
||||
########################################
|
||||
|
@ -682,4 +710,4 @@ list(APPEND CPACK_SOURCE_IGNORE_FILES "${CMAKE_BINARY_DIR}")
|
|||
|
||||
# CPack must be included after the CPACK_* variables are set in order for those
|
||||
# variables to take effect.
|
||||
include(CPack)
|
||||
Include(CPack)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
TLBHack = 1
|
||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||
EmulationStateId = 4
|
||||
EmulationIssues =
|
||||
EmulationIssues = The videos are messed up, skip them.
|
||||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
$Master Code
|
||||
|
@ -40,3 +40,9 @@ $Away Team Never Scores
|
|||
00416F8C 00000000
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
PH_SZFar = 0
|
||||
PH_ExtraParam = 0
|
||||
PH_ZNear =
|
||||
PH_ZFar =
|
||||
[Gecko]
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
# GF8P69 - FIFA Street
|
||||
[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.
|
||||
EmulationStateId = 4
|
||||
EmulationIssues = The videos are messed up, skip them.
|
||||
[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]
|
|
@ -43,7 +43,4 @@ $All Vehicles Unlocked
|
|||
840030C8 FFDC6F00
|
||||
[Gecko]
|
||||
[Video_Hacks]
|
||||
EFBCopyEnable = True
|
||||
EFBToTextureEnable = False
|
||||
EFBCopyCacheEnable = True
|
||||
[Video_Settings]
|
||||
|
|
|
@ -24,7 +24,4 @@ $Make Save Copyable
|
|||
04C3110C 4B400410
|
||||
[Gecko]
|
||||
[Video_Hacks]
|
||||
EFBCopyEnable = True
|
||||
EFBToTextureEnable = False
|
||||
EFBCopyCacheEnable = True
|
||||
[Video_Settings]
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
# GOSE41 - Open Season
|
||||
[Core] Values set here will override the main dolphin settings.
|
||||
TLBHack = 1
|
||||
MMU = 1
|
||||
FastDiscSpeed = 1
|
||||
BlockMerging = 1
|
||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||
EmulationStateId = 2
|
||||
EmulationIssues = Severe graphic issues.
|
||||
EmulationStateId = 4
|
||||
EmulationIssues = Needs MMU (Slow).
|
||||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Video]
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
# GOSP41 - Open Season
|
||||
[Core] Values set here will override the main dolphin settings.
|
||||
TLBHack = 1
|
||||
MMU = 1
|
||||
FastDiscSpeed = 1
|
||||
BlockMerging = 1
|
||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||
EmulationStateId = 2
|
||||
EmulationIssues = Severe graphic issues.
|
||||
EmulationStateId = 4
|
||||
EmulationIssues = Needs MMU (Slow).
|
||||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Video]
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
# GOSX41 - Open Season
|
||||
[Core] Values set here will override the main dolphin settings.
|
||||
TLBHack = 1
|
||||
MMU = 1
|
||||
FastDiscSpeed = 1
|
||||
BlockMerging = 1
|
||||
[EmuState] The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||
EmulationStateId = 2
|
||||
EmulationIssues = Severe graphic issues.
|
||||
EmulationStateId = 4
|
||||
EmulationIssues = Needs MMU (Slow).
|
||||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Video]
|
||||
|
|
|
@ -33,7 +33,7 @@ PH_ExtraParam = 1
|
|||
|
||||
[5]
|
||||
Title = Tales of Symphonia GC
|
||||
PH_ZNear = 0.0002
|
||||
PH_ZNear = 0.00026
|
||||
|
||||
|
||||
# ---------------------------------------------------
|
||||
|
|
|
@ -18,4 +18,3 @@ SafeTextureCacheColorSamples = 512
|
|||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ SafeTextureCacheColorSamples = 512
|
|||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ SafeTextureCacheColorSamples = 512
|
|||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
EFBToTextureEnable = False
|
||||
EFBCopyEnable = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
EFBToTextureEnable = False
|
||||
EFBCopyEnable = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -10,4 +10,3 @@ EmulationStateId = 5
|
|||
[Video]
|
||||
ProjectionHack = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -15,4 +15,3 @@ PH_ZFar =
|
|||
[Gecko]
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -15,4 +15,3 @@ PH_ZFar =
|
|||
[Gecko]
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -15,4 +15,3 @@ PH_ZFar =
|
|||
[Gecko]
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -24,6 +24,5 @@ PH_ZFar =
|
|||
[Video_Enhancements]
|
||||
ForceFiltering = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
|
|
|
@ -18,6 +18,5 @@ PH_ZFar =
|
|||
[Video_Enhancements]
|
||||
ForceFiltering = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -36,4 +36,3 @@ C2152674 00000002
|
|||
3CA03B9B 38A5C9FF
|
||||
90B60178 00000000
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -9,4 +9,3 @@ EmulationIssues = Use dx11 plugin (r6945)
|
|||
ProjectionHack = 0
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -9,4 +9,3 @@ EmulationIssues = Use dx11 plugin (r6945)
|
|||
ProjectionHack = 0
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues =
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues =
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues =
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -21,6 +21,5 @@ SafeTextureCacheColorSamples = 512
|
|||
EFBToTextureEnable = False
|
||||
EFBCopyEnable = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
|
|
|
@ -21,6 +21,5 @@ SafeTextureCacheColorSamples = 512
|
|||
EFBToTextureEnable = False
|
||||
EFBCopyEnable = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
|
|
|
@ -23,6 +23,5 @@ SafeTextureCacheColorSamples = 512
|
|||
EFBToTextureEnable = False
|
||||
EFBCopyEnable = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues = Needs single core to run properly(r7436).
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues = Needs single core to run properly(r7436).
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues = Needs single core to run properly(r7436).
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[Video_Hacks]
|
||||
EFBEmulateFormatChanges = True
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
UseXFB = True
|
||||
UseRealXFB = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ PH_ZFar =
|
|||
SafeTextureCacheColorSamples = 512
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ PH_ZFar =
|
|||
SafeTextureCacheColorSamples = 512
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ PH_ZFar =
|
|||
SafeTextureCacheColorSamples = 512
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -32,5 +32,4 @@ $Rapid Fire [TNTkryzt]
|
|||
SafeTextureCacheColorSamples = 512
|
||||
[Video_Enhancements]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ EmulationIssues =
|
|||
DlistCachingEnable = False
|
||||
[Video_Settings]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -67,4 +67,3 @@ $Profile Three Name Changer Jedi Hack & [Mitch]
|
|||
DlistCachingEnable = False
|
||||
[Video_Settings]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ EmulationIssues =
|
|||
[ActionReplay]
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -21,4 +21,3 @@ ForceFiltering = False
|
|||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
EFBScale = 1
|
||||
SafeTextureCacheColorSamples = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
EFBScale = 1
|
||||
SafeTextureCacheColorSamples = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
EFBScale = 1
|
||||
SafeTextureCacheColorSamples = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,4 +17,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -6,7 +6,6 @@ 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.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ 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.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Suffers from random ingame lock ups.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Suffers from random ingame lock ups.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Suffers from random ingame lock ups.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Suffers from random ingame lock ups.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -18,4 +18,3 @@ EFBEmulateFormatChanges = True
|
|||
[Video_Enhancements]
|
||||
MaxAnisotropy = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ EFBEmulateFormatChanges = True
|
|||
[Video_Enhancements]
|
||||
MaxAnisotropy = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -18,4 +18,3 @@ EFBEmulateFormatChanges = True
|
|||
[Video_Enhancements]
|
||||
MaxAnisotropy = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Direct 3d 11 fixes some texture glitches.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -6,7 +6,6 @@ EmulationIssues = Direct 3d 11 fixes some texture glitches.
|
|||
[OnFrame] Add memory patches to be applied every frame here.
|
||||
[ActionReplay] Add action replay cheats here.
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video]
|
||||
ProjectionHack = 0
|
||||
PH_SZNear = 0
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -14,4 +14,3 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -17,5 +17,4 @@ PH_ZFar =
|
|||
EFBAccessEnable = True
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Settings]
|
||||
|
|
|
@ -17,5 +17,4 @@ PH_ZFar =
|
|||
EFBAccessEnable = True
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Settings]
|
||||
|
|
|
@ -17,5 +17,4 @@ PH_ZFar =
|
|||
EFBAccessEnable = True
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Settings]
|
||||
|
|
|
@ -17,5 +17,4 @@ PH_ZFar =
|
|||
EFBAccessEnable = True
|
||||
DlistCachingEnable = False
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Settings]
|
||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
|
|
|
@ -14,6 +14,5 @@ PH_ZNear =
|
|||
PH_ZFar =
|
||||
[Gecko]
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
[Video_Hacks]
|
||||
DlistCachingEnable = False
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
|
@ -16,4 +16,3 @@ PH_ZFar =
|
|||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 0
|
||||
[Wii]
|
||||
DisableWiimoteSpeaker = 1
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue