Skip to content

Commit 3ce7ade

Browse files
committed
release r13
1 parent 42f3c51 commit 3ce7ade

File tree

3 files changed

+28
-11
lines changed

3 files changed

+28
-11
lines changed

AUTHORS

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
Wei Mingzhi (Maintainer, input plugin, iso/cheat support, misc stuff)
2525

2626
ARM NEON GPU plugin:
27-
(C) 2011 Exophase
28-
(C) 2011 notaz
27+
(C) 2011-2012 Exophase
28+
(C) 2011-2012 notaz
2929

3030
PCSX4ALL GPU plugin:
3131
(C) 2010 PCSX4ALL Team
@@ -53,7 +53,10 @@ MIPS->ARM recompiler:
5353
(C) 2009-2011 Ari64
5454

5555
integration, optimization and frontend:
56-
(C) 2010-2011 notaz
56+
(C) 2010-2012 notaz
57+
58+
Special thanks to Mednafen author, shalma/gretar and Rokas for
59+
various help and ideas while developing this emulator.
5760

5861
some implementation ideas (and maybe code?) likely originated from
5962
MAME/smf/pSXauthor and were integrated by various people to PCSX.

frontend/menu.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1666,7 +1666,7 @@ static void draw_frame_main(void)
16661666

16671667
static void draw_frame_credits(void)
16681668
{
1669-
smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc);
1669+
smalltext_out16(4, 1, "build: " __DATE__ " " __TIME__ " " REV, 0xe7fc);
16701670
}
16711671

16721672
static const char credits_text[] =
@@ -1676,14 +1676,14 @@ static const char credits_text[] =
16761676
"(C) 2009-2011 PCSX-Reloaded Team\n\n"
16771677
"ARM recompiler (C) 2009-2011 Ari64\n"
16781678
#ifdef __ARM_NEON__
1679-
"ARM NEON GPU (c) 2011 Exophase\n"
1679+
"ARM NEON GPU (c) 2011-2012 Exophase\n"
16801680
#endif
16811681
"PEOpS GPU and SPU by Pete Bernert\n"
16821682
" and the P.E.Op.S. team\n"
16831683
"PCSX4ALL plugin by PCSX4ALL team\n"
16841684
" Chui, Franxis, Unai\n\n"
16851685
"integration, optimization and\n"
1686-
" frontend (C) 2010-2011 notaz\n";
1686+
" frontend (C) 2010-2012 notaz\n";
16871687

16881688
static int reset_game(void)
16891689
{

readme.txt

+19-5
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@ spunull.so - NULL plugin, i.e. no sound emulation.
7575
Changelog
7676
---------
7777

78+
r13 (2012-01-09)
79+
* yet more fixes for regressions from earlier versions
80+
* various fixes for NEON GPU (in collaboration with Exophase)
81+
+ NEON GPU supports interlace mode now, but it's not always
82+
enabled due to frameskip glithes (can be changed in the menu)
83+
* cdda should resume on savestate load now
84+
* fixed date display in menus to honour locale
85+
+ pandora: added support for minimizing the emulator (while ingame only)
86+
7887
r12 (2011-12-24)
7988
+ new ARM NEON GPU rasterizer from Exophase (NEON hardware required)
8089
+ new GPU emulation code
@@ -259,8 +268,8 @@ Emulator core:
259268
Wei Mingzhi (Maintainer, input plugin, iso/cheat support, misc stuff)
260269

261270
NEON GPU plugin:
262-
(C) 2011 Exophase
263-
(C) 2011 notaz
271+
(C) 2011-2012 Exophase
272+
(C) 2011-2012 notaz
264273

265274
PCSX4ALL GPU plugin:
266275
(C) 2010 PCSX4ALL Team
@@ -288,13 +297,18 @@ MIPS->ARM recompiler:
288297
(C) 2009-2011 Ari64
289298

290299
integration, optimization and frontend:
291-
(C) 2010-2011 notaz
300+
(C) 2010-2012 notaz
301+
302+
Special thanks to Mednafen author, shalma/gretar and Rokas for
303+
various help while developing this emulator.
292304

293-
some implementation ideas (and maybe code?) likely originated from
305+
Some implementation ideas (and maybe code?) likely originated from
294306
MAME/smf/pSXauthor and were integrated by various people to PCSX.
295307

296308
Source code is released under GNU GPL license, version 2 or later.
297-
See COPYING included in the archive (.pnd can be extracted using unsquashfs).
309+
See COPYING included in the archive (pandora version's .pnd can be
310+
extracted using unsquashfs).
311+
298312
The source code is available in a GIT repository at:
299313

300314
git://notaz.gp2x.de/~notaz/pcsx_rearmed.git

0 commit comments

Comments
 (0)