• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Support v
1 2 3 4 5 ... 1196 Next »

[UNOFFICIAL] [Howto] Using gameini settings per game
View New Posts | View Today's Posts

Pages (38): « Previous 1 ... 34 35 36 37 38
Jump to page 
Thread Rating:
  • 16 Vote(s) - 4.38 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
[UNOFFICIAL] [Howto] Using gameini settings per game
06-07-2020, 06:16 AM
#371
Klemc Offline
Member
***
Posts: 91
Threads: 16
Joined: Jul 2019
If i use one instance of Dolphin per-game (45mo!), so i should configure base settings and copy this Dolphin ready folder to another place, samething for each game.
I find it easiest way.
Find
Reply
08-24-2020, 10:57 PM (This post was last modified: 08-24-2020, 11:10 PM by Zxzx.)
#372
Zxzx Offline
Junior Member
**
Posts: 27
Threads: 0
Joined: Nov 2015
Hi,
The language selection no longer works for me with the version 5.0-12247. (Edit : same with 12481)

[Controls]
WiimoteProfile1 = Profile1 (it works)
[Wii]
Language = 3 (not works)

Edit 2 : not works only with japanese games.
Find
Reply
08-24-2020, 11:32 PM
#373
JosJuice Offline
Developer
**********
Developers (Some Administrators and Super Moderators)
Posts: 8,924
Threads: 7
Joined: Oct 2014
(08-24-2020, 10:57 PM)Zxzx Wrote: Edit 2 : not works only with japanese games.

You probably need to turn on Allow Mismatched Region Settings.
Find
Reply
08-24-2020, 11:36 PM
#374
Zxzx Offline
Junior Member
**
Posts: 27
Threads: 0
Joined: Nov 2015
(08-24-2020, 11:32 PM)JosJuice Wrote: You probably need to turn on Allow Mismatched Region Settings.

You saved my life, thank you!
Find
Reply
10-09-2020, 02:19 AM
#375
poudink Offline
Junior Member
**
Posts: 6
Threads: 1
Joined: Oct 2020
I can't get the following two settings to work:
*Graphics Backend
*Antialiasing
In fact, I noticed that GameINI antialiasing settings don't even seem to work in the INIs that come with Dolphin.
Find
Reply
10-12-2020, 10:48 AM
#376
Vinnybvieyra
Unregistered
 
Just wondering if you could help me with this since it looks like you might know I keep getting this error message for urbz but my Mario sunshine plays just fine.

“IntCPU: Unknown instruction 00000000 at PC = 00000000 last_PC = 00000000 LR = 00000000”
Reply
03-16-2022, 12:32 PM
#377
saraphynx Offline
Junior Member
**
Posts: 2
Threads: 0
Joined: Mar 2022
sorry, i'm new, which settings do i need to reduce lag after disabling dual core? i get the weird GFX FIFO error while playing paper mario the thousand year door, so i need to disable it. thank you in advance.
Find
Reply
04-27-2022, 02:12 AM
#378
sagaopc Offline
MFAGames
***
Posts: 74
Threads: 5
Joined: Dec 2012
does anyone can do a GUI to do configs?
Find
Reply
05-30-2022, 05:39 AM (This post was last modified: 05-30-2022, 07:39 AM by pneumatic.)
#379
pneumatic Offline
Junior Member
**
Posts: 26
Threads: 1
Joined: Feb 2022
Here's a template for a Windows batch file to apply per-game settings and script external stuff before/after the game launches, eg. turning on ScanlineSync for games that play nicely with it.


Code:
@echo off

echo Enabling ScanlineSync...

copy /V /Y "C:\Users\Me\Desktop\Dolphin Games\ScanlineSyncEnabled.cfg" ^
"C:\Program Files (x86)\RivaTuner Statistics Server\Profiles\Dolphin.exe.cfg"

echo.
echo Launching Dolphin...
timeout 10

"C:\Program Files\Dolphin-x64\Dolphin.exe" ^
-C Dolphin.Core.CPUThread=True ^
-C Dolphin.Core.GFXBackend=OGL ^
-C Graphics.Hardware.VSync=True ^
-C Graphics.Settings.ShaderCompilationMode=1 ^
-C Graphics.Settings.InternalResolution=3 ^
-C Graphics.Enhancements.MaxAnisotropy=3 ^
-C Graphics.Settings.AspectRatio=0 ^
-C Graphics.Settings.Crop=False ^
-C Dolphin.Core.OverclockEnable=False ^
-C Dolphin.Core.Overclock=1.0 ^
-C Graphics.Hacks.SkipDuplicateXFBs=False ^
-C Graphics.Hacks.ImmediateXFBenable=False ^
-C Graphics.Hacks.EFBToTextureEnable=True ^
-C Graphics.Hacks.EFBScaledCopy=True ^
-C Dolphin.Core.SyncOnSkipIdle=True ^
-C Dolphin.Core.SyncGPU=False ^
-C Dolphin.Core.ProgressiveScan=False ^
-C Dolphin.Core.PAL60=True ^
-C Graphics.Enhancements.PostProcessingShader=(off) ^
-C Graphics.Settings.MSAA=0 ^
-b -e "D:\games\game.iso"

echo.
echo Disabling ScanlineSync...

copy /V /Y "C:\Users\Me\Desktop\Dolphin Games\ScanlineSyncDisabled.cfg" ^
"C:\Program Files (x86)\RivaTuner Statistics Server\Profiles\Dolphin.exe.cfg"

echo.
echo Exiting in 10 seconds...
timeout 10

edit: on second thought, it's probably easier to just overwrite your existing GameSettings\XXXXXX.ini, as that allows you to set cheats which can't be done at the command line.
Find
Reply
06-14-2022, 08:38 PM (This post was last modified: 06-14-2022, 08:50 PM by pneumatic.)
#380
pneumatic Offline
Junior Member
**
Posts: 26
Threads: 1
Joined: Feb 2022
I can't get any of the [DSP] settings to work:

Code:
[DSP]
Backend = No Audio Output             # audio still plays
Backend = WASAPI (Exclusive Mode)     # GUI still shows Cubeb
Volume = 10                           # audio still loud

I must be doing something wrong, but I can't figure it out Angry

I need it because Mario Sunshine with 60fps patch has random missing audio unless I use WASAPI.

Luckily I've moved to batch files to launch games, so I could work around it by scripting a modify/restore of the [DSP] section in Dolphin.ini, but I shouldn't have to do that:

https://wiki.dolphin-emu.org/index.php?title=GameINI#.5BDSP.5D

edit: just noticed the "Backend = No audio output" is wrong in the above wiki page as it needs to be capitalised to work, but that only works when editing Dolphin.ini and still doesn't work in GameINIs.

edit: [Dolphin.DSP] works.  
Find
Reply
« Next Oldest | Next Newest »
Pages (38): « Previous 1 ... 34 35 36 37 38
Jump to page 


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 2 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode