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
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
(2) |
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
|
From: Pokemonhacker <pok...@us...> - 2005-07-17 18:57:26
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29885 Modified Files: Gfx.h Log Message: - Updated the copyright. Index: Gfx.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Gfx.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Gfx.h 17 Jul 2005 18:55:43 -0000 1.15 --- Gfx.h 17 Jul 2005 18:57:08 -0000 1.16 *************** *** 2,6 **** // 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 --- 2,6 ---- // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2005 Forgotten and the VBA development team // This program is free software; you can redistribute it and/or modify |
From: Pokemonhacker <pok...@us...> - 2005-07-17 18:55:53
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29500 Modified Files: Gfx.h Log Message: - Corrected a typo in gfxDrawRotScreen. Index: Gfx.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Gfx.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Gfx.h 14 Nov 2004 18:52:52 -0000 1.14 --- Gfx.h 17 Jul 2005 18:55:43 -0000 1.15 *************** *** 306,310 **** if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFFF; if(pd & 0x8000) dmy |= 0xFFFF8000; --- 306,310 ---- if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFF; if(pd & 0x8000) dmy |= 0xFFFF8000; *************** *** 463,467 **** if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFFF; if(pd & 0x8000) dmy |= 0xFFFF8000; --- 463,467 ---- if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFF; if(pd & 0x8000) dmy |= 0xFFFF8000; *************** *** 561,565 **** if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFFF; if(pd & 0x8000) dmy |= 0xFFFF8000; --- 561,565 ---- if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFF; if(pd & 0x8000) dmy |= 0xFFFF8000; *************** *** 662,666 **** if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFFF; if(pd & 0x8000) dmy |= 0xFFFF8000; --- 662,666 ---- if(pc & 0x8000) dy |= 0xFFFF8000; ! int dmy = pd & 0x7FFF; if(pd & 0x8000) dmy |= 0xFFFF8000; |