Skip to content

Commit

Permalink
finalize 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Oct 7, 2009
1 parent c8f6ee1 commit 46efa8c
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
Binary file added hbc/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions hbc/meta.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Visual Boy Advance GX</name>
<coder>Tantric</coder>
<version>2.0.8</version>
<release_date>20091007</release_date>
<short_description>GBA/GBC/GB Emulator</short_description>
<long_description>A port of Visual Boy Advance - M to the Wii.</long_description>
</app>
10 changes: 9 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,��

- Visual Boy Advance GX -
Version 2.0.7
Version 2.0.8
http://code.google.com/p/vba-wii
(Under GPL License)

Expand All @@ -28,6 +28,14 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|0O��o� UPDATE HISTORY �o��O0|
`������� ���������������� ��������������� �������������������� �������������'

[2.0.8 - October 7, 2009]

* Revamped filebrowser and file I/O
* Fixed MBC2 saving/loading
* Fixed some GB-Z80 instructions
* DVD loading in GameCube should work now (untested and unsupported)
* Many, many other bug fixes

[2.0.7 - September 16, 2009]

* Text rendering corrections
Expand Down
3 changes: 2 additions & 1 deletion source/ngc/preferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ decodePrefsData ()
result = false;
else if(verMajor < 2) // less than version 2.0.0
result = false; // reset settings (sorry, should update settings instead)
else if(verMajor > curMajor || verMinor > curMinor || verPoint > curPoint) // some future version
else if((verMajor*100 + verMinor*10 + verPoint) >
(curMajor*100 + curMinor*10 + curPoint)) // some future version
result = false; // reset settings
else
result = true;
Expand Down
2 changes: 1 addition & 1 deletion source/ngc/vba.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "filelist.h"

#define APPNAME "Visual Boy Advance GX"
#define APPVERSION "2.0.7"
#define APPVERSION "2.0.8"
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"
Expand Down
4 changes: 2 additions & 2 deletions update.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="2.0.7">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.0.7%20-%20Wii.zip"></file>
<app version="2.0.8">
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.0.8%20-%20Wii.zip"></file>
</app>

0 comments on commit 46efa8c

Please sign in to comment.