Skip to content

Commit

Permalink
Fixed bug with Sticker messages
Browse files Browse the repository at this point in the history
Reformatted log file

Attempt to fix gui bug

Fixed mechacon detection on DTL-H3010x

Added DSP chip description

Prepared for release

Added various contributors and some new Model ID
  • Loading branch information
AKuHAK committed Feb 28, 2021
1 parent cda2f50 commit 084bd3d
Show file tree
Hide file tree
Showing 8 changed files with 159 additions and 110 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}
path: PS2Ident.elf
path: |
lang/
licenses/
PS2Ident.elf
PS2Ident.db
README.md
changelog.txt
# 'path' will create artifact with all *.elf in working directory
# you can change this

Expand Down Expand Up @@ -98,6 +105,11 @@ jobs:
uses: actions/download-artifact@v2
with:
name: ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}
path: PS2Ident

- name: Prepare PS2Ident archive
run: |
7z a ${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}.7z PS2Ident/*
- name: Download ps2idbms artifact
uses: actions/download-artifact@v2
Expand All @@ -118,7 +130,7 @@ jobs:
automatic_release_tag: "latest"
title: "Development build"
files: |
PS2Ident.elf
${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}.7z
PS2IDBMS.exe
ROMIMG.exe
Expand All @@ -130,6 +142,6 @@ jobs:
prerelease: false
draft: true
files: |
PS2Ident.elf
${{ steps.slug.outputs.REPOSITORY_NAME }}-${{ steps.slug.outputs.sha8 }}.7z
PS2IDBMS.exe
ROMIMG.exe
Binary file modified PS2Ident.db
Binary file not shown.
6 changes: 3 additions & 3 deletions UI.c
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ static void UITransitionSlideRightIn(struct UIMenu *menu, int SelectedOption)
{
int i;

for (i = 15; i > 0; i--)
for (i = 15; i >= 0; i--)
{
UIDrawMenu(menu, i, UI_OFFSET_X + i * 48, UI_OFFSET_Y, SelectedOption);
SyncFlipFB(&UIDrawGlobal);
Expand All @@ -1205,7 +1205,7 @@ static void UITransitionSlideLeftIn(struct UIMenu *menu, int SelectedOption)
{
int i;

for (i = 15; i > 0; i--)
for (i = 15; i >= 0; i--)
{
UIDrawMenu(menu, i, UI_OFFSET_X + -i * 48, UI_OFFSET_Y, SelectedOption);
SyncFlipFB(&UIDrawGlobal);
Expand Down Expand Up @@ -1240,7 +1240,7 @@ static void UITransitionFadeOut(struct UIMenu *menu, int SelectedOption)
rgbaq.b = 0;
rgbaq.q = 0;

for (i = 15; i > 0; i--)
for (i = 15; i >= 0; i--)
{
rgbaq.a = 0x80 - (i * 8);
UIDrawMenu(menu, i, UI_OFFSET_X, UI_OFFSET_Y, SelectedOption);
Expand Down
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2019/08/22
AKuHAK:
* changed versioning
* Fixed bug with Sticker messages
* Reformatted log file
* Attempt to fix gui bug
* Fixed mechacon detection on DTL-H3010x
* Added DSP chip description
* Fixed DVD rom dumping
* Added new EE chip values (for research)

2019/08/22
AKuHAK:
* added SCPH-50003(a) ModelID and Mainboard data from H3X1C (GH-026 I-Chassis)
Expand Down
231 changes: 128 additions & 103 deletions ident.c

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ident.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const char *GetChassisDesc(const struct PS2IDBMainboardEntry *SystemInformation)
const char *GetModelIDDesc(unsigned int id);
const char *GetEMCSIDDesc(unsigned char id);
const char *GetADD010Desc(unsigned short int id);
const char *GetDSPDesc(unsigned char revision);

int GetADD010(u16 address, u16 *word);

Expand Down
Binary file modified lang/NotoSans-Bold.ttf
Binary file not shown.
2 changes: 1 addition & 1 deletion main.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
#define DEBUG_PRINTF(args...)
#endif

#define PS2IDENT_VERSION "0.835"
#define PS2IDENT_VERSION "0.84b"

0 comments on commit 084bd3d

Please sign in to comment.