Update of /cvsroot/vba/VisualBoyAdvance/src/win32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6086
Modified Files:
Logging.cpp
Log Message:
- Logging.cpp : corrected a small bug in onInitDialog (m_agbprint was wrongly checked against m_undefined's systemVerbose flag).
Index: Logging.cpp
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Logging.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Logging.cpp 13 May 2004 15:06:50 -0000 1.5
--- Logging.cpp 5 Jan 2006 14:55:31 -0000 1.6
***************
*** 1,5 ****
// VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.
// Copyright (C) 1999-2003 Forgotten
! // Copyright (C) 2004 Forgotten and the VBA development team
// This program is free software; you can redistribute it and/or modify
--- 1,5 ----
// VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.
// Copyright (C) 1999-2003 Forgotten
! // Copyright (C) 2005 Forgotten and the VBA development team
// This program is free software; you can redistribute it and/or modify
***************
*** 226,230 ****
m_dma3 = (systemVerbose & 128) != 0;
m_undefined = (systemVerbose & 256) != 0;
! m_agbprint = (systemVerbose & 256) != 0;
UpdateData(FALSE);
--- 226,230 ----
m_dma3 = (systemVerbose & 128) != 0;
m_undefined = (systemVerbose & 256) != 0;
! m_agbprint = (systemVerbose & 512) != 0;
UpdateData(FALSE);
|