Dolphin, the GameCube and Wii emulator - Forums

Full Version: Qt.ini with tags entry are not QString format
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

shanigma

Dear Devs,

I played with the tags function in Dolphin and find it usefull.
I looked there these settings are stored and found it in "User\Config\Qt.ini" but,
the [gamelist] is not stored as QString.
It looks like so:

Code:
[gamelist]
tags=good dump, bad dump
game_tags="@Variant(\0\0\0......

that is not possible to edit quickly if i move the directories!
I must change that tags manually.

It is possible that you convert the tags entry as QString before writing to the inifile?

Or as FeatureRequest it is possible to generate an additional ini file for that like this:

Code:
[GTEP01_P1]
GameID = GTEP01
Tags = T1,T3

[GTEP01_P2]
GameID = GTEP01
Tags = T2,T3,T4

[Path]
P1 = N:\Gamecube Dump
P2 = Q:\GameCube Dump2

[Tags]
T1 = good dump
T2 = bad dump
T3 = Snowboarding
T4 = Action

and save it to the folder there config files exists.

Thanks in advance