mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 18:49:18 +01:00
finalize 2.1.8
This commit is contained in:
parent
64dde0c18b
commit
674d5ddfff
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name>Visual Boy Advance GX</name>
|
<name>Visual Boy Advance GX</name>
|
||||||
<coder>Tantric</coder>
|
<coder>Tantric</coder>
|
||||||
<version>2.1.7</version>
|
<version>2.1.8</version>
|
||||||
<release_date>20100620</release_date>
|
<release_date>20100714</release_date>
|
||||||
<short_description>GBA/GBC/GB Emulator</short_description>
|
<short_description>GBA/GBC/GB Emulator</short_description>
|
||||||
<long_description>A port of Visual Boy Advance - M to the Wii.</long_description>
|
<long_description>A port of Visual Boy Advance - M to the Wii.</long_description>
|
||||||
</app>
|
</app>
|
||||||
|
11
readme.txt
11
readme.txt
@ -1,7 +1,7 @@
|
|||||||
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
||||||
|
|
||||||
- Visual Boy Advance GX -
|
- Visual Boy Advance GX -
|
||||||
Version 2.1.7
|
Version 2.1.8
|
||||||
http://code.google.com/p/vba-wii
|
http://code.google.com/p/vba-wii
|
||||||
(Under GPL License)
|
(Under GPL License)
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|
|||||||
* IPS/UPS/PPF patch support
|
* IPS/UPS/PPF patch support
|
||||||
* Custom controller configurations
|
* Custom controller configurations
|
||||||
* SD, USB, DVD, SMB, Zip, and 7z support
|
* SD, USB, DVD, SMB, Zip, and 7z support
|
||||||
* Compatiblity based on VBA-M r927
|
* Compatibility based on VBA-M r927
|
||||||
* MEM2 ROM Storage for fast access
|
* MEM2 ROM Storage for fast access
|
||||||
* Auto frame skip for those core heavy games
|
* Auto frame skip for those core heavy games
|
||||||
* Turbo speed, video zooming, widescreen, and unfiltered video options
|
* Turbo speed, video zooming, widescreen, and unfiltered video options
|
||||||
@ -28,6 +28,13 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|
|||||||
|0O×øo· UPDATE HISTORY ·oø×O0|
|
|0O×øo· UPDATE HISTORY ·oø×O0|
|
||||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||||
|
|
||||||
|
[2.1.8 - July 14, 2010]
|
||||||
|
|
||||||
|
* Ability to use both USB ports (requires updated IOS 202 - WARNING: older
|
||||||
|
versions of IOS 202 are NO LONGER supported)
|
||||||
|
* Hide non-ROM files
|
||||||
|
* Other minor improvements
|
||||||
|
|
||||||
[2.1.7 - June 20, 2010]
|
[2.1.7 - June 20, 2010]
|
||||||
|
|
||||||
* USB improvements
|
* USB improvements
|
||||||
|
@ -529,11 +529,11 @@ bool ParseDirEntries()
|
|||||||
if(ext == NULL)
|
if(ext == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if( stricmp(p, "agb") != 0 && stricmp(p, "gba") != 0 &&
|
if( stricmp(ext, "agb") != 0 && stricmp(ext, "gba") != 0 &&
|
||||||
stricmp(p, "bin") != 0 && stricmp(p, "elf") != 0 &&
|
stricmp(ext, "bin") != 0 && stricmp(ext, "elf") != 0 &&
|
||||||
stricmp(p, "mb") != 0 && stricmp(p, "dmg") != 0 &&
|
stricmp(ext, "mb") != 0 && stricmp(ext, "dmg") != 0 &&
|
||||||
stricmp(p, "gb") != 0 && stricmp(p, "gbc") != 0 &&
|
stricmp(ext, "gb") != 0 && stricmp(ext, "gbc") != 0 &&
|
||||||
stricmp(p, "cgb") != 0 && stricmp(p, "sgb") != 0 &&
|
stricmp(ext, "cgb") != 0 && stricmp(ext, "sgb") != 0 &&
|
||||||
stricmp(ext, "zip") != 0 && stricmp(ext, "7z") != 0)
|
stricmp(ext, "zip") != 0 && stricmp(ext, "7z") != 0)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include "utils/FreeTypeGX.h"
|
#include "utils/FreeTypeGX.h"
|
||||||
|
|
||||||
#define APPNAME "Visual Boy Advance GX"
|
#define APPNAME "Visual Boy Advance GX"
|
||||||
#define APPVERSION "2.1.7"
|
#define APPVERSION "2.1.8"
|
||||||
#define APPFOLDER "vbagx"
|
#define APPFOLDER "vbagx"
|
||||||
#define PREF_FILE_NAME "settings.xml"
|
#define PREF_FILE_NAME "settings.xml"
|
||||||
#define PAL_FILE_NAME "palettes.xml"
|
#define PAL_FILE_NAME "palettes.xml"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="2.1.7">
|
<app version="2.1.8">
|
||||||
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.1.7.zip"></file>
|
<file url="http://vba-wii.googlecode.com/files/Visual%20Boy%20Advance%20GX%202.1.8.zip"></file>
|
||||||
</app>
|
</app>
|
||||||
|
Loading…
Reference in New Issue
Block a user