Skip to content

Commit

Permalink
Small text edit for version 1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
blzla committed Nov 28, 2021
1 parent ea4e728 commit d32e536
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions Passwords.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System;

namespace SGB_Settings_Editor
namespace SGB_Settings_Editor
{
// Convert SGB passwords to color palette
public static class Passwords
Expand Down Expand Up @@ -177,8 +175,7 @@ internal static ushort change_shade(ushort base_color, int shade)
A = (ushort)(A << 5);
A = (ushort)((cc & 0x7c1f) | A);
cc = A;
A &= 0x001f;
A = sub(A);
A = sub((ushort)(A & 0x001f));
A = (ushort)((cc & 0x7fe0) | A);
return A;
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SGB Settings Editor
Settings Editor for Super Game Boy 1 &amp; 2, also a general SNES color conversion tool.

Allows you to freely change the color palettes and game presets, switch the control type and select a different startup border. Compatible with the SGB mode of the SD2SNES / FXPAK.
Allows you to freely change the color palettes and game presets, switch the control type and select a different startup border. Color palette passwords from the Super Game Boy can be imported and converted to RGB values. Compatible with the SGB mode of the SD2SNES / FXPAK.

![screenshot](https://github.com/blzla/SGB-Palette-Editor/blob/main/screenshot.png?raw=true)
![screenshot](https://github.com/blzla/SGB-Settings-Editor/blob/main/screenshot.png?raw=true)

0 comments on commit d32e536

Please sign in to comment.