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
(1) |
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
(2) |
|
|
|
|
|
|
From: Pokemonhacker <pok...@us...> - 2004-10-31 18:26:12
|
Update of /cvsroot/vba/VisualBoyAdvance/src/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18378 Modified Files: GBPaletteView.cpp Log Message: Fix Palette save filename bug Index: GBPaletteView.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/GBPaletteView.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GBPaletteView.cpp 13 May 2004 15:06:49 -0000 1.3 --- GBPaletteView.cpp 31 Oct 2004 18:26:01 -0000 1.4 *************** *** 137,140 **** --- 137,142 ---- } + captureBuffer = dlg.GetPathName(); + PaletteViewControl *p = NULL; |
From: Pokemonhacker <pok...@us...> - 2004-10-31 18:25:53
|
Update of /cvsroot/vba/VisualBoyAdvance/src/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18311 Modified Files: PaletteView.cpp Log Message: Fix Palette save filename bug Index: PaletteView.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/win32/PaletteView.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PaletteView.cpp 13 May 2004 15:06:55 -0000 1.4 --- PaletteView.cpp 31 Oct 2004 18:25:40 -0000 1.5 *************** *** 135,138 **** --- 135,140 ---- } + captureBuffer = dlg.GetPathName(); + PaletteViewControl *p = NULL; |
From: Pokemonhacker <pok...@us...> - 2004-10-13 21:07:14
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30241 Modified Files: RTC.cpp elf.cpp Log Message: - fixed RTC support for day of the week (fixed at Sunday before) - fixed loading of ELF multiboot files (section/program header sizes not taken into account as in the regular case - Thanks J.W.) Index: elf.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** elf.cpp 13 May 2004 15:06:45 -0000 1.18 --- elf.cpp 13 Oct 2004 21:07:03 -0000 1.19 *************** *** 2660,2663 **** --- 2660,2664 ---- data + READ32LE(&ph->offset), READ32LE(&ph->filesz)); + size += READ32LE(&ph->filesz); } } else { *************** *** 2709,2712 **** --- 2710,2714 ---- READ32LE(&sh[i]->offset), READ32LE(&sh[i]->size)); + size += READ32LE(&sh[i]->size); } } else { Index: RTC.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/RTC.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RTC.cpp 13 May 2004 15:06:44 -0000 1.7 --- RTC.cpp 13 Oct 2004 21:07:03 -0000 1.8 *************** *** 132,136 **** rtcClockData.data[1] = toBCD(newtime->tm_mon+1); rtcClockData.data[2] = toBCD(newtime->tm_mday); ! rtcClockData.data[3] = 0; rtcClockData.data[4] = toBCD(newtime->tm_hour); rtcClockData.data[5] = toBCD(newtime->tm_min); --- 132,136 ---- rtcClockData.data[1] = toBCD(newtime->tm_mon+1); rtcClockData.data[2] = toBCD(newtime->tm_mday); ! rtcClockData.data[3] = toBCD(newtime->tm_wday); rtcClockData.data[4] = toBCD(newtime->tm_hour); rtcClockData.data[5] = toBCD(newtime->tm_min); |