You can subscribe to this list here.
2004 |
Jan
(17) |
Feb
(38) |
Mar
(24) |
Apr
(18) |
May
(75) |
Jun
(2) |
Jul
|
Aug
|
Sep
(21) |
Oct
(3) |
Nov
(19) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(15) |
Jul
(2) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
(8) |
Feb
|
Mar
|
Apr
(6) |
May
(73) |
Jun
(57) |
Jul
(12) |
Aug
(68) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
From: S?bastien G. <kx...@us...> - 2004-05-13 22:57:23
|
Update of /cvsroot/vba/VisualBoyAdvance/src/sdl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3246/src/sdl Modified Files: Makefile.am Log Message: Fixed building dependencies. Index: Makefile.am =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 29 Mar 2004 22:08:40 -0000 1.1 --- Makefile.am 13 May 2004 22:57:10 -0000 1.2 *************** *** 78,81 **** --- 78,83 ---- VisualBoyAdvance_LDADD = @VBA_LIBS@ @SDL_LIBS@ + VisualBoyAdvance_DEPENDENCIES = libgba.a @VBA_LIBS@ + TestEmu_SOURCES = \ TestEmu.cpp \ |
From: S?bastien G. <kx...@us...> - 2004-05-13 22:57:23
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3246/src/gtk Modified Files: Makefile.am Makefile.in Log Message: Fixed building dependencies. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/Makefile.in,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile.in 12 May 2004 01:07:06 -0000 1.7 --- Makefile.in 13 May 2004 22:57:09 -0000 1.8 *************** *** 184,187 **** --- 184,189 ---- gvba_LDADD = libgba.a @VBA_LIBS@ @GTKMM_LIBS@ @LIBINTL@ @SDL_LIBS@ + gvba_DEPENDENCIES = libgba.a @VBA_LIBS@ + gvba_CPPFLAGS = \ -DPKGDATADIR=\"$(pkgdatadir)\" \ *************** *** 300,304 **** gvba-windowcallbacks.$(OBJEXT) gvba-window.$(OBJEXT) gvba_OBJECTS = $(am_gvba_OBJECTS) - gvba_DEPENDENCIES = libgba.a gvba_LDFLAGS = --- 302,305 ---- Index: Makefile.am =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile.am 12 May 2004 01:07:06 -0000 1.7 --- Makefile.am 13 May 2004 22:57:09 -0000 1.8 *************** *** 29,32 **** --- 29,34 ---- gvba_LDADD = libgba.a @VBA_LIBS@ @GTKMM_LIBS@ @LIBINTL@ @SDL_LIBS@ + gvba_DEPENDENCIES = libgba.a @VBA_LIBS@ + gvba_CPPFLAGS = \ -DPKGDATADIR=\"$(pkgdatadir)\" \ |
From: S?bastien G. <kx...@us...> - 2004-05-13 22:35:45
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31355 Modified Files: remote.cpp Log Message: Fixed a VC6 warning. Index: remote.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/remote.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** remote.cpp 13 May 2004 15:06:45 -0000 1.6 --- remote.cpp 13 May 2004 22:35:36 -0000 1.7 *************** *** 441,445 **** } ! void remoteWriteWatch(char *p, int type) { u32 address; --- 441,445 ---- } ! void remoteWriteWatch(char *p, bool active) { u32 address; *************** *** 471,477 **** for(int i = 0; i < count; i++) { if((address >> 24) == 2) ! freezeWorkRAM[address & 0x3ffff] = type; else ! freezeInternalRAM[address & 0x7fff] = type; address++; } --- 471,477 ---- for(int i = 0; i < count; i++) { if((address >> 24) == 2) ! freezeWorkRAM[address & 0x3ffff] = active; else ! freezeInternalRAM[address & 0x7fff] = active; address++; } *************** *** 664,668 **** case 'Z': if(*p++ == '2') { ! remoteWriteWatch(p,1); } else remotePutPacket(""); --- 664,668 ---- case 'Z': if(*p++ == '2') { ! remoteWriteWatch(p, true); } else remotePutPacket(""); *************** *** 670,674 **** case 'z': if(*p++ == '2') { ! remoteWriteWatch(p,0); } else remotePutPacket(""); --- 670,674 ---- case 'z': if(*p++ == '2') { ! remoteWriteWatch(p, false); } else remotePutPacket(""); |
From: S?bastien G. <kx...@us...> - 2004-05-13 22:33:55
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31022/gb Modified Files: GB.cpp Log Message: Removed unused vars. Index: GB.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/GB.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** GB.cpp 13 May 2004 15:06:46 -0000 1.19 --- GB.cpp 13 May 2004 22:33:46 -0000 1.20 *************** *** 2768,2772 **** gbFrameCount = 0; } ! u32 joy = 0; if(systemReadJoypads()) { // read joystick --- 2768,2772 ---- gbFrameCount = 0; } ! if(systemReadJoypads()) { // read joystick |
From: S?bastien G. <kx...@us...> - 2004-05-13 22:33:54
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31022 Modified Files: Mode5.cpp Log Message: Removed unused vars. Index: Mode5.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode5.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Mode5.cpp 13 May 2004 15:06:44 -0000 1.5 --- Mode5.cpp 13 May 2004 22:33:46 -0000 1.6 *************** *** 266,274 **** } - int x00 = WIN0H >> 8; - int x01 = WIN0H & 255; - int x10 = WIN1H >> 8; - int x11 = WIN1H & 255; - u8 inWin0Mask = WININ & 0xFF; u8 inWin1Mask = WININ >> 8; --- 266,269 ---- |
From: S?bastien G. <kx...@us...> - 2004-05-13 22:30:40
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30687 Modified Files: gbSGB.cpp Log Message: Fixed a typo. Index: gbSGB.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbSGB.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gbSGB.cpp 13 May 2004 15:06:46 -0000 1.10 --- gbSGB.cpp 13 May 2004 22:30:30 -0000 1.11 *************** *** 258,262 **** if(!color) c = gbPalette[0]; ! if((yy < 40 || yy >= 284) || (xx < 48 || xx >= 208)) { switch(systemColorDepth) { case 16: --- 258,262 ---- if(!color) c = gbPalette[0]; ! if((yy < 40 || yy >= 184) || (xx < 48 || xx >= 208)) { switch(systemColorDepth) { case 16: |
Update of /cvsroot/vba/VisualBoyAdvance/src/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515/win32 Modified Files: AVIWrite.cpp AVIWrite.h AboutDialog.cpp AboutDialog.h AccelEditor.cpp AccelEditor.h Associate.cpp Associate.h BitmapControl.cpp BitmapControl.h BugReport.cpp BugReport.h ColorButton.cpp ColorButton.h ColorControl.cpp ColorControl.h Commands.cpp Direct3D.cpp DirectDraw.cpp DirectInput.cpp DirectSound.cpp Directories.cpp Directories.h Disassemble.cpp Disassemble.h Display.h ExportGSASnapshot.cpp ExportGSASnapshot.h FileDlg.cpp FileDlg.h GBACheats.cpp GBACheats.h GBCheatsDlg.cpp GBCheatsDlg.h GBColorDlg.cpp GBColorDlg.h GBDisassemble.cpp GBDisassemble.h GBMapView.cpp GBMapView.h GBMemoryViewerDlg.cpp GBMemoryViewerDlg.h GBOamView.cpp GBOamView.h GBPaletteView.cpp GBPaletteView.h GBPrinterDlg.cpp GBPrinterDlg.h GBTileView.cpp GBTileView.h GDBConnection.cpp GDBConnection.h GDIDisplay.cpp GSACodeSelect.cpp GSACodeSelect.h Hyperlink.cpp Hyperlink.h IOViewer.cpp IOViewer.h IOViewerRegs.h IUpdate.h Input.h Joypad.cpp Joypad.h LangSelect.cpp LangSelect.h Logging.cpp Logging.h MainWnd.cpp MainWnd.h MainWndCheats.cpp MainWndFile.cpp MainWndHelp.cpp MainWndOptions.cpp MainWndTools.cpp MapView.cpp MapView.h MaxScale.cpp MaxScale.h MemoryViewer.cpp MemoryViewer.h MemoryViewerAddressSize.cpp MemoryViewerAddressSize.h MemoryViewerDlg.cpp MemoryViewerDlg.h ModeConfirm.cpp ModeConfirm.h OamView.cpp OamView.h OpenGL.cpp PaletteView.cpp PaletteView.h PaletteViewControl.cpp PaletteViewControl.h Reg.cpp Reg.h ResizeDlg.h RewindInterval.cpp RewindInterval.h RomInfo.cpp RomInfo.h Sound.h StringTokenizer.cpp StringTokenizer.h Throttle.cpp Throttle.h TileView.cpp TileView.h VBA.cpp VBA.h VideoMode.cpp VideoMode.h WavWriter.cpp WavWriter.h WinResUtil.cpp WinResUtil.h ZoomControl.cpp ZoomControl.h skinButton.cpp skinButton.h stdafx.cpp stdafx.h Log Message: Updated the copyright notice to 2004. Index: OamView.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/OamView.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OamView.h 4 Nov 2003 14:09:52 -0000 1.1 --- OamView.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_OAMVIEW_H__E5369352_80F8_49C4_9F23_05EB6FC1345B__INCLUDED_) #define AFX_OAMVIEW_H__E5369352_80F8_49C4_9F23_05EB6FC1345B__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_OAMVIEW_H__E5369352_80F8_49C4_9F23_05EB6FC1345B__INCLUDED_) #define AFX_OAMVIEW_H__E5369352_80F8_49C4_9F23_05EB6FC1345B__INCLUDED_ Index: ZoomControl.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/ZoomControl.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ZoomControl.cpp 18 Apr 2004 16:21:59 -0000 1.4 --- ZoomControl.cpp 13 May 2004 15:06:55 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // ZoomControl.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // ZoomControl.cpp : implementation file // Index: ZoomControl.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/ZoomControl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ZoomControl.h 4 Nov 2003 14:09:53 -0000 1.1 --- ZoomControl.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_ZOOMCONTROL_H__BC193230_D2D6_4240_93AE_28C2EF2C641A__INCLUDED_) #define AFX_ZOOMCONTROL_H__BC193230_D2D6_4240_93AE_28C2EF2C641A__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_ZOOMCONTROL_H__BC193230_D2D6_4240_93AE_28C2EF2C641A__INCLUDED_) #define AFX_ZOOMCONTROL_H__BC193230_D2D6_4240_93AE_28C2EF2C641A__INCLUDED_ Index: Input.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Input.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Input.h 4 Nov 2003 14:09:52 -0000 1.1 --- Input.h 13 May 2004 15:06:50 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_WIN32_INPUT_H #define VBA_WIN32_INPUT_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_WIN32_INPUT_H #define VBA_WIN32_INPUT_H Index: ColorControl.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/ColorControl.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ColorControl.cpp 18 Apr 2004 16:21:59 -0000 1.2 --- ColorControl.cpp 13 May 2004 15:06:49 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // ColorControl.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // ColorControl.cpp : implementation file // Index: MapView.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MapView.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MapView.h 4 Nov 2003 14:09:52 -0000 1.1 --- MapView.h 13 May 2004 15:06:54 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_MAPVIEW_H__20F40C77_8E10_44B7_BB49_7865F73C3E75__INCLUDED_) #define AFX_MAPVIEW_H__20F40C77_8E10_44B7_BB49_7865F73C3E75__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_MAPVIEW_H__20F40C77_8E10_44B7_BB49_7865F73C3E75__INCLUDED_) #define AFX_MAPVIEW_H__20F40C77_8E10_44B7_BB49_7865F73C3E75__INCLUDED_ Index: MemoryViewer.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MemoryViewer.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MemoryViewer.h 4 Nov 2003 14:09:52 -0000 1.2 --- MemoryViewer.h 13 May 2004 15:06:55 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_MEMORYVIEWER_H__52C50474_5399_4D0B_A3E4_4C52C4E0EAA0__INCLUDED_) #define AFX_MEMORYVIEWER_H__52C50474_5399_4D0B_A3E4_4C52C4E0EAA0__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_MEMORYVIEWER_H__52C50474_5399_4D0B_A3E4_4C52C4E0EAA0__INCLUDED_) #define AFX_MEMORYVIEWER_H__52C50474_5399_4D0B_A3E4_4C52C4E0EAA0__INCLUDED_ Index: GBColorDlg.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/GBColorDlg.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GBColorDlg.h 4 Nov 2003 14:09:52 -0000 1.1 --- GBColorDlg.h 13 May 2004 15:06:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_) #define AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_) #define AFX_GBCOLORDLG_H__8D6126EF_06BB_48CF_ABB3_2CC4B1B60358__INCLUDED_ Index: Reg.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Reg.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Reg.cpp 4 Nov 2003 14:09:52 -0000 1.6 --- Reg.cpp 13 May 2004 15:06:55 -0000 1.7 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "stdafx.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "stdafx.h" Index: AccelEditor.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/AccelEditor.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AccelEditor.h 4 Nov 2003 14:09:51 -0000 1.2 --- AccelEditor.h 13 May 2004 15:06:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + // -*- C++ -*- + // 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 + // it under the terms of the GNU General Public License as published by + // the Free Software Foundation; either version 2, or(at your option) + // any later version. + // + // This program is distributed in the hope that it will be useful, + // but WITHOUT ANY WARRANTY; without even the implied warranty of + // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + // GNU General Public License for more details. + // + // You should have received a copy of the GNU General Public License + // along with this program; if not, write to the Free Software Foundation, + // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #if !defined(AFX_ACCELEDITOR_H__66F5C854_E28E_40D1_B763_1850374B46A2__INCLUDED_) #define AFX_ACCELEDITOR_H__66F5C854_E28E_40D1_B763_1850374B46A2__INCLUDED_ Index: WavWriter.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/WavWriter.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WavWriter.cpp 4 Nov 2003 14:09:53 -0000 1.1 --- WavWriter.cpp 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // WavWriter.cpp: implementation of the WavWriter class. // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // WavWriter.cpp: implementation of the WavWriter class. // Index: MemoryViewerDlg.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MemoryViewerDlg.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MemoryViewerDlg.h 4 Nov 2003 14:09:52 -0000 1.1 --- MemoryViewerDlg.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_MEMORYVIEWERDLG_H__15046D5B_D5A2_4C49_A969_2A77F803F2F1__INCLUDED_) #define AFX_MEMORYVIEWERDLG_H__15046D5B_D5A2_4C49_A969_2A77F803F2F1__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_MEMORYVIEWERDLG_H__15046D5B_D5A2_4C49_A969_2A77F803F2F1__INCLUDED_) #define AFX_MEMORYVIEWERDLG_H__15046D5B_D5A2_4C49_A969_2A77F803F2F1__INCLUDED_ Index: MemoryViewerAddressSize.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/MemoryViewerAddressSize.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MemoryViewerAddressSize.h 4 Nov 2003 14:09:52 -0000 1.1 --- MemoryViewerAddressSize.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_) #define AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_) #define AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_ Index: Display.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Display.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Display.h 7 Apr 2003 12:40:51 -0000 1.1 --- Display.h 13 May 2004 15:06:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ enum DISPLAY_TYPE { GDI = 0, --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! enum DISPLAY_TYPE { GDI = 0, Index: PaletteView.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/PaletteView.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PaletteView.h 4 Nov 2003 14:09:52 -0000 1.2 --- PaletteView.h 13 May 2004 15:06:55 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_PALETTEVIEW1_H__0873E3FF_9486_4B2C_8EF0_59C3B4F47162__INCLUDED_) #define AFX_PALETTEVIEW1_H__0873E3FF_9486_4B2C_8EF0_59C3B4F47162__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_PALETTEVIEW1_H__0873E3FF_9486_4B2C_8EF0_59C3B4F47162__INCLUDED_) #define AFX_PALETTEVIEW1_H__0873E3FF_9486_4B2C_8EF0_59C3B4F47162__INCLUDED_ Index: LangSelect.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/LangSelect.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LangSelect.cpp 4 Nov 2003 14:09:52 -0000 1.2 --- LangSelect.cpp 13 May 2004 15:06:50 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // LangSelect.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // LangSelect.cpp : implementation file // Index: RomInfo.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/RomInfo.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RomInfo.cpp 4 Nov 2003 14:09:52 -0000 1.3 --- RomInfo.cpp 13 May 2004 15:06:55 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // RomInfo.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // RomInfo.cpp : implementation file // Index: PaletteViewControl.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/PaletteViewControl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PaletteViewControl.h 4 Nov 2003 14:09:52 -0000 1.1 --- PaletteViewControl.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_PALETTEVIEWCONTROL_H__31F600AE_B7E5_4F6C_80B6_55E4B61FBD57__INCLUDED_) #define AFX_PALETTEVIEWCONTROL_H__31F600AE_B7E5_4F6C_80B6_55E4B61FBD57__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_PALETTEVIEWCONTROL_H__31F600AE_B7E5_4F6C_80B6_55E4B61FBD57__INCLUDED_) #define AFX_PALETTEVIEWCONTROL_H__31F600AE_B7E5_4F6C_80B6_55E4B61FBD57__INCLUDED_ Index: ColorButton.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/ColorButton.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ColorButton.h 4 Nov 2003 14:09:52 -0000 1.1 --- ColorButton.h 13 May 2004 15:06:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_COLORBUTTON_H__DF02109B_B91C_49FD_954F_74A48B83C314__INCLUDED_) #define AFX_COLORBUTTON_H__DF02109B_B91C_49FD_954F_74A48B83C314__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_COLORBUTTON_H__DF02109B_B91C_49FD_954F_74A48B83C314__INCLUDED_) #define AFX_COLORBUTTON_H__DF02109B_B91C_49FD_954F_74A48B83C314__INCLUDED_ Index: Throttle.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Throttle.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Throttle.cpp 4 Nov 2003 14:09:53 -0000 1.2 --- Throttle.cpp 13 May 2004 15:06:55 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // Throttle.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // Throttle.cpp : implementation file // Index: Logging.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Logging.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Logging.cpp 20 Nov 2003 02:40:58 -0000 1.4 --- Logging.cpp 13 May 2004 15:06:50 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // Logging.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // Logging.cpp : implementation file // Index: IOViewer.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/IOViewer.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IOViewer.cpp 4 Nov 2003 14:09:52 -0000 1.1 --- IOViewer.cpp 13 May 2004 15:06:50 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // IOViewer.cpp : implementation file // --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // IOViewer.cpp : implementation file // Index: Reg.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/Reg.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Reg.h 4 Nov 2003 14:09:52 -0000 1.4 --- Reg.h 13 May 2004 15:06:55 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_REG_H #define VBA_REG_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_REG_H #define VBA_REG_H Index: ModeConfirm.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/ModeConfirm.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ModeConfirm.h 4 Nov 2003 14:09:52 -0000 1.1 --- ModeConfirm.h 13 May 2004 15:06:55 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #if !defined(AFX_MODECONFIRM_H__AF9F877E_6EDF_4523_95C9_1C745ABBA796__INCLUDED_) #define AFX_MODECONFIRM_H__AF9F877E_6EDF_4523_95C9_1C745ABBA796__INCLUDED_ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #if !defined(AFX_MODECONFIRM_H__AF9F877E_6EDF_4523_95C9_1C745ABBA796__INCLUDED_) #define AFX_MODECONFIRM_H__AF9F877E_6EDF_4523_95C9_1C745ABBA796__INCLUDED_ Index: DirectDraw.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/DirectDraw.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DirectDraw.cpp 20 Jan 2004 11:46:17 -0000 1.5 --- DirectDraw.cpp 13 May 2004 15:06:49 -0000 1.6 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "stdafx.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "stdafx.h" Index: PaletteViewControl.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/PaletteViewControl.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PaletteViewControl.cpp 18 Apr 2004 16:21:59 -0000 1.3 --- PaletteViewControl.cpp 13 May 2004 15:06:55 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 199... [truncated message content] |
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515 Modified Files: AutoBuild.h CheatSearch.cpp CheatSearch.h Cheats.cpp Cheats.h EEprom.cpp EEprom.h Flash.cpp Flash.h GBA.cpp GBA.h GBAinline.h Gfx.cpp Gfx.h Globals.cpp Globals.h Mode0.cpp Mode1.cpp Mode2.cpp Mode3.cpp Mode4.cpp Mode5.cpp NLS.h Port.h RTC.cpp RTC.h Sound.cpp Sound.h Sram.cpp Sram.h System.h Text.h Util.cpp Util.h agbprint.cpp agbprint.h arm-new.h armdis.cpp armdis.h bilinear.cpp bios.cpp bios.h elf.cpp elf.h exprNode.cpp exprNode.h interframe.cpp motionblur.cpp pixel.cpp remote.cpp scanline.cpp simple2x.cpp thumb.h unzip.cpp unzip.h Log Message: Updated the copyright notice to 2004. Index: interframe.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/interframe.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** interframe.cpp 4 Nov 2003 14:11:52 -0000 1.7 --- interframe.cpp 13 May 2004 15:06:45 -0000 1.8 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "System.h" #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "System.h" #include <stdlib.h> Index: elf.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** elf.h 4 Nov 2003 14:11:52 -0000 1.3 --- elf.h 13 May 2004 15:06:45 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_ELF_H #define VBA_ELF_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_ELF_H #define VBA_ELF_H Index: thumb.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/thumb.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** thumb.h 20 Mar 2004 00:18:34 -0000 1.10 --- thumb.h 13 May 2004 15:06:45 -0000 1.11 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifdef C_CORE #define NEG(i) ((i) >> 31) --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifdef C_CORE #define NEG(i) ((i) >> 31) Index: agbprint.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/agbprint.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** agbprint.cpp 9 Aug 2003 11:41:50 -0000 1.2 --- agbprint.cpp 13 May 2004 15:06:44 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <string.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <string.h> Index: elf.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** elf.cpp 5 May 2004 16:01:11 -0000 1.17 --- elf.cpp 13 May 2004 15:06:45 -0000 1.18 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <stdlib.h> Index: motionblur.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/motionblur.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** motionblur.cpp 26 Jan 2004 02:12:15 -0000 1.8 --- motionblur.cpp 13 May 2004 15:06:45 -0000 1.9 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "System.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "System.h" Index: GBA.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/GBA.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** GBA.h 28 Jan 2004 17:44:50 -0000 1.18 --- GBA.h 13 May 2004 15:06:43 -0000 1.19 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_GBA_H #define VBA_GBA_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_GBA_H #define VBA_GBA_H Index: simple2x.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/simple2x.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** simple2x.cpp 26 Jan 2004 02:12:15 -0000 1.9 --- simple2x.cpp 13 May 2004 15:06:45 -0000 1.10 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "System.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "System.h" Index: pixel.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/pixel.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** pixel.cpp 26 Jan 2004 02:12:15 -0000 1.9 --- pixel.cpp 13 May 2004 15:06:45 -0000 1.10 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "System.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "System.h" Index: Mode3.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode3.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode3.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode3.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "GBA.h" #include "Globals.h" Index: EEprom.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/EEprom.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** EEprom.cpp 5 Feb 2004 11:38:30 -0000 1.5 --- EEprom.cpp 13 May 2004 15:06:43 -0000 1.6 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "GBA.h" #include "EEprom.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "GBA.h" #include "EEprom.h" Index: Sram.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Sram.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Sram.h 20 Oct 2002 13:03:12 -0000 1.1 --- Sram.h 13 May 2004 15:06:44 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_SRAM_H #define VBA_SRAM_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_SRAM_H #define VBA_SRAM_H Index: bios.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/bios.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** bios.cpp 20 Jan 2004 02:12:49 -0000 1.11 --- bios.cpp 13 May 2004 15:06:45 -0000 1.12 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <math.h> #include <memory.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <math.h> #include <memory.h> Index: Mode1.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode1.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode1.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode1.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "GBA.h" #include "Globals.h" Index: unzip.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/unzip.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** unzip.h 20 Oct 2002 13:03:12 -0000 1.1 --- unzip.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ /* unzip.h -- IO for uncompress .zip files using zlib Version 0.15 beta, Mar 19th, 1998, --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! /* unzip.h -- IO for uncompress .zip files using zlib Version 0.15 beta, Mar 19th, 1998, Index: bilinear.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/bilinear.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bilinear.cpp 26 Jan 2004 02:12:15 -0000 1.3 --- bilinear.cpp 13 May 2004 15:06:45 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ /** Code adapted from Exult source code by Forgotten ** Scale.cc - Trying to scale with bilinear interpolation. --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! /** Code adapted from Exult source code by Forgotten ** Scale.cc - Trying to scale with bilinear interpolation. Index: CheatSearch.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/CheatSearch.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CheatSearch.h 4 Nov 2003 14:11:52 -0000 1.1 --- CheatSearch.h 13 May 2004 15:06:43 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_CHEATSEARCH_H #define VBA_CHEATSEARCH_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_CHEATSEARCH_H #define VBA_CHEATSEARCH_H Index: Port.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Port.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Port.h 21 Jan 2004 01:01:34 -0000 1.4 --- Port.h 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_PORT_H #define VBA_PORT_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_PORT_H #define VBA_PORT_H Index: Mode5.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode5.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode5.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode5.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "GBA.h" #include "Globals.h" Index: GBA.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/GBA.cpp,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** GBA.cpp 5 May 2004 16:01:11 -0000 1.54 --- GBA.cpp 13 May 2004 15:06:43 -0000 1.55 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <stdlib.h> Index: RTC.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/RTC.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RTC.h 7 Apr 2003 12:42:19 -0000 1.1 --- RTC.h 13 May 2004 15:06:44 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_RTC_H #define VBA_RTC_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_RTC_H #define VBA_RTC_H Index: armdis.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/armdis.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** armdis.h 20 Oct 2002 13:03:12 -0000 1.1 --- armdis.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ /************************************************************************/ /* Arm/Thumb command set disassembler */ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! /************************************************************************/ /* Arm/Thumb command set disassembler */ Index: AutoBuild.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/AutoBuild.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AutoBuild.h 25 Jan 2004 13:46:22 -0000 1.13 --- AutoBuild.h 13 May 2004 15:06:43 -0000 1.14 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef __AUTOBUILD_H__ #define __AUTOBUILD_H__ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef __AUTOBUILD_H__ #define __AUTOBUILD_H__ Index: Globals.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Globals.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Globals.cpp 20 Nov 2003 02:37:40 -0000 1.7 --- Globals.cpp 13 May 2004 15:06:44 -0000 1.8 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "GBA.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "GBA.h" Index: Globals.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Globals.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Globals.h 20 Nov 2003 02:37:40 -0000 1.6 --- Globals.h 13 May 2004 15:06:44 -0000 1.7 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_GLOBALS_H #define VBA_GLOBALS_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_GLOBALS_H #define VBA_GLOBALS_H Index: exprNode.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/exprNode.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** exprNode.h 20 Oct 2002 13:03:12 -0000 1.1 --- exprNode.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ struct Node { Type *type; --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! struct Node { Type *type; Index: arm-new.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/arm-new.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** arm-new.h 29 Mar 2004 22:07:47 -0000 1.10 --- arm-new.h 13 May 2004 15:06:44 -0000 1.11 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifdef BKPT_SUPPORT #define CONSOLE_OUTPUT(a,b) \ --- 1,21 ---- ! // -*- C++ -*- ! // 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 ... [truncated message content] |
From: S?bastien G. <kx...@us...> - 2004-05-13 15:07:42
|
Update of /cvsroot/vba/VisualBoyAdvance/src/sdl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515/sdl Modified Files: SDL.cpp TestEmu.cpp debugger.cpp debugger.h Log Message: Updated the copyright notice to 2004. Index: debugger.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/debugger.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** debugger.h 29 Mar 2004 22:08:41 -0000 1.1 --- debugger.h 13 May 2004 15:06:48 -0000 1.2 *************** *** 1,19 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ extern void debuggerMain(); --- 1,20 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! extern void debuggerMain(); Index: SDL.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/SDL.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SDL.cpp 29 Mar 2004 22:08:40 -0000 1.1 --- SDL.cpp 13 May 2004 15:06:48 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdarg.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdarg.h> #include <stdlib.h> Index: debugger.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/debugger.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** debugger.cpp 29 Mar 2004 22:08:40 -0000 1.1 --- debugger.cpp 13 May 2004 15:06:48 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <stdlib.h> Index: TestEmu.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/TestEmu.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestEmu.cpp 29 Mar 2004 22:08:40 -0000 1.1 --- TestEmu.cpp 13 May 2004 15:06:48 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdarg.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdarg.h> #include <stdlib.h> |
From: S?bastien G. <kx...@us...> - 2004-05-13 15:07:42
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515/gb Modified Files: GB.cpp GB.h gbCheats.cpp gbCheats.h gbCodes.h gbCodesCB.h gbDis.cpp gbGfx.cpp gbGlobals.cpp gbGlobals.h gbMemory.cpp gbMemory.h gbPrinter.cpp gbPrinter.h gbSGB.cpp gbSGB.h gbSound.cpp gbSound.h Log Message: Updated the copyright notice to 2004. Index: gbGfx.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbGfx.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gbGfx.cpp 9 Dec 2003 01:37:02 -0000 1.5 --- gbGfx.cpp 13 May 2004 15:06:46 -0000 1.6 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <memory.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <memory.h> Index: gbGlobals.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbGlobals.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gbGlobals.cpp 26 Jan 2004 01:49:13 -0000 1.4 --- gbGlobals.cpp 13 May 2004 15:06:46 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "../GBA.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "../GBA.h" Index: gbMemory.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbMemory.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gbMemory.cpp 5 Feb 2004 11:38:43 -0000 1.2 --- gbMemory.cpp 13 May 2004 15:06:46 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include "../GBA.h" #include "../Port.h" --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include "../GBA.h" #include "../Port.h" Index: gbGlobals.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbGlobals.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** gbGlobals.h 9 Dec 2003 01:39:13 -0000 1.3 --- gbGlobals.h 13 May 2004 15:06:46 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ extern int gbRomSizeMask; extern int gbRomSize; --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! extern int gbRomSizeMask; extern int gbRomSize; Index: gbCodesCB.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbCodesCB.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gbCodesCB.h 5 May 2004 16:01:12 -0000 1.2 --- gbCodesCB.h 13 May 2004 15:06:46 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ case 0x00: // RLC B --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! case 0x00: // RLC B Index: gbCheats.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbCheats.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gbCheats.h 4 Nov 2003 14:08:07 -0000 1.2 --- gbCheats.h 13 May 2004 15:06:46 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef __VBA_GB_GBCHEATS_H #define __VBA_GB_GBCHEATS_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef __VBA_GB_GBCHEATS_H #define __VBA_GB_GBCHEATS_H Index: GB.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/GB.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GB.h 28 Jan 2004 17:45:13 -0000 1.4 --- GB.h 13 May 2004 15:06:46 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_GB_GB_H #define VBA_GB_GB_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_GB_GB_H #define VBA_GB_GB_H Index: gbSound.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbSound.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** gbSound.cpp 7 Feb 2004 00:18:07 -0000 1.6 --- gbSound.cpp 13 May 2004 15:06:46 -0000 1.7 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <memory.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <memory.h> Index: gbDis.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbDis.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gbDis.cpp 7 Apr 2003 12:41:31 -0000 1.1 --- gbDis.cpp 13 May 2004 15:06:46 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <string.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <string.h> Index: gbPrinter.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbPrinter.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gbPrinter.h 20 Oct 2002 13:03:12 -0000 1.1 --- gbPrinter.h 13 May 2004 15:06:46 -0000 1.2 *************** *** 1,19 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ extern u8 gbPrinterSend(u8 b); --- 1,20 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! extern u8 gbPrinterSend(u8 b); Index: gbSGB.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbSGB.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gbSGB.cpp 9 Dec 2003 21:53:08 -0000 1.9 --- gbSGB.cpp 13 May 2004 15:06:46 -0000 1.10 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdlib.h> #include <memory.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdlib.h> #include <memory.h> Index: gbMemory.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbMemory.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gbMemory.h 20 Oct 2002 13:03:12 -0000 1.1 --- gbMemory.h 13 May 2004 15:06:46 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <time.h> --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <time.h> Index: gbSGB.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbSGB.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gbSGB.h 8 Dec 2003 11:46:52 -0000 1.2 --- gbSGB.h 13 May 2004 15:06:46 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ void gbSgbInit(); void gbSgbShutdown(); --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! void gbSgbInit(); void gbSgbShutdown(); Index: GB.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/GB.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** GB.cpp 5 May 2004 16:01:12 -0000 1.18 --- GB.cpp 13 May 2004 15:06:46 -0000 1.19 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <stdlib.h> Index: gbCheats.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbCheats.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** gbCheats.cpp 5 May 2004 16:01:12 -0000 1.6 --- gbCheats.cpp 13 May 2004 15:06:46 -0000 1.7 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <string.h> #include <stdio.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <string.h> #include <stdio.h> Index: gbCodes.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbCodes.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gbCodes.h 5 May 2004 16:01:12 -0000 1.5 --- gbCodes.h 13 May 2004 15:06:46 -0000 1.6 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ case 0x00: // NOP --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! case 0x00: // NOP Index: gbPrinter.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbPrinter.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gbPrinter.cpp 20 Oct 2002 13:03:12 -0000 1.1 --- gbPrinter.cpp 13 May 2004 15:06:46 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #include <stdio.h> #include <memory.h> --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #include <stdio.h> #include <memory.h> Index: gbSound.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/gbSound.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gbSound.h 20 Oct 2002 13:03:12 -0000 1.1 --- gbSound.h 13 May 2004 15:06:46 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #define NR10 0xff10 #define NR11 0xff11 --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #define NR10 0xff10 #define NR11 0xff11 |
From: S?bastien G. <kx...@us...> - 2004-05-13 15:07:40
|
Update of /cvsroot/vba/VisualBoyAdvance/src/prof In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515/prof Modified Files: prof.cpp prof.h Log Message: Updated the copyright notice to 2004. Index: prof.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/prof/prof.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** prof.cpp 5 May 2004 16:01:12 -0000 1.4 --- prof.cpp 13 May 2004 15:06:47 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ // adapted from gmon.c /*- --- 1,20 ---- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! // adapted from gmon.c /*- Index: prof.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/prof/prof.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** prof.h 20 Nov 2002 13:29:08 -0000 1.1 --- prof.h 13 May 2004 15:06:47 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! * This program is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! * GNU General Public License for more details. ! * ! * You should have received a copy of the GNU General Public License ! * along with this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! */ #ifndef VBA_PROF_PROF_H #define VBA_PROF_PROF_H --- 1,21 ---- ! // -*- C++ -*- ! // 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 ! // it under the terms of the GNU General Public License as published by ! // the Free Software Foundation; either version 2, or(at your option) ! // any later version. ! // ! // This program is distributed in the hope that it will be useful, ! // but WITHOUT ANY WARRANTY; without even the implied warranty of ! // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! // GNU General Public License for more details. ! // ! // You should have received a copy of the GNU General Public License ! // along with this program; if not, write to the Free Software Foundation, ! // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ! #ifndef VBA_PROF_PROF_H #define VBA_PROF_PROF_H |
From: S?bastien G. <kx...@us...> - 2004-05-13 15:07:33
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515/gtk Modified Files: configfile.cpp filters.cpp tools.cpp Log Message: Updated the copyright notice to 2004. Index: configfile.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/configfile.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configfile.cpp 3 May 2004 17:00:27 -0000 1.3 --- configfile.cpp 13 May 2004 15:06:46 -0000 1.4 *************** *** 1,3 **** - // -*- C++ -*- // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten --- 1,2 ---- Index: tools.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/tools.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tools.cpp 4 May 2004 20:33:16 -0000 1.2 --- tools.cpp 13 May 2004 15:06:47 -0000 1.3 *************** *** 1,3 **** - // -*- C++ -*- // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten --- 1,2 ---- Index: filters.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/filters.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** filters.cpp 2 Apr 2004 01:22:17 -0000 1.1 --- filters.cpp 13 May 2004 15:06:47 -0000 1.2 *************** *** 1,3 **** - // -*- C++ -*- // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten --- 1,2 ---- |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:47
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/gtk Modified Files: Makefile.am Makefile.in joypadconfig.cpp main.cpp vba.glade window.cpp windowcallbacks.cpp Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: main.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/main.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main.cpp 5 May 2004 16:01:12 -0000 1.4 --- main.cpp 12 May 2004 01:07:06 -0000 1.5 *************** *** 17,24 **** --- 17,29 ---- // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #include <list> + #include <libglademm.h> #include <gtkmm/main.h> + #include <gtkmm/window.h> #include <gtkmm/messagedialog.h> + #include "images/vba-wm-pixbufs.h" + #include "window.h" #include "intl.h" *************** *** 26,29 **** --- 31,54 ---- using Gnome::Glade::Xml; + static void vSetDefaultWindowIcon() + { + const guint8 * apuiInlinePixbuf[] = + { + stock_vba_wm_16, + stock_vba_wm_32, + stock_vba_wm_48, + stock_vba_wm_64 + }; + + std::list<Glib::RefPtr<Gdk::Pixbuf> > listPixbuf; + for (guint i = 0; i < G_N_ELEMENTS(apuiInlinePixbuf); i++) + { + listPixbuf.push_back( + Gdk::Pixbuf::create_from_inline(-1, apuiInlinePixbuf[i])); + } + + Gtk::Window::set_default_icon_list(listPixbuf); + } + int main(int argc, char * argv[]) { *************** *** 37,40 **** --- 62,67 ---- Gtk::Main oKit(argc, argv); + vSetDefaultWindowIcon(); + Glib::RefPtr<Xml> poXml; try Index: Makefile.am =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.am 10 May 2004 14:59:43 -0000 1.6 --- Makefile.am 12 May 2004 01:07:06 -0000 1.7 *************** *** 1,2 **** --- 1,4 ---- + SUBDIRS = images + bin_PROGRAMS = gvba Index: window.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/window.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** window.cpp 11 May 2004 03:07:30 -0000 1.20 --- window.cpp 12 May 2004 01:07:06 -0000 1.21 *************** *** 264,268 **** iDefaultFrameskip = m_poCoreConfig->oGetKey<int>("frameskip"); } ! for (guint i = 0; i < sizeof(astFrameskip) / sizeof(astFrameskip[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFrameskip[i].m_csName)); --- 264,268 ---- iDefaultFrameskip = m_poCoreConfig->oGetKey<int>("frameskip"); } ! for (guint i = 0; i < G_N_ELEMENTS(astFrameskip); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFrameskip[i].m_csName)); *************** *** 300,304 **** int iDefaultThrottle = m_poCoreConfig->oGetKey<int>("throttle"); ! for (guint i = 0; i < sizeof(astThrottle) / sizeof(astThrottle[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astThrottle[i].m_csName)); --- 300,304 ---- int iDefaultThrottle = m_poCoreConfig->oGetKey<int>("throttle"); ! for (guint i = 0; i < G_N_ELEMENTS(astThrottle); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astThrottle[i].m_csName)); *************** *** 330,334 **** }; int iDefaultScale = m_poDisplayConfig->oGetKey<int>("scale"); ! for (guint i = 0; i < sizeof(astVideoScale) / sizeof(astVideoScale[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astVideoScale[i].m_csName)); --- 330,334 ---- }; int iDefaultScale = m_poDisplayConfig->oGetKey<int>("scale"); ! for (guint i = 0; i < G_N_ELEMENTS(astVideoScale); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astVideoScale[i].m_csName)); *************** *** 348,369 **** { const char * m_csName; const int m_iLayer; - const bool m_bChecked; } astLayer[] = { ! { "LayersBg0", 0, m_poCoreConfig->oGetKey<bool>("layer_bg0") }, ! { "LayersBg1", 1, m_poCoreConfig->oGetKey<bool>("layer_bg1") }, ! { "LayersBg2", 2, m_poCoreConfig->oGetKey<bool>("layer_bg2") }, ! { "LayersBg3", 3, m_poCoreConfig->oGetKey<bool>("layer_bg3") }, ! { "LayersObj", 4, m_poCoreConfig->oGetKey<bool>("layer_obj") }, ! { "LayersWin0", 5, m_poCoreConfig->oGetKey<bool>("layer_win0") }, ! { "LayersWin1", 6, m_poCoreConfig->oGetKey<bool>("layer_win1") }, ! { "LayersObjWin", 7, m_poCoreConfig->oGetKey<bool>("layer_objwin") } }; ! for (guint i = 0; i < sizeof(astLayer) / sizeof(astLayer[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astLayer[i].m_csName)); ! poCMI->set_active(astLayer[i].m_bChecked); vOnLayerToggled(poCMI, astLayer[i].m_iLayer); poCMI->signal_toggled().connect(SigC::bind<Gtk::CheckMenuItem *, int>( --- 348,369 ---- { const char * m_csName; + const char * m_csKey; const int m_iLayer; } astLayer[] = { ! { "LayersBg0", "layer_bg0", 0 }, ! { "LayersBg1", "layer_bg1", 1 }, ! { "LayersBg2", "layer_bg2", 2 }, ! { "LayersBg3", "layer_bg3", 3 }, ! { "LayersObj", "layer_obj", 4 }, ! { "LayersWin0", "layer_win0", 5 }, ! { "LayersWin1", "layer_win1", 6 }, ! { "LayersObjWin", "layer_objwin", 7 } }; ! for (guint i = 0; i < G_N_ELEMENTS(astLayer); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astLayer[i].m_csName)); ! poCMI->set_active(m_poCoreConfig->oGetKey<bool>(astLayer[i].m_csKey)); vOnLayerToggled(poCMI, astLayer[i].m_iLayer); poCMI->signal_toggled().connect(SigC::bind<Gtk::CheckMenuItem *, int>( *************** *** 411,415 **** }; EShowSpeed eDefaultShowSpeed = (EShowSpeed)m_poDisplayConfig->oGetKey<int>("show_speed"); ! for (guint i = 0; i < sizeof(astShowSpeed) / sizeof(astShowSpeed[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astShowSpeed[i].m_csName)); --- 411,415 ---- }; EShowSpeed eDefaultShowSpeed = (EShowSpeed)m_poDisplayConfig->oGetKey<int>("show_speed"); ! for (guint i = 0; i < G_N_ELEMENTS(astShowSpeed); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astShowSpeed[i].m_csName)); *************** *** 441,445 **** }; ESaveType eDefaultSaveType = (ESaveType)m_poCoreConfig->oGetKey<int>("save_type"); ! for (guint i = 0; i < sizeof(astSaveType) / sizeof(astSaveType[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSaveType[i].m_csName)); --- 441,445 ---- }; ESaveType eDefaultSaveType = (ESaveType)m_poCoreConfig->oGetKey<int>("save_type"); ! for (guint i = 0; i < G_N_ELEMENTS(astSaveType); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSaveType[i].m_csName)); *************** *** 467,471 **** }; int iDefaultFlashSize = m_poCoreConfig->oGetKey<int>("flash_size"); ! for (guint i = 0; i < sizeof(astFlashSize) / sizeof(astFlashSize[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFlashSize[i].m_csName)); --- 467,471 ---- }; int iDefaultFlashSize = m_poCoreConfig->oGetKey<int>("flash_size"); ! for (guint i = 0; i < G_N_ELEMENTS(astFlashSize); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFlashSize[i].m_csName)); *************** *** 493,497 **** }; std::string sDefaultScreenshotFormat = m_poCoreConfig->sGetKey("screenshot_format"); ! for (guint i = 0; i < sizeof(astScreenshotFormat) / sizeof(astScreenshotFormat[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astScreenshotFormat[i].m_csName)); --- 493,497 ---- }; std::string sDefaultScreenshotFormat = m_poCoreConfig->sGetKey("screenshot_format"); ! for (guint i = 0; i < G_N_ELEMENTS(astScreenshotFormat); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astScreenshotFormat[i].m_csName)); *************** *** 565,584 **** { const char * m_csName; const int m_iSoundChannel; - const bool m_bChecked; } astSoundChannel[] = { ! { "SoundChannel1", 0, m_poSoundConfig->oGetKey<bool>("channel_1") }, ! { "SoundChannel2", 1, m_poSoundConfig->oGetKey<bool>("channel_2") }, ! { "SoundChannel3", 2, m_poSoundConfig->oGetKey<bool>("channel_3") }, ! { "SoundChannel4", 3, m_poSoundConfig->oGetKey<bool>("channel_4") }, ! { "SoundChannelA", 4, m_poSoundConfig->oGetKey<bool>("channel_A") }, ! { "SoundChannelB", 5, m_poSoundConfig->oGetKey<bool>("channel_B") } }; ! for (guint i = 0; i < sizeof(astSoundChannel) / sizeof(astSoundChannel[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundChannel[i].m_csName)); ! poCMI->set_active(astSoundChannel[i].m_bChecked); vOnSoundChannelToggled(poCMI, astSoundChannel[i].m_iSoundChannel); poCMI->signal_toggled().connect(SigC::bind<Gtk::CheckMenuItem *, int>( --- 565,584 ---- { const char * m_csName; + const char * m_csKey; const int m_iSoundChannel; } astSoundChannel[] = { ! { "SoundChannel1", "channel_1", 0 }, ! { "SoundChannel2", "channel_2", 1 }, ! { "SoundChannel3", "channel_3", 2 }, ! { "SoundChannel4", "channel_4", 3 }, ! { "SoundChannelA", "channel_A", 4 }, ! { "SoundChannelB", "channel_B", 5 } }; ! for (guint i = 0; i < G_N_ELEMENTS(astSoundChannel); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundChannel[i].m_csName)); ! poCMI->set_active(m_poSoundConfig->oGetKey<bool>(astSoundChannel[i].m_csKey)); vOnSoundChannelToggled(poCMI, astSoundChannel[i].m_iSoundChannel); poCMI->signal_toggled().connect(SigC::bind<Gtk::CheckMenuItem *, int>( *************** *** 599,603 **** }; ESoundQuality eDefaultSoundQuality = (ESoundQuality)m_poSoundConfig->oGetKey<int>("quality"); ! for (guint i = 0; i < sizeof(astSoundQuality) / sizeof(astSoundQuality[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundQuality[i].m_csName)); --- 599,603 ---- }; ESoundQuality eDefaultSoundQuality = (ESoundQuality)m_poSoundConfig->oGetKey<int>("quality"); ! for (guint i = 0; i < G_N_ELEMENTS(astSoundQuality); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundQuality[i].m_csName)); *************** *** 629,633 **** }; ESoundVolume eDefaultSoundVolume = (ESoundVolume)m_poSoundConfig->oGetKey<int>("volume"); ! for (guint i = 0; i < sizeof(astSoundVolume) / sizeof(astSoundVolume[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundVolume[i].m_csName)); --- 629,633 ---- }; ESoundVolume eDefaultSoundVolume = (ESoundVolume)m_poSoundConfig->oGetKey<int>("volume"); ! for (guint i = 0; i < G_N_ELEMENTS(astSoundVolume); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astSoundVolume[i].m_csName)); *************** *** 673,677 **** }; EEmulatorType eDefaultEmulatorType = (EEmulatorType)m_poCoreConfig->oGetKey<int>("emulator_type"); ! for (guint i = 0; i < sizeof(astEmulatorType) / sizeof(astEmulatorType[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astEmulatorType[i].m_csName)); --- 673,677 ---- }; EEmulatorType eDefaultEmulatorType = (EEmulatorType)m_poCoreConfig->oGetKey<int>("emulator_type"); ! for (guint i = 0; i < G_N_ELEMENTS(astEmulatorType); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astEmulatorType[i].m_csName)); *************** *** 711,715 **** }; EFilter2x eDefaultFilter2x = (EFilter2x)m_poDisplayConfig->oGetKey<int>("filter2x"); ! for (guint i = 0; i < sizeof(astFilter2x) / sizeof(astFilter2x[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFilter2x[i].m_csName)); --- 711,715 ---- }; EFilter2x eDefaultFilter2x = (EFilter2x)m_poDisplayConfig->oGetKey<int>("filter2x"); ! for (guint i = 0; i < G_N_ELEMENTS(astFilter2x); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFilter2x[i].m_csName)); *************** *** 750,754 **** }; EFilterIB eDefaultFilterIB = (EFilterIB)m_poDisplayConfig->oGetKey<int>("filterIB"); ! for (guint i = 0; i < sizeof(astFilterIB) / sizeof(astFilterIB[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFilterIB[i].m_csName)); --- 750,754 ---- }; EFilterIB eDefaultFilterIB = (EFilterIB)m_poDisplayConfig->oGetKey<int>("filterIB"); ! for (guint i = 0; i < G_N_ELEMENTS(astFilterIB); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astFilterIB[i].m_csName)); *************** *** 802,817 **** struct { - const char * m_csKey; const char * m_csName; const EKeyFlag m_eKeyFlag; } astAutofire[] = { ! { "autofire_A", "AutofireA", KeyFlagA }, ! { "autofire_B", "AutofireB", KeyFlagB }, ! { "autofire_L", "AutofireL", KeyFlagL }, ! { "autofire_R", "AutofireR", KeyFlagR } }; ! for (guint i = 0; i < sizeof(astAutofire) / sizeof(astAutofire[0]); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astAutofire[i].m_csName)); --- 802,817 ---- struct { const char * m_csName; + const char * m_csKey; const EKeyFlag m_eKeyFlag; } astAutofire[] = { ! { "AutofireA", "autofire_A", KeyFlagA }, ! { "AutofireB", "autofire_B", KeyFlagB }, ! { "AutofireL", "autofire_L", KeyFlagL }, ! { "AutofireR", "autofire_R", KeyFlagR } }; ! for (guint i = 0; i < G_N_ELEMENTS(astAutofire); i++) { poCMI = dynamic_cast<Gtk::CheckMenuItem *>(_poXml->get_widget(astAutofire[i].m_csName)); *************** *** 1661,1665 **** Gtk::FileFilter oAllGBAFilter; oAllGBAFilter.set_name(_("All Gameboy Advance files")); ! for (guint i = 0; i < sizeof(acsPattern) / sizeof(acsPattern[0]); i++) { oAllGBAFilter.add_pattern(acsPattern[i]); --- 1661,1665 ---- Gtk::FileFilter oAllGBAFilter; oAllGBAFilter.set_name(_("All Gameboy Advance files")); ! for (guint i = 0; i < G_N_ELEMENTS(acsPattern); i++) { oAllGBAFilter.add_pattern(acsPattern[i]); *************** *** 1855,1859 **** { "Throttle200", 200 } }; ! for (guint i = 0; i < sizeof(astThrottle) / sizeof(astThrottle[0]); i++) { Gtk::CheckMenuItem * poCMI; --- 1855,1859 ---- { "Throttle200", 200 } }; ! for (guint i = 0; i < G_N_ELEMENTS(astThrottle); i++) { Gtk::CheckMenuItem * poCMI; Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.in 10 May 2004 14:59:43 -0000 1.6 --- Makefile.in 12 May 2004 01:07:06 -0000 1.7 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ *************** *** 152,155 **** --- 153,158 ---- target_os = @target_os@ target_vendor = @target_vendor@ + SUBDIRS = images + bin_PROGRAMS = gvba *************** *** 360,367 **** DATA = $(dist_pkgdata_DATA) DIST_COMMON = $(dist_pkgdata_DATA) $(srcdir)/Makefile.in Makefile.am SOURCES = $(libgba_a_SOURCES) $(gvba_SOURCES) ! all: all-am .SUFFIXES: --- 363,377 ---- DATA = $(dist_pkgdata_DATA) + + RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ + ps-recursive install-info-recursive uninstall-info-recursive \ + all-recursive install-data-recursive install-exec-recursive \ + installdirs-recursive install-recursive uninstall-recursive \ + check-recursive installcheck-recursive DIST_COMMON = $(dist_pkgdata_DATA) $(srcdir)/Makefile.in Makefile.am + DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(libgba_a_SOURCES) $(gvba_SOURCES) ! all: all-recursive .SUFFIXES: *************** *** 1514,1517 **** --- 1524,1586 ---- done + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, + # (1) if the variable is set in `config.status', edit `config.status' + # (which will cause the Makefiles to be regenerated when you run `make'); + # (2) otherwise, pass the desired values on the `make' command line. + $(RECURSIVE_TARGETS): + @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + + mostlyclean-recursive clean-recursive distclean-recursive \ + maintainer-clean-recursive: + @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + done && test -z "$$fail" + tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done + ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + ETAGS = etags ETAGSFLAGS = *************** *** 1531,1538 **** mkid -fID $$unique ! TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ --- 1600,1618 ---- mkid -fID $$unique ! TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ + if (etags --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + else \ + include_option=--include; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -f $$subdir/TAGS && \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ *************** *** 1546,1550 **** ctags: CTAGS ! CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ --- 1626,1630 ---- ctags: CTAGS ! CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ *************** *** 1599,1617 **** fi; \ done check-am: all-am ! check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(DATA) ! ! installdirs: $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) ! install: install-am ! install-exec: install-exec-am ! install-data: install-data-am ! uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am ! installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ --- 1679,1711 ---- fi; \ done + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d $(distdir)/$$subdir \ + || mkdir $(distdir)/$$subdir \ + || exit 1; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" \ + distdir=../$(distdir)/$$subdir \ + distdir) \ + || exit 1; \ + fi; \ + done check-am: all-am ! check: check-recursive all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(DATA) ! installdirs: installdirs-recursive ! installdirs-am: $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) ! ! install: install-recursive ! install-exec: install-exec-recursive ! install-data: install-data-recursive ! uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am ! installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ *************** *** 1629,1638 **** @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." ! clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-noinstLIBRARIES \ mostlyclean-am ! distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile --- 1723,1732 ---- @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." ! clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-noinstLIBRARIES \ mostlyclean-am ! distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile *************** *** 1640,1648 **** distclean-tags ! dvi: dvi-am dvi-am: ! info: info-am info-am: --- 1734,1742 ---- distclean-tags ! dvi: dvi-recursive dvi-am: ! info: info-recursive info-am: *************** *** 1652,1656 **** install-exec-am: install-binPROGRAMS ! install-info: install-info-am install-man: --- 1746,1750 ---- install-exec-am: install-binPROGRAMS ! install-info: install-info-recursive install-man: *************** *** 1658,1675 **** installcheck-am: ! maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic ! mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic ! pdf: pdf-am pdf-am: ! ps: ps-am ps-am: --- 1752,1769 ---- installcheck-am: ! maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic ! mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic ! pdf: pdf-recursive pdf-am: ! ps: ps-recursive ps-am: *************** *** 1678,1692 **** uninstall-info-am ! .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ ! clean-generic clean-noinstLIBRARIES ctags distclean \ ! distclean-compile distclean-generic distclean-tags distdir dvi \ ! dvi-am info info-am install install-am install-binPROGRAMS \ ! install-data install-data-am install-dist_pkgdataDATA \ ! install-exec install-exec-am install-info install-info-am \ ! install-man install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ! ps ps-am tags uninstall uninstall-am uninstall-binPROGRAMS \ ! uninstall-dist_pkgdataDATA uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 1772,1795 ---- uninstall-info-am ! uninstall-info: uninstall-info-recursive ! ! .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ ! clean-binPROGRAMS clean-generic clean-noinstLIBRARIES \ ! clean-recursive ctags ctags-recursive distclean \ ! distclean-compile distclean-generic distclean-recursive \ ! distclean-tags distdir dvi dvi-am dvi-recursive info info-am \ ! info-recursive install install-am install-binPROGRAMS \ ! install-data install-data-am install-data-recursive \ ! install-dist_pkgdataDATA install-exec install-exec-am \ ! install-exec-recursive install-info install-info-am \ ! install-info-recursive install-man install-recursive \ ! install-strip installcheck installcheck-am installdirs \ ! installdirs-am installdirs-recursive maintainer-clean \ ! maintainer-clean-generic maintainer-clean-recursive mostlyclean \ ! mostlyclean-compile mostlyclean-generic mostlyclean-recursive \ ! pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ ! tags-recursive uninstall uninstall-am uninstall-binPROGRAMS \ ! uninstall-dist_pkgdataDATA uninstall-info-am \ ! uninstall-info-recursive uninstall-recursive # Tell versions [3.59,3.63) of GNU make to not export all variables. Index: joypadconfig.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/joypadconfig.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** joypadconfig.cpp 10 May 2004 15:00:35 -0000 1.1 --- joypadconfig.cpp 12 May 2004 01:07:06 -0000 1.2 *************** *** 98,102 **** }; ! for (guint i = 0; i < sizeof(auiKeyval) / sizeof(auiKeyval[0]); i++) { GdkKeymapKey * pstKeys; --- 98,102 ---- }; ! for (guint i = 0; i < G_N_ELEMENTS(auiKeyval); i++) { GdkKeymapKey * pstKeys; Index: vba.glade =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/vba.glade,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** vba.glade 10 May 2004 22:54:51 -0000 1.13 --- vba.glade 12 May 2004 01:07:06 -0000 1.14 *************** *** 2017,2020 **** --- 2017,2043 ---- <child> + <widget class="GtkAlignment" id="AboutIconContainer"> + <property name="visible">True</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xscale">0</property> + <property name="yscale">0</property> + <property name="top_padding">0</property> + <property name="bottom_padding">0</property> + <property name="left_padding">0</property> + <property name="right_padding">0</property> + + <child> + <placeholder/> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> <widget class="GtkLabel" id="VersionLabel"> <property name="visible">True</property> *************** *** 2061,2064 **** --- 2084,2109 ---- <child> + <widget class="GtkLabel" id="label24"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes"><i>Special thanks to Yann Parmentier aka "kohai" for the icons.</i></property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">True</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">5</property> + <property name="ypad">5</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">False</property> + </packing> + </child> + + <child> <widget class="GtkLabel" id="label3"> <property name="visible">True</property> Index: windowcallbacks.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/windowcallbacks.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** windowcallbacks.cpp 11 May 2004 03:07:30 -0000 1.9 --- windowcallbacks.cpp 12 May 2004 01:07:06 -0000 1.10 *************** *** 774,778 **** }; ! for (guint i = 0; i < sizeof(astRow) / sizeof(astRow[0]); i++) { Gtk::Entry * poEntry = dynamic_cast<Gtk::Entry *>(poXml->get_widget(astRow[i].m_csEntry)); --- 774,778 ---- }; ! for (guint i = 0; i < G_N_ELEMENTS(astRow); i++) { Gtk::Entry * poEntry = dynamic_cast<Gtk::Entry *>(poXml->get_widget(astRow[i].m_csEntry)); *************** *** 795,799 **** if (poDialog->run() == Gtk::RESPONSE_OK) { ! for (guint i = 0; i < sizeof(astRow) / sizeof(astRow[0]); i++) { Gtk::Entry * poEntry = dynamic_cast<Gtk::Entry *>(poXml->get_widget(astRow[i].m_csEntry)); --- 795,799 ---- if (poDialog->run() == Gtk::RESPONSE_OK) { ! for (guint i = 0; i < G_N_ELEMENTS(astRow); i++) { Gtk::Entry * poEntry = dynamic_cast<Gtk::Entry *>(poXml->get_widget(astRow[i].m_csEntry)); *************** *** 901,905 **** Gtk::FileFilter oBiosFilter; oBiosFilter.set_name(_("Gameboy Advance BIOS")); ! for (guint i = 0; i < sizeof(acsPattern) / sizeof(acsPattern[0]); i++) { oBiosFilter.add_pattern(acsPattern[i]); --- 901,905 ---- Gtk::FileFilter oBiosFilter; oBiosFilter.set_name(_("Gameboy Advance BIOS")); ! for (guint i = 0; i < G_N_ELEMENTS(acsPattern); i++) { oBiosFilter.add_pattern(acsPattern[i]); *************** *** 1401,1408 **** Gtk::Dialog * poDialog = dynamic_cast<Gtk::Dialog *>(poXml->get_widget("AboutDialog")); - Gtk::Label * poLabel = dynamic_cast<Gtk::Label *>(poXml->get_widget("VersionLabel")); - poDialog->set_transient_for(*this); poLabel->set_markup("<b><big>" PACKAGE " " VERSION "</big></b>"); poDialog->run(); delete poDialog; --- 1401,1414 ---- Gtk::Dialog * poDialog = dynamic_cast<Gtk::Dialog *>(poXml->get_widget("AboutDialog")); poDialog->set_transient_for(*this); + + Gtk::Image oIcon(PKGDATADIR "/vba-64.png"); + oIcon.show(); + Gtk::Container * poIconContainer = dynamic_cast<Gtk::Container *>(poXml->get_widget("AboutIconContainer")); + poIconContainer->add(oIcon); + + Gtk::Label * poLabel = dynamic_cast<Gtk::Label *>(poXml->get_widget("VersionLabel")); poLabel->set_markup("<b><big>" PACKAGE " " VERSION "</big></b>"); + poDialog->run(); delete poDialog; |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:46
|
Update of /cvsroot/vba/VisualBoyAdvance/src/prof In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/prof Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/prof/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.in 1 May 2004 14:04:02 -0000 1.6 --- Makefile.in 12 May 2004 01:07:07 -0000 1.7 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:46
|
Update of /cvsroot/vba/VisualBoyAdvance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509 Modified Files: AUTHORS Makefile.am Makefile.in aclocal.m4 configure configure.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile.in 1 May 2004 14:03:51 -0000 1.12 --- Makefile.in 12 May 2004 01:07:03 -0000 1.13 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ *************** *** 154,158 **** AUTOMAKE_OPTIONS = gnu dist-zip ! SUBDIRS = m4 po src win32 EXTRA_DIST = config.rpath README-win.txt README.CVS VERSION --- 155,165 ---- AUTOMAKE_OPTIONS = gnu dist-zip ! CORE_SUBDIRS = m4 src win32 ! ! EXTRA_SUBDIRS = po ! ! SUBDIRS = $(CORE_SUBDIRS) @VBA_EXTRA@ ! ! DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) EXTRA_DIST = config.rpath README-win.txt README.CVS VERSION *************** *** 175,179 **** config.sub configure configure.in depcomp install-sh missing \ mkinstalldirs - DIST_SUBDIRS = $(SUBDIRS) all: all-recursive --- 182,185 ---- *************** *** 364,368 **** fi; \ done ! list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d $(distdir)/$$subdir \ --- 370,374 ---- fi; \ done ! list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d $(distdir)/$$subdir \ Index: Makefile.am =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 29 Mar 2004 22:08:37 -0000 1.8 --- Makefile.am 12 May 2004 01:07:03 -0000 1.9 *************** *** 1,5 **** AUTOMAKE_OPTIONS = gnu dist-zip ! SUBDIRS = m4 po src win32 EXTRA_DIST = config.rpath README-win.txt README.CVS VERSION --- 1,11 ---- AUTOMAKE_OPTIONS = gnu dist-zip ! CORE_SUBDIRS = m4 src win32 ! ! EXTRA_SUBDIRS = po ! ! SUBDIRS = $(CORE_SUBDIRS) @VBA_EXTRA@ ! ! DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) EXTRA_DIST = config.rpath README-win.txt README.CVS VERSION Index: configure =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/configure,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** configure 5 May 2004 16:01:09 -0000 1.24 --- configure 12 May 2004 01:07:03 -0000 1.25 *************** *** 310,314 **** #endif" ! ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot MKINSTALLDIRS USE_NLS MSGFMT GMSGFMT XGETTEXT MSGMERGE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE LIBICONV LTLIBICONV INTLLIBS LIBINTL LTLIBINTL POSUB GETTEXT_PACKAGE YACC LEX LEXLIB LEX_OUTPUT_ROOT CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB NASM CPP EGREP SDL_CONFIG SDL_CFLAGS SDL_LIBS PKG_CONFIG GTKMM_CFLAGS GTKMM_LIBS GTKMM_CPPFLAGS VBA_EXTRA VBA_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' --- 310,314 ---- #endif" ! ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE YACC LEX LEXLIB LEX_OUTPUT_ROOT CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE RANLIB ac_ct_RANLIB NASM CPP EGREP SDL_CONFIG SDL_CFLAGS SDL_LIBS MKINSTALLDIRS USE_NLS MSGFMT GMSGFMT XGETTEXT MSGMERGE LIBICONV LTLIBICONV INTLLIBS LIBINTL LTLIBINTL POSUB GETTEXT_PACKAGE PKG_CONFIG GTKMM_CFLAGS GTKMM_LIBS GTKMM_CPPFLAGS VBA_EXTRA VBA_SRC_EXTRA VBA_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' [...4840 lines suppressed...] - echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5 - echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} - { (exit 1); exit 1; }; }; } - - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done - ;; esac done --- 9272,9275 ---- Index: configure.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/configure.in,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** configure.in 5 May 2004 16:01:10 -0000 1.23 --- configure.in 12 May 2004 01:07:03 -0000 1.24 *************** *** 53,63 **** , enable_dev=yes) - dnl Internationalisation support. - ALL_LINGUAS="fr" - AM_GNU_GETTEXT(external) - - GETTEXT_PACKAGE=vba-1.7.2 - AC_SUBST(GETTEXT_PACKAGE) - dnl Checks for programs. AC_PROG_CC --- 53,56 ---- *************** *** 116,120 **** if test "x$enable_profiling" = xyes; then CXXFLAGS="$CXXFLAGS -DPROFILING" ! VBA_EXTRA="$VBA_EXTRA prof" VBA_LIBS="$VBA_LIBS ../prof/libprof.a" fi --- 109,113 ---- if test "x$enable_profiling" = xyes; then CXXFLAGS="$CXXFLAGS -DPROFILING" ! VBA_SRC_EXTRA="$VBA_SRC_EXTRA prof" VBA_LIBS="$VBA_LIBS ../prof/libprof.a" fi *************** *** 125,129 **** fi CXXFLAGS="$CXXFLAGS -DMMX" ! VBA_EXTRA="$VBA_EXTRA i386" VBA_LIBS="$VBA_LIBS ../i386/lib386.a" fi --- 118,122 ---- fi CXXFLAGS="$CXXFLAGS -DMMX" ! VBA_SRC_EXTRA="$VBA_SRC_EXTRA i386" VBA_LIBS="$VBA_LIBS ../i386/lib386.a" fi *************** *** 138,146 **** if test "x$enable_sdl" = xyes; then ! VBA_EXTRA="$VBA_EXTRA sdl" fi if test "x$enable_gtk" = xyes; then AC_CHECK_HEADERS(libintl.h) PKG_CHECK_MODULES(GTKMM, gtkmm-$gtk_version >= 2.0.0 libglademm-$gtk_version >= 2.1.0) AC_SUBST(GTKMM_CFLAGS) --- 131,145 ---- if test "x$enable_sdl" = xyes; then ! VBA_SRC_EXTRA="$VBA_SRC_EXTRA sdl" fi if test "x$enable_gtk" = xyes; then + dnl Internationalisation support. + ALL_LINGUAS="fr" + AM_GNU_GETTEXT(external) AC_CHECK_HEADERS(libintl.h) + GETTEXT_PACKAGE=vba-1.7.2 + AC_SUBST(GETTEXT_PACKAGE) + PKG_CHECK_MODULES(GTKMM, gtkmm-$gtk_version >= 2.0.0 libglademm-$gtk_version >= 2.1.0) AC_SUBST(GTKMM_CFLAGS) *************** *** 150,154 **** fi AC_SUBST(GTKMM_CPPFLAGS) ! VBA_EXTRA="$VBA_EXTRA gtk" fi --- 149,154 ---- fi AC_SUBST(GTKMM_CPPFLAGS) ! VBA_EXTRA="$VBA_EXTRA po" ! VBA_SRC_EXTRA="$VBA_SRC_EXTRA gtk" fi *************** *** 162,165 **** --- 162,166 ---- AC_SUBST(VBA_EXTRA) + AC_SUBST(VBA_SRC_EXTRA) AC_SUBST(VBA_LIBS) *************** *** 172,175 **** --- 173,177 ---- src/gb/Makefile src/gtk/Makefile + src/gtk/images/Makefile src/i386/Makefile src/prof/Makefile Index: aclocal.m4 =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/aclocal.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** aclocal.m4 29 Mar 2004 22:08:37 -0000 1.4 --- aclocal.m4 12 May 2004 01:07:03 -0000 1.5 *************** *** 1615,1618 **** --- 1615,1651 ---- fi])]) + + # Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + + # This program is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation; either version 2, or (at your option) + # any later version. + + # This program is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY; without even the implied warranty of + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + # GNU General Public License for more details. + + # You should have received a copy of the GNU General Public License + # along with this program; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + # 02111-1307, USA. + + # serial 3 + + AC_PREREQ(2.50) + + # AM_PROG_LEX + # ----------- + # Autoconf leaves LEX=: if lex or flex can't be found. Change that to a + # "missing" invocation, for better error output. + AC_DEFUN([AM_PROG_LEX], + [AC_REQUIRE([AM_MISSING_HAS_RUN])dnl + AC_REQUIRE([AC_PROG_LEX])dnl + if test "$LEX" = :; then + LEX=${am_missing_run}flex + fi]) + # gettext.m4 serial 28 (gettext-0.13) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. *************** *** 4246,4282 **** - # Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. - - # This program is free software; you can redistribute it and/or modify - # it under the terms of the GNU General Public License as published by - # the Free Software Foundation; either version 2, or (at your option) - # any later version. - - # This program is distributed in the hope that it will be useful, - # but WITHOUT ANY WARRANTY; without even the implied warranty of - # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - # GNU General Public License for more details. - - # You should have received a copy of the GNU General Public License - # along with this program; if not, write to the Free Software - # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - # 02111-1307, USA. - - # serial 3 - - AC_PREREQ(2.50) - - # AM_PROG_LEX - # ----------- - # Autoconf leaves LEX=: if lex or flex can't be found. Change that to a - # "missing" invocation, for better error output. - AC_DEFUN([AM_PROG_LEX], - [AC_REQUIRE([AM_MISSING_HAS_RUN])dnl - AC_REQUIRE([AC_PROG_LEX])dnl - if test "$LEX" = :; then - LEX=${am_missing_run}flex - fi]) - - dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page --- 4279,4282 ---- Index: AUTHORS =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/AUTHORS,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AUTHORS 29 Mar 2004 22:08:37 -0000 1.3 --- AUTHORS 12 May 2004 01:07:03 -0000 1.4 *************** *** 1,9 **** ! VisualBoy and VisualBoyAdvanced original development: - Forgotten (see the Contact section in the readme) Contributions: - Costis (co...@gb...): object mosaic, GP32 - KVA: ARM/THUMB disassembler ! - kxu: GTK+ frontend --- 1,14 ---- ! VisualBoy and VisualBoyAdvance original development: - Forgotten (see the Contact section in the readme) + Current maintainer: + + - Sébastien Guignot aka kxu (helped and supported by Forgotten) + Contributions: - Costis (co...@gb...): object mosaic, GP32 - KVA: ARM/THUMB disassembler ! - Sébastien Guignot aka kxu: GTK+ interface ! - Yann Parmentier aka kohai: icons |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:46
|
Update of /cvsroot/vba/VisualBoyAdvance/src/i386 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/i386 Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/i386/Makefile.in,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.in 1 May 2004 14:04:02 -0000 1.8 --- Makefile.in 12 May 2004 01:07:07 -0000 1.9 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:45
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src Modified Files: Makefile.am Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Makefile.in,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Makefile.in 1 May 2004 14:03:57 -0000 1.19 --- Makefile.in 12 May 2004 01:07:05 -0000 1.20 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ *************** *** 156,160 **** EXTRA_SUBDIRS = i386 prof sdl gtk ! SUBDIRS = $(CORE_SUBDIRS) @VBA_EXTRA@ DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) --- 157,161 ---- EXTRA_SUBDIRS = i386 prof sdl gtk ! SUBDIRS = $(CORE_SUBDIRS) @VBA_SRC_EXTRA@ DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) Index: Makefile.am =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Makefile.am,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Makefile.am 29 Mar 2004 22:08:39 -0000 1.16 --- Makefile.am 12 May 2004 01:07:05 -0000 1.17 *************** *** 3,7 **** EXTRA_SUBDIRS = i386 prof sdl gtk ! SUBDIRS = $(CORE_SUBDIRS) @VBA_EXTRA@ DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) --- 3,7 ---- EXTRA_SUBDIRS = i386 prof sdl gtk ! SUBDIRS = $(CORE_SUBDIRS) @VBA_SRC_EXTRA@ DIST_SUBDIRS = $(CORE_SUBDIRS) $(EXTRA_SUBDIRS) |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:45
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/gb Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gb/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 1 May 2004 14:03:57 -0000 1.9 --- Makefile.in 12 May 2004 01:07:05 -0000 1.10 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:44
|
Update of /cvsroot/vba/VisualBoyAdvance/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/po Modified Files: fr.gmo fr.po vba-1.7.2.pot Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: fr.po =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/po/fr.po,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** fr.po 10 May 2004 22:54:50 -0000 1.7 --- fr.po 12 May 2004 01:07:04 -0000 1.8 *************** *** 10,15 **** "Project-Id-Version: VisualBoyAdvance 1.7.2\n" "Report-Msgid-Bugs-To: undefined\n" ! "POT-Creation-Date: 2004-05-11 00:29+0200\n" ! "PO-Revision-Date: 2004-05-11 00:30+0200\n" "Last-Translator: Sébastien Guignot <kx...@ts...>\n" "Language-Team: French <@>\n" --- 10,15 ---- "Project-Id-Version: VisualBoyAdvance 1.7.2\n" "Report-Msgid-Bugs-To: undefined\n" ! "POT-Creation-Date: 2004-05-11 21:01+0200\n" ! "PO-Revision-Date: 2004-05-11 21:01+0200\n" "Last-Translator: Sébastien Guignot <kx...@ts...>\n" "Language-Team: French <@>\n" *************** *** 842,956 **** msgstr "à propos de VBA" ! #: src/gtk/vba.glade:2044 msgid "An emulator for Gameboy(TM) and GameboyAdvance(TM)." msgstr "Ãmulateur pour Gameboy⢠et GameboyAdvanceâ¢." ! #: src/gtk/vba.glade:2066 msgid "" "<small>Copyright (C) 2004 Forgotten and the VBA development team</small>" ! msgstr "<small>Copyright © 2004 Forgotten et l'équipe de développement de VBA</small>" ! #: src/gtk/vba.glade:2088 msgid "Throttle" msgstr "Vitesse" ! #: src/gtk/vba.glade:2167 msgid "Throttle : " msgstr "Vitesse : " ! #: src/gtk/vba.glade:2207 msgid " %" msgstr " %" ! #: src/gtk/vba.glade:2238 msgid "Directories" msgstr "Répertoires" ! #: src/gtk/vba.glade:2308 msgid "GBA roms : " msgstr "Roms GBA : " ! #: src/gtk/vba.glade:2338 src/gtk/vba.glade:2494 src/gtk/vba.glade:2597 ! #: src/gtk/vba.glade:2700 src/gtk/vba.glade:2779 src/gtk/vba.glade:2919 ! #: src/gtk/vba.glade:3205 src/gtk/vba.glade:3227 src/gtk/vba.glade:3249 ! #: src/gtk/vba.glade:3271 src/gtk/vba.glade:3293 src/gtk/vba.glade:3315 ! #: src/gtk/vba.glade:3337 src/gtk/vba.glade:3359 src/gtk/vba.glade:3381 ! #: src/gtk/vba.glade:3403 src/gtk/vba.glade:3425 msgid "*" msgstr "*" ! #: src/gtk/vba.glade:2411 msgid "GB roms : " msgstr "Roms GB : " ! #: src/gtk/vba.glade:2464 msgid "Batteries : " msgstr "Batteries : " ! #: src/gtk/vba.glade:2567 msgid "Saves : " msgstr "Sauvegardes : " ! #: src/gtk/vba.glade:2670 msgid "Captures : " msgstr "Captures : " ! #: src/gtk/vba.glade:2831 msgid "Joypad config" msgstr "Configuration du joypad" ! #: src/gtk/vba.glade:2935 msgid "Down : " msgstr "Bas : " ! #: src/gtk/vba.glade:2959 msgid "Left : " msgstr "Gauche : " ! #: src/gtk/vba.glade:2983 msgid "Right : " msgstr "Droite : " ! #: src/gtk/vba.glade:3007 msgid "Button A : " msgstr "Bouton A : " ! #: src/gtk/vba.glade:3031 msgid "Button B : " msgstr "Bouton B : " ! #: src/gtk/vba.glade:3055 msgid "Button L : " msgstr "Bouton L : " ! #: src/gtk/vba.glade:3079 msgid "Button R : " msgstr "Bouton R : " ! #: src/gtk/vba.glade:3103 msgid "Select : " msgstr "Select : " ! #: src/gtk/vba.glade:3127 msgid "Start : " msgstr "Start : " ! #: src/gtk/vba.glade:3151 msgid "Speed : " msgstr "Speed : " ! #: src/gtk/vba.glade:3175 msgid "Capture : " msgstr "Capture : " ! #: src/gtk/vba.glade:3441 msgid "Up : " msgstr "Haut : " ! #: src/gtk/vba.glade:3475 msgid "TCP port" msgstr "Port TCP" ! #: src/gtk/vba.glade:3554 msgid "Port : " msgstr "Port : " --- 842,963 ---- msgstr "à propos de VBA" ! #: src/gtk/vba.glade:2067 msgid "An emulator for Gameboy(TM) and GameboyAdvance(TM)." msgstr "Ãmulateur pour Gameboy⢠et GameboyAdvanceâ¢." ! #: src/gtk/vba.glade:2089 ! msgid "<i>Special thanks to Yann Parmentier aka \"kohai\" for the icons.</i>" ! msgstr "" ! "<i>Remerciements spéciaux à Yann Parmentier aka \"kohai\" pour les icônes.</" ! "i>" ! ! #: src/gtk/vba.glade:2111 msgid "" "<small>Copyright (C) 2004 Forgotten and the VBA development team</small>" ! msgstr "" ! "<small>Copyright © 2004 Forgotten et l'équipe de développement de VBA</small>" ! #: src/gtk/vba.glade:2133 msgid "Throttle" msgstr "Vitesse" ! #: src/gtk/vba.glade:2212 msgid "Throttle : " msgstr "Vitesse : " ! #: src/gtk/vba.glade:2252 msgid " %" msgstr " %" ! #: src/gtk/vba.glade:2283 msgid "Directories" msgstr "Répertoires" ! #: src/gtk/vba.glade:2353 msgid "GBA roms : " msgstr "Roms GBA : " ! #: src/gtk/vba.glade:2383 src/gtk/vba.glade:2539 src/gtk/vba.glade:2642 ! #: src/gtk/vba.glade:2745 src/gtk/vba.glade:2824 src/gtk/vba.glade:2964 ! #: src/gtk/vba.glade:3250 src/gtk/vba.glade:3272 src/gtk/vba.glade:3294 ! #: src/gtk/vba.glade:3316 src/gtk/vba.glade:3338 src/gtk/vba.glade:3360 ! #: src/gtk/vba.glade:3382 src/gtk/vba.glade:3404 src/gtk/vba.glade:3426 ! #: src/gtk/vba.glade:3448 src/gtk/vba.glade:3470 msgid "*" msgstr "*" ! #: src/gtk/vba.glade:2456 msgid "GB roms : " msgstr "Roms GB : " ! #: src/gtk/vba.glade:2509 msgid "Batteries : " msgstr "Batteries : " ! #: src/gtk/vba.glade:2612 msgid "Saves : " msgstr "Sauvegardes : " ! #: src/gtk/vba.glade:2715 msgid "Captures : " msgstr "Captures : " ! #: src/gtk/vba.glade:2876 msgid "Joypad config" msgstr "Configuration du joypad" ! #: src/gtk/vba.glade:2980 msgid "Down : " msgstr "Bas : " ! #: src/gtk/vba.glade:3004 msgid "Left : " msgstr "Gauche : " ! #: src/gtk/vba.glade:3028 msgid "Right : " msgstr "Droite : " ! #: src/gtk/vba.glade:3052 msgid "Button A : " msgstr "Bouton A : " ! #: src/gtk/vba.glade:3076 msgid "Button B : " msgstr "Bouton B : " ! #: src/gtk/vba.glade:3100 msgid "Button L : " msgstr "Bouton L : " ! #: src/gtk/vba.glade:3124 msgid "Button R : " msgstr "Bouton R : " ! #: src/gtk/vba.glade:3148 msgid "Select : " msgstr "Select : " ! #: src/gtk/vba.glade:3172 msgid "Start : " msgstr "Start : " ! #: src/gtk/vba.glade:3196 msgid "Speed : " msgstr "Speed : " ! #: src/gtk/vba.glade:3220 msgid "Capture : " msgstr "Capture : " ! #: src/gtk/vba.glade:3486 msgid "Up : " msgstr "Haut : " ! #: src/gtk/vba.glade:3520 msgid "TCP port" msgstr "Port TCP" ! #: src/gtk/vba.glade:3599 msgid "Port : " msgstr "Port : " *************** *** 1035,1039 **** msgstr "BIOS Gameboy Advance" ! #: src/gtk/windowcallbacks.cpp:1319 msgid "Only GBA images are supported." msgstr "Seules les images GBA sont supportées." --- 1042,1046 ---- msgstr "BIOS Gameboy Advance" ! #: src/gtk/windowcallbacks.cpp:1336 msgid "Only GBA images are supported." msgstr "Seules les images GBA sont supportées." Index: vba-1.7.2.pot =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/po/vba-1.7.2.pot,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** vba-1.7.2.pot 10 May 2004 22:54:51 -0000 1.7 --- vba-1.7.2.pot 12 May 2004 01:07:04 -0000 1.8 *************** *** 9,13 **** "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: undefined\n" ! "POT-Creation-Date: 2004-05-11 00:29+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 9,13 ---- "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: undefined\n" ! "POT-Creation-Date: 2004-05-11 21:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" *************** *** 833,947 **** msgstr "" ! #: src/gtk/vba.glade:2044 msgid "An emulator for Gameboy(TM) and GameboyAdvance(TM)." msgstr "" ! #: src/gtk/vba.glade:2066 msgid "" "<small>Copyright (C) 2004 Forgotten and the VBA development team</small>" msgstr "" ! #: src/gtk/vba.glade:2088 msgid "Throttle" msgstr "" ! #: src/gtk/vba.glade:2167 msgid "Throttle : " msgstr "" ! #: src/gtk/vba.glade:2207 msgid " %" msgstr "" ! #: src/gtk/vba.glade:2238 msgid "Directories" msgstr "" ! #: src/gtk/vba.glade:2308 msgid "GBA roms : " msgstr "" ! #: src/gtk/vba.glade:2338 src/gtk/vba.glade:2494 src/gtk/vba.glade:2597 ! #: src/gtk/vba.glade:2700 src/gtk/vba.glade:2779 src/gtk/vba.glade:2919 ! #: src/gtk/vba.glade:3205 src/gtk/vba.glade:3227 src/gtk/vba.glade:3249 ! #: src/gtk/vba.glade:3271 src/gtk/vba.glade:3293 src/gtk/vba.glade:3315 ! #: src/gtk/vba.glade:3337 src/gtk/vba.glade:3359 src/gtk/vba.glade:3381 ! #: src/gtk/vba.glade:3403 src/gtk/vba.glade:3425 msgid "*" msgstr "" ! #: src/gtk/vba.glade:2411 msgid "GB roms : " msgstr "" ! #: src/gtk/vba.glade:2464 msgid "Batteries : " msgstr "" ! #: src/gtk/vba.glade:2567 msgid "Saves : " msgstr "" ! #: src/gtk/vba.glade:2670 msgid "Captures : " msgstr "" ! #: src/gtk/vba.glade:2831 msgid "Joypad config" msgstr "" ! #: src/gtk/vba.glade:2935 msgid "Down : " msgstr "" ! #: src/gtk/vba.glade:2959 msgid "Left : " msgstr "" ! #: src/gtk/vba.glade:2983 msgid "Right : " msgstr "" ! #: src/gtk/vba.glade:3007 msgid "Button A : " msgstr "" ! #: src/gtk/vba.glade:3031 msgid "Button B : " msgstr "" ! #: src/gtk/vba.glade:3055 msgid "Button L : " msgstr "" ! #: src/gtk/vba.glade:3079 msgid "Button R : " msgstr "" ! #: src/gtk/vba.glade:3103 msgid "Select : " msgstr "" ! #: src/gtk/vba.glade:3127 msgid "Start : " msgstr "" ! #: src/gtk/vba.glade:3151 msgid "Speed : " msgstr "" ! #: src/gtk/vba.glade:3175 msgid "Capture : " msgstr "" ! #: src/gtk/vba.glade:3441 msgid "Up : " msgstr "" ! #: src/gtk/vba.glade:3475 msgid "TCP port" msgstr "" ! #: src/gtk/vba.glade:3554 msgid "Port : " msgstr "" --- 833,951 ---- msgstr "" ! #: src/gtk/vba.glade:2067 msgid "An emulator for Gameboy(TM) and GameboyAdvance(TM)." msgstr "" ! #: src/gtk/vba.glade:2089 ! msgid "<i>Special thanks to Yann Parmentier aka \"kohai\" for the icons.</i>" ! msgstr "" ! ! #: src/gtk/vba.glade:2111 msgid "" "<small>Copyright (C) 2004 Forgotten and the VBA development team</small>" msgstr "" ! #: src/gtk/vba.glade:2133 msgid "Throttle" msgstr "" ! #: src/gtk/vba.glade:2212 msgid "Throttle : " msgstr "" ! #: src/gtk/vba.glade:2252 msgid " %" msgstr "" ! #: src/gtk/vba.glade:2283 msgid "Directories" msgstr "" ! #: src/gtk/vba.glade:2353 msgid "GBA roms : " msgstr "" ! #: src/gtk/vba.glade:2383 src/gtk/vba.glade:2539 src/gtk/vba.glade:2642 ! #: src/gtk/vba.glade:2745 src/gtk/vba.glade:2824 src/gtk/vba.glade:2964 ! #: src/gtk/vba.glade:3250 src/gtk/vba.glade:3272 src/gtk/vba.glade:3294 ! #: src/gtk/vba.glade:3316 src/gtk/vba.glade:3338 src/gtk/vba.glade:3360 ! #: src/gtk/vba.glade:3382 src/gtk/vba.glade:3404 src/gtk/vba.glade:3426 ! #: src/gtk/vba.glade:3448 src/gtk/vba.glade:3470 msgid "*" msgstr "" ! #: src/gtk/vba.glade:2456 msgid "GB roms : " msgstr "" ! #: src/gtk/vba.glade:2509 msgid "Batteries : " msgstr "" ! #: src/gtk/vba.glade:2612 msgid "Saves : " msgstr "" ! #: src/gtk/vba.glade:2715 msgid "Captures : " msgstr "" ! #: src/gtk/vba.glade:2876 msgid "Joypad config" msgstr "" ! #: src/gtk/vba.glade:2980 msgid "Down : " msgstr "" ! #: src/gtk/vba.glade:3004 msgid "Left : " msgstr "" ! #: src/gtk/vba.glade:3028 msgid "Right : " msgstr "" ! #: src/gtk/vba.glade:3052 msgid "Button A : " msgstr "" ! #: src/gtk/vba.glade:3076 msgid "Button B : " msgstr "" ! #: src/gtk/vba.glade:3100 msgid "Button L : " msgstr "" ! #: src/gtk/vba.glade:3124 msgid "Button R : " msgstr "" ! #: src/gtk/vba.glade:3148 msgid "Select : " msgstr "" ! #: src/gtk/vba.glade:3172 msgid "Start : " msgstr "" ! #: src/gtk/vba.glade:3196 msgid "Speed : " msgstr "" ! #: src/gtk/vba.glade:3220 msgid "Capture : " msgstr "" ! #: src/gtk/vba.glade:3486 msgid "Up : " msgstr "" ! #: src/gtk/vba.glade:3520 msgid "TCP port" msgstr "" ! #: src/gtk/vba.glade:3599 msgid "Port : " msgstr "" *************** *** 1024,1028 **** msgstr "" ! #: src/gtk/windowcallbacks.cpp:1319 msgid "Only GBA images are supported." msgstr "" --- 1028,1032 ---- msgstr "" ! #: src/gtk/windowcallbacks.cpp:1336 msgid "Only GBA images are supported." msgstr "" Index: fr.gmo =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/po/fr.gmo,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsgOIk9T and /tmp/cvseyLeBE differ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:43
|
Update of /cvsroot/vba/VisualBoyAdvance/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/m4 Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/m4/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.in 1 May 2004 14:03:55 -0000 1.2 --- Makefile.in 12 May 2004 01:07:04 -0000 1.3 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:32
|
Update of /cvsroot/vba/VisualBoyAdvance/src/sdl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/sdl Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.in 1 May 2004 14:04:03 -0000 1.2 --- Makefile.in 12 May 2004 01:07:07 -0000 1.3 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
From: S?bastien G. <kx...@us...> - 2004-05-12 01:07:32
|
Update of /cvsroot/vba/VisualBoyAdvance/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/win32 Modified Files: Makefile.in Log Message: Added icon. More improvements before the first GTK+ interfaced release. Index: Makefile.in =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/win32/Makefile.in,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.in 1 May 2004 14:04:03 -0000 1.8 --- Makefile.in 12 May 2004 01:07:23 -0000 1.9 *************** *** 107,110 **** --- 107,111 ---- VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ + VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ |
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23509/src/gtk/images Added Files: Makefile.am Makefile.in stock-vba-wm-16.png stock-vba-wm-32.png stock-vba-wm-48.png stock-vba-wm-64.png vba-64.png Log Message: Added icon. More improvements before the first GTK+ interfaced release. --- NEW FILE: Makefile.am --- VBA_WM_IMAGES = \ stock-vba-wm-16.png \ stock-vba-wm-32.png \ stock-vba-wm-48.png \ stock-vba-wm-64.png VBA_WM_VARIABLES = \ stock_vba_wm_16 $(srcdir)/stock-vba-wm-16.png \ stock_vba_wm_32 $(srcdir)/stock-vba-wm-32.png \ stock_vba_wm_48 $(srcdir)/stock-vba-wm-48.png \ stock_vba_wm_64 $(srcdir)/stock-vba-wm-64.png EXTRA_DIST = $(VBA_WM_IMAGES) noinst_DATA = vba-wm-pixbufs.h dist_pkgdata_DATA = vba-64.png CLEANFILES = $(noinst_DATA) $(srcdir)/vba-wm-pixbufs.h: $(VBA_WM_IMAGES) Makefile.am gdk-pixbuf-csource --raw --build-list $(VBA_WM_VARIABLES) > $(@F) --- NEW FILE: stock-vba-wm-32.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Makefile.in --- # Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : host_triplet = @host@ ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMSGFMT = @GMSGFMT@ GTKMM_CFLAGS = @GTKMM_CFLAGS@ GTKMM_CPPFLAGS = @GTKMM_CPPFLAGS@ GTKMM_LIBS = @GTKMM_LIBS@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ NASM = @NASM@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VBA_EXTRA = @VBA_EXTRA@ VBA_LIBS = @VBA_LIBS@ VBA_SRC_EXTRA = @VBA_SRC_EXTRA@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ YACC = @YACC@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ VBA_WM_IMAGES = \ stock-vba-wm-16.png \ stock-vba-wm-32.png \ stock-vba-wm-48.png \ stock-vba-wm-64.png VBA_WM_VARIABLES = \ stock_vba_wm_16 $(srcdir)/stock-vba-wm-16.png \ stock_vba_wm_32 $(srcdir)/stock-vba-wm-32.png \ stock_vba_wm_48 $(srcdir)/stock-vba-wm-48.png \ stock_vba_wm_64 $(srcdir)/stock-vba-wm-64.png EXTRA_DIST = $(VBA_WM_IMAGES) noinst_DATA = vba-wm-pixbufs.h dist_pkgdata_DATA = vba-64.png CLEANFILES = $(noinst_DATA) subdir = src/gtk/images ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_FILES = DIST_SOURCES = DATA = $(dist_pkgdata_DATA) $(noinst_DATA) DIST_COMMON = $(dist_pkgdata_DATA) $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --gnu src/gtk/images/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) uninstall-info-am: dist_pkgdataDATA_INSTALL = $(INSTALL_DATA) install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) @list='$(dist_pkgdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f="`echo $$p | sed -e 's|^.*/||'`"; \ echo " $(dist_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f"; \ $(dist_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f; \ done uninstall-dist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdata_DATA)'; for p in $$list; do \ f="`echo $$p | sed -e 's|^.*/||'`"; \ echo " rm -f $(DESTDIR)$(pkgdatadir)/$$f"; \ rm -f $(DESTDIR)$(pkgdatadir)/$$f; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) top_distdir = ../../.. distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkinstalldirs) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: info: info-am info-am: install-data-am: install-dist_pkgdataDATA install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_pkgdataDATA uninstall-info-am .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am info info-am install \ install-am install-data install-data-am \ install-dist_pkgdataDATA install-exec install-exec-am \ install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am \ uninstall-dist_pkgdataDATA uninstall-info-am $(srcdir)/vba-wm-pixbufs.h: $(VBA_WM_IMAGES) Makefile.am gdk-pixbuf-csource --raw --build-list $(VBA_WM_VARIABLES) > $(@F) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: --- NEW FILE: stock-vba-wm-16.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: stock-vba-wm-64.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vba-64.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: stock-vba-wm-48.png --- (This appears to be a binary file; contents omitted.) |
From: S?bastien G. <kx...@us...> - 2004-05-12 00:52:31
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21036/images Log Message: Directory /cvsroot/vba/VisualBoyAdvance/src/gtk/images added to the repository |
From: S?bastien G. <kx...@us...> - 2004-05-11 13:10:59
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22537 Modified Files: screenarea.cpp screenarea.h Log Message: Improved the cursor timeout stuff. Index: screenarea.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/screenarea.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** screenarea.cpp 11 May 2004 03:07:30 -0000 1.3 --- screenarea.cpp 11 May 2004 13:10:49 -0000 1.4 *************** *** 40,43 **** --- 40,44 ---- set_events(Gdk::EXPOSURE_MASK | Gdk::POINTER_MOTION_MASK + | Gdk::ENTER_NOTIFY_MASK | Gdk::LEAVE_NOTIFY_MASK); *************** *** 202,205 **** --- 203,219 ---- } + void ScreenArea::vStartCursorTimeout() + { + m_oCursorSig.disconnect(); + m_oCursorSig = Glib::signal_timeout().connect( + SigC::slot(*this, &ScreenArea::bOnCursorTimeout), + 3000); + } + + void ScreenArea::vStopCursorTimeout() + { + m_oCursorSig.disconnect(); + } + void ScreenArea::vHideCursor() { *************** *** 251,258 **** vShowCursor(); } ! m_oCursorSig.disconnect(); ! m_oCursorSig = Glib::signal_timeout().connect(SigC::slot(*this, &ScreenArea::bOnCursorTimeout), ! 3000, Glib::PRIORITY_DEFAULT_IDLE); return false; } --- 265,275 ---- vShowCursor(); } + vStartCursorTimeout(); + return false; + } ! bool ScreenArea::on_enter_notify_event(GdkEventCrossing * _pstEvent) ! { ! vStartCursorTimeout(); return false; } *************** *** 260,265 **** bool ScreenArea::on_leave_notify_event(GdkEventCrossing * _pstEvent) { ! m_oCursorSig.disconnect(); ! vShowCursor(); return false; } --- 277,285 ---- bool ScreenArea::on_leave_notify_event(GdkEventCrossing * _pstEvent) { ! vStopCursorTimeout(); ! if (! m_bShowCursor) ! { ! vShowCursor(); ! } return false; } Index: screenarea.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/screenarea.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** screenarea.h 11 May 2004 03:07:30 -0000 1.3 --- screenarea.h 11 May 2004 13:10:49 -0000 1.4 *************** *** 48,53 **** protected: virtual bool on_expose_event(GdkEventExpose * _pstEvent); - virtual bool on_leave_notify_event(GdkEventCrossing * _pstEvent); virtual bool on_motion_notify_event(GdkEventMotion * _pstEvent); virtual bool bOnCursorTimeout(); --- 48,54 ---- protected: virtual bool on_expose_event(GdkEventExpose * _pstEvent); virtual bool on_motion_notify_event(GdkEventMotion * _pstEvent); + virtual bool on_enter_notify_event(GdkEventCrossing * _pstEvent); + virtual bool on_leave_notify_event(GdkEventCrossing * _pstEvent); virtual bool bOnCursorTimeout(); *************** *** 69,72 **** --- 70,75 ---- void vUpdateSize(); + void vStartCursorTimeout(); + void vStopCursorTimeout(); void vHideCursor(); void vShowCursor(); |