* 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:
parent
427c868add
commit
1666803e05
|
@ -1,5 +1,7 @@
|
|||
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 - 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 - Cheats: update the window when ROM is changed
|
||||
28-Feb-2013 - AnS - show the number of active cheats when a ROM is loaded
|
||||
|
|
|
@ -42,7 +42,6 @@ void SaveCDLogFile();
|
|||
void SaveStrippedROM(int invert);
|
||||
void CDLoggerROMClosed();
|
||||
void CDLoggerROMChanged();
|
||||
void CDLoggerPPUChanged();
|
||||
bool PauseCDLogging();
|
||||
void StartCDLogging();
|
||||
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_AUTOLOADCDL, autoloadCDL ? BST_CHECKED : BST_UNCHECKED);
|
||||
CheckDlgButton(hCDLogger, IDC_AUTORESUMECDLOGGING, autoresumeCDLogging ? BST_CHECKED : BST_UNCHECKED);
|
||||
CDLoggerPPUChanged();
|
||||
break;
|
||||
case WM_CLOSE:
|
||||
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()
|
||||
{
|
||||
// can't pause while Trace Logger is using
|
||||
|
|
Binary file not shown.
|
@ -57,7 +57,6 @@ extern void CDLoggerROMClosed();
|
|||
extern void CDLoggerROMChanged();
|
||||
extern void ResetDebugStatisticsCounters();
|
||||
extern void SetMainWindowText();
|
||||
extern void CDLoggerPPUChanged();
|
||||
extern bool isTaseditorRecording();
|
||||
|
||||
extern int32 fps_scale;
|
||||
|
@ -135,7 +134,6 @@ void FCEU_TogglePPU(void) {
|
|||
}
|
||||
#ifdef WIN32
|
||||
SetMainWindowText();
|
||||
CDLoggerPPUChanged();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue