Merge pull request #139 from auxbh/fixes

Fixes
This commit is contained in:
Akitake 2025-06-15 07:45:30 +02:00 committed by GitHub
commit 2d19710a53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 30 additions and 15 deletions

View File

@ -73,7 +73,7 @@
!!! tip ""
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_bin.md"
=== "[vfs]"

View File

@ -71,7 +71,7 @@
## Configuring segatools
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_bin.md"
=== "[vfs]"

View File

@ -76,7 +76,7 @@
## Configuring segatools
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_bin.md"
=== "[vfs]"

View File

@ -75,7 +75,7 @@
📝mai2.ini
```
- Copy all of the above to your data's `App/Package` folder
- Copy all of the above to your data's `App\package` folder
- Agree to overwrite when asked
!!! warning "Assembly-CSharp Notes"
@ -91,7 +91,7 @@
!!! tip ""
Ensure that the `App\Package` folder contains `mai2.ini`.
Ensure that the `App\package` folder contains `mai2.ini`.
If this configuration file is missing, create one using the contents below:
@ -114,9 +114,9 @@
## Installing segatools
--8<-- "docs/snippets/sega/common/segatools_install.md"
- Find `mai2.zip` and extract it to your data's `App\Package` folder
- Find `mai2.zip` and extract it to your data's `App\package` folder
You should now have these files added to your `App\Package` directory:
You should now have these files added to your `App\package` directory:
```
📂DEVICE
@ -130,7 +130,7 @@
!!! tip ""
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_package.md"
=== "[vfs]"

View File

@ -77,7 +77,7 @@
📝mu3.ini
```
- Copy all of the above to your data's `App/Package` folder
- Copy all of the above to your data's `App\package` folder
- Agree to overwrite when asked
!!! warning "Assembly-CSharp Notes"
@ -116,9 +116,9 @@
## Installing segatools
--8<-- "docs/snippets/sega/common/segatools_install.md"
- Find `mu3.zip` and extract it to your data's `App\Package` folder
- Find `mu3.zip` and extract it to your data's `App\package` folder
You should now have these files added to your `App\Package` directory:
You should now have these files added to your `App\package` directory:
```
📂DEVICE
@ -130,7 +130,7 @@
## Configuring segatools
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_package.md"
=== "[vfs]"

View File

@ -57,7 +57,7 @@
## Configuring segatools
--8<-- "docs/snippets/sega/common/segatools_preamble.md"
--8<-- "docs/snippets/sega/common/segatools_preamble_bin.md"
=== "[vfs]"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -10,6 +10,6 @@
```ini
[system]
dipsw2=1
dipsw2=1 ; WRONG!
dipsw1=1
dipsw1=1 ; WRONG!
```

View File

@ -0,0 +1,15 @@
!!! info ""
You'll need to manually edit `App\package\segatools.ini` as segatools has no graphical configuration tool.
We recommend using a text editor with syntax highlighting such as [Notepad++](https://notepad-plus-plus.org/).
The following sections match those found in `segatools.ini` - skip any sections not listed below.
If a key already exists in a section, simply change its value after `=`, do not add another key.
```ini
[system]
dipsw1=1
dipsw1=1 ; WRONG!
```