Skip to content

Commit

Permalink
Version 4.4 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
wavemotion-dave committed Nov 14, 2022
1 parent 5907e92 commit b172b7d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
Binary file modified A7800DS.nds
Binary file not shown.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=4.3b
VERSION=4.4
TARGNAME=A7800DS

#---------------------------------------------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ Updates by wavemotion-dave: https://github.com/wavemotion-dave/A7800DS
--------------------------------------------------------------------------------
History :
--------------------------------------------------------------------------------
V4.4 : 14-Nov-2022 by wavemotion-dave
* New palette options from the Trebor 'Pro Pack' of colors. COOL, WARM (default), and HOT allow you to shift the color temperature slightly on a per-game basis.
* Improved sound channel mixing so as not to halve the volume when mixing POKEY + TIA.

V4.3 : 11-Nov-2022 by wavemotion-dave
* Full support for the new Banksets scheme including the upcoming Attack of the Petscii Robots game!
* Added the stable "illegal" opcode support for the 6502 CPU to ensure all games run properly.
Expand Down
Binary file modified arm9/gfx/pdev_bg0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion arm9/source/emu/Palette.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ byte palette_data[PALETTE_SIZE] = {
// Load
// ----------------------------------------------------------------------------
void palette_Load(const byte* data) {
uint index;
u16 index;
for(index = 0; index < PALETTE_SIZE; index++) {
palette_data[index] = data[index];
}
Expand Down

0 comments on commit b172b7d

Please sign in to comment.