mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-08 23:01:02 +01:00
finalize 3.2.8
This commit is contained in:
parent
f35be78cc5
commit
330c9f46a5
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name>FCE Ultra GX</name>
|
||||
<coder>Tantric</coder>
|
||||
<version>3.2.7</version>
|
||||
<release_date>20120114</release_date>
|
||||
<version>3.2.8</version>
|
||||
<release_date>20120123</release_date>
|
||||
<short_description>Nintendo Emulator</short_description>
|
||||
<long_description>A port of FCE Ultra to the Wii.</long_description>
|
||||
<no_ios_reload/>
|
||||
|
@ -33,6 +33,10 @@ Wii/GameCube.
|
||||
|0O×øo· UPDATE HISTORY ·oø×O0|
|
||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||
|
||||
[3.2.8 - January 23, 2012]
|
||||
|
||||
* Fixed bug with flipping disk sides for FDS
|
||||
|
||||
[3.2.7 - January 14, 2012]
|
||||
|
||||
* Updated core to latest FCEUX (r2383)
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "fceultra/driver.h"
|
||||
|
||||
#define APPNAME "FCE Ultra GX"
|
||||
#define APPVERSION "3.2.7"
|
||||
#define APPVERSION "3.2.8"
|
||||
#define APPFOLDER "fceugx"
|
||||
#define PREF_FILE_NAME "settings.xml"
|
||||
|
||||
|
@ -844,6 +844,7 @@ FCEUS FSettings;
|
||||
|
||||
void FCEU_printf(char *format, ...)
|
||||
{
|
||||
#ifndef GEKKO
|
||||
char temp[2048];
|
||||
|
||||
va_list ap;
|
||||
@ -853,10 +854,12 @@ void FCEU_printf(char *format, ...)
|
||||
FCEUD_Message(temp);
|
||||
|
||||
va_end(ap);
|
||||
#endif
|
||||
}
|
||||
|
||||
void FCEU_PrintError(char *format, ...)
|
||||
{
|
||||
#ifndef GEKKO
|
||||
char temp[2048];
|
||||
|
||||
va_list ap;
|
||||
@ -866,6 +869,7 @@ void FCEU_PrintError(char *format, ...)
|
||||
FCEUD_PrintError(temp);
|
||||
|
||||
va_end(ap);
|
||||
#endif
|
||||
}
|
||||
|
||||
void FCEUI_SetRenderedLines(int ntscf, int ntscl, int palf, int pall)
|
||||
|
@ -454,11 +454,13 @@ void FCEU_DispMessage(char *format, int disppos=0, ...)
|
||||
|
||||
va_start(ap,disppos);
|
||||
vsnprintf(guiMessage.errmsg,sizeof(guiMessage.errmsg),format,ap);
|
||||
#ifndef GEKKO
|
||||
// also log messages
|
||||
char temp[2048];
|
||||
vsnprintf(temp,sizeof(temp),format,ap);
|
||||
strcat(temp, "\n");
|
||||
FCEU_printf(temp);
|
||||
#endif
|
||||
va_end(ap);
|
||||
|
||||
guiMessage.howlong = 180;
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<app version="3.2.7">
|
||||
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.2.7.zip"></file>
|
||||
<app version="3.2.8">
|
||||
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.2.8.zip"></file>
|
||||
</app>
|
||||
|
Loading…
Reference in New Issue
Block a user