* CDLogger: removed "Enable New PPU" note, because Old PPU is now functional as well

* updated docs

[[Split portion of a mixed commit.]]
This commit is contained in:
ansstuff 2013-03-10 20:14:13 +00:00
parent 427c868add
commit 1666803e05
5 changed files with 2 additions and 12 deletions

View File

@ -1,5 +1,7 @@
10-Mar-2013 - prg - SDL: added option to use system minizip 10-Mar-2013 - prg - SDL: added option to use system minizip
10-Mar-2013 - prg - updated to use minizip v1.2.7 10-Mar-2013 - prg - updated to use minizip v1.2.7
10-Mar-2013 - CaH4e3 - CDLogger: improved CHR logging, now it also logs the data when using Old PPU
02-Mar-2013 - AnS - Hexeditor: fixed ROM coloring when using CDLogger data
28-Feb-2013 - AnS - PPU/PAL/Input type changing is now disabled when a movie is playing 28-Feb-2013 - AnS - PPU/PAL/Input type changing is now disabled when a movie is playing
28-Feb-2013 - AnS - Cheats: update the window when ROM is changed 28-Feb-2013 - AnS - Cheats: update the window when ROM is changed
28-Feb-2013 - AnS - show the number of active cheats when a ROM is loaded 28-Feb-2013 - AnS - show the number of active cheats when a ROM is loaded

View File

@ -42,7 +42,6 @@ void SaveCDLogFile();
void SaveStrippedROM(int invert); void SaveStrippedROM(int invert);
void CDLoggerROMClosed(); void CDLoggerROMClosed();
void CDLoggerROMChanged(); void CDLoggerROMChanged();
void CDLoggerPPUChanged();
bool PauseCDLogging(); bool PauseCDLogging();
void StartCDLogging(); void StartCDLogging();
void FreeCDLog(); void FreeCDLog();
@ -136,7 +135,6 @@ BOOL CALLBACK CDLoggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
CheckDlgButton(hCDLogger, IDC_AUTOSAVECDL, autosaveCDL ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(hCDLogger, IDC_AUTOSAVECDL, autosaveCDL ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hCDLogger, IDC_AUTOLOADCDL, autoloadCDL ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(hCDLogger, IDC_AUTOLOADCDL, autoloadCDL ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hCDLogger, IDC_AUTORESUMECDLOGGING, autoresumeCDLogging ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(hCDLogger, IDC_AUTORESUMECDLOGGING, autoresumeCDLogging ? BST_CHECKED : BST_UNCHECKED);
CDLoggerPPUChanged();
break; break;
case WM_CLOSE: case WM_CLOSE:
case WM_QUIT: case WM_QUIT:
@ -524,14 +522,6 @@ void CDLoggerROMChanged()
} }
} }
void CDLoggerPPUChanged()
{
if (newppu)
SetDlgItemText(hCDLogger, ID_CHR1, "CHR Rendered");
else
SetDlgItemText(hCDLogger, ID_CHR1, "!!! Enable NewPPU !!!");
}
bool PauseCDLogging() bool PauseCDLogging()
{ {
// can't pause while Trace Logger is using // can't pause while Trace Logger is using

Binary file not shown.

View File

@ -57,7 +57,6 @@ extern void CDLoggerROMClosed();
extern void CDLoggerROMChanged(); extern void CDLoggerROMChanged();
extern void ResetDebugStatisticsCounters(); extern void ResetDebugStatisticsCounters();
extern void SetMainWindowText(); extern void SetMainWindowText();
extern void CDLoggerPPUChanged();
extern bool isTaseditorRecording(); extern bool isTaseditorRecording();
extern int32 fps_scale; extern int32 fps_scale;
@ -135,7 +134,6 @@ void FCEU_TogglePPU(void) {
} }
#ifdef WIN32 #ifdef WIN32
SetMainWindowText(); SetMainWindowText();
CDLoggerPPUChanged();
#endif #endif
} }

Binary file not shown.