forked from notaz/pcsx_rearmed
-
Notifications
You must be signed in to change notification settings - Fork 120
/
ChangeLog
2092 lines (1661 loc) · 83.8 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
August 7, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/r3000a.h: Refactored the interrupt scheduling code to make it a
little more readable than using the "magic" numbers.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/mdec.c: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxdma.h: Likewise.
* libpcsxcore/misc.c: Bumped savestate version.
* debian/changelog: Updated version.
* macosx/Info.plist: Likewise.
* po/zh_TW.po: Corrected a minor translation error.
August 2, 2010 Wei Mingzhi <[email protected]>
* macosx/Pcsx.xcodeproj/project.pbxproj: Added some more optimizations
parameters for the Deployment build.
August 1, 2010 Wei Mingzhi <[email protected]>
* plugins/dfinput/cfg-gtk2.c: Only accept axis input if the current axis
position is off enough from the previous position or initial position.
* macosx/plugins/DFInput/macsrc/cfg.c: Likewise.
* macosx/plugins/DFInput/macsrc/cfg.h: Likewise.
* macosx/plugins/DFInput/macsrc/MappingCell.m: Likewise.
* macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj: Fixed compile
error.
July 31, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/spu.c: Silenced warning on Mac OS X and FreeBSD.
* macosx/plugins/DFInput/SDL/include/SDL_haptic.h: Upgraded to SDL 1.3 Beta.
* macosx/plugins/DFInput/SDL/include/SDL_error.h: Likewise.
* macosx/plugins/DFInput/SDL/include/begin_code.h: Likewise.
* macosx/plugins/DFInput/SDL/include/close_code.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_endian.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_joystick.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_main.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_stdinc.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_platform.h: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_config.h: Likewise.
* macosx/plugins/DFInput/SDL/src/joystick/SDL_joystick.c: Likewise.
* macosx/plugins/DFInput/SDL/src/joystick/darwin/SDL_sysjoystick.c: Likewise.
* macosx/plugins/DFInput/SDL/src/joystick/darwin/SDL_sysjoystick_c.h: Likewise.
* macosx/plugins/DFInput/SDL/src/joystick/SDL_sysjoystick.h: Likewise.
* macosx/plugins/DFInput/SDL/src/joystick/SDL_joystick_c.h: Likewise.
* macosx/plugins/DFInput/SDL/src/SDL.c: Likewise.
* macosx/plugins/DFInput/SDL/src/SDL_error_c.h: Likewise.
* macosx/plugins/DFInput/SDL/src/haptic/SDL_syshaptic.h: Likewise.
* macosx/plugins/DFInput/SDL/src/haptic/SDL_haptic_c.h: Likewise.
* macosx/plugins/DFInput/SDL/src/haptic/darwin/SDL_syshaptic.c: Likewise.
* macosx/plugins/DFInput/SDL/src/haptic/SDL_haptic.c: Likewise.
* macosx/plugins/DFInput/SDL/src/SDL_error.c: Likewise.
* macosx/plugins/DFInput/SDL/include/SDL_name.h: Deleted.
* macosx/plugins/DFInput/SDL/include/SDL_version.h: Likewise.
* macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj: Updated.
* macosx/plugins/DFInput/macsrc/cfg.h: Include SDL_joystick.h.
* plugins/dfinput/pad.h: Likewise.
* macosx/PcsxController.h: Removed some useless stuff.
* macosx/PcsxController.m: Likewise.
* macosx/English.lproj/PCSX.nib/objects.nib: Likewise.
* macosx/English.lproj/PCSX.nib/classes.nib: Likewise.
* macosx/Pcsx.xcodeproj/project.pbxproj: Added some optimizations for
Deployment build.
July 29, 2010 Wei Mingzhi <[email protected]>
* macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj: Implemented
config dialog box.
* macosx/plugins/DFInput/macsrc/cfg.c: Likewise.
* macosx/plugins/DFInput/macsrc/MappingCell.h: Likewise.
* macosx/plugins/DFInput/macsrc/PadController.m: Likewise.
* macosx/plugins/DFInput/macsrc/cfg.h: Likewise.
* macosx/plugins/DFInput/macsrc/ControllerList.h: Likewise.
* macosx/plugins/DFInput/macsrc/PadView.h: Likewise.
* macosx/plugins/DFInput/macsrc/MappingCell.m: Likewise.
* macosx/plugins/DFInput/macsrc/ControllerList.m: Likewise.
* macosx/plugins/DFInput/macsrc/PadView.m: Likewise.
* macosx/plugins/DFInput/macsrc/PadController.h: Likewise.
* macosx/plugins/DFInput/English.lproj/NetPcsxHIDInputPluginMain.nib:
Likewise.
* macosx/plugins/DFInput/English.lproj/NetPcsxHIDInputPluginMain.nib/
info.nib: Likewise.
* macosx/plugins/DFInput/English.lproj/NetPcsxHIDInputPluginMain.nib/
keyedobjects.nib: Likewise.
* macosx/plugins/DFInput/English.lproj/NetPcsxHIDInputPluginMain.nib/
classes.nib: Likewise.
* macosx/plugins/DFInput/English.lproj/Credits.rtf: Likewise.
* macosx/plugins/DFCdrom/macsrc/cdr-macosx.c: Add check for whether the
disc is really a PSX CD or not.
* macosx/Pcsx.xcodeproj/project.pbxproj: Added DFInput to project.
* macosx/plugins/HIDInput: Removed.
* plugins/peopsxgl/draw.c: Replaced global symbols with glXGetProcAddress
call (courtesy of siveritas).
* AUTHORS: Updated info.
July 25, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr.c: Wait for reading thread to complete for all
operations.
* plugins/dfcdrom/cdr.h: Don't define USE_NULL under Mac OS X.
* macosx/plugins/DFCdrom: Added Mac OS X port of DFCdrom.
* macosx/plugins/CDDeviceInterface: Removed old CDDeviceInterface plugin.
* macosx/Pcsx.xcodeproj/project.pbxproj: Added DFCdrom into project.
* plugins/dfinput/pad.c: Minor change for Mac OS X.
* plugins/dfinput/pad.h: Likewise.
* macosx/plugins/DFInput: Added Mac OS X port of DFInput (prelimiary, no
config dialog yet).
July 18, 2010 Wei Mingzhi <[email protected]>
* plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2: Tweaked the config dialog
to make it less confusing.
* plugins/dfxvideo/gpucfg-0.1df/main.c: Likewise.
July 17, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr-libcdio.c: Include libcdio headers before cdr.h.
* macosx/plugins/CDDeviceInterface/src/PlugCD.c: Check for kIODVDMediaClass
as well (MIGHT fix the "Can't check CD-ROM" issue, cannot test).
July 15, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr-libcdio.c: Force CAM access mode on FreeBSD.
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Use /dev/cd? instead on /dev/acd? on
FreeBSD.
* plugins/dfcdrom/cdr.h: Likewise.
* plugins/dfxvideo/cfg.c: Don't use 2xSai when no config file exists.
* autogen.sh: Use autoreconf.
July 14, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr.h: Silenced warning on macro redefination when using
libcdio with some special configuration.
* plugins/dfsound/spucfg-0.1df/main.c: Set volume to High by default.
July 13, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/socket.c: Fixed FTBFS on Windows.
* po/zh_CN.po: Updated.
July 12, 2010 Wei Mingzhi <[email protected]>
* configure.ac: Use pkgconfig to detect libcdio.
* plugins/dfcdrom/Makefile.am: Likewise.
July 11, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cfg.c: Pick default cdrom device automatically on Solaris.
* plugins/dfsound/spu.c: Reverted the previous change.
July 10, 2010 Wei Mingzhi <[email protected]>
* configure.ac: Added --enable-libcdio parameter.
* libpcsxcore/cdriso.c: Moved CRC check into...
* libpcsxcore/cdrom.c: ...here.
* libpcsxcore/misc.c: Moved calcCrc() to misc.c.
* libpcsxcore/misc.h: Likewise.
* libpcsxcore/plugins.h: Added CRC field to SubQ struct.
* plugins/dfcdrom/cdr-freebsd.c: Removed.
* plugins/dfcdrom/cdr-solaris.c: Likewise.
* plugins/dfcdrom/cdr-linux.c: Added raw MMC command support.
* plugins/dfcdrom/cdr-null.c: Return 0 for PlayCDDA()/StopCDDA().
* plugins/dfcdrom/cdr.c: Moved several utility functions to util.c.
* plugins/dfcdrom/util.c: Added.
* plugins/dfcdrom/cfg.c: Removed unnecessary includes.
* plugins/dfcdrom/cdr-libcdio.c: Added libcdio support.
* plugins/dfcdrom/Makefile.am: Added util.c and cdr-libcdio.c, removed
cdr-freebsd.c and cdr-solaris.c.
* plugins/dfsound/cfg.c: Store config file into plugins dir by default.
* plugins/dfsound/spu.c: Made volume louder.
* po/POTFILES.in: Added files in plugins/bladesio1.
* po/update-pot.sh: Likewise.
* po/pcsx.pot, po/*.po: Updated.
July 9, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr-solaris.c: Added (not implemented for now).
* plugins/dfcdrom/Makefile.am: Added cdr-solaris.c.
* plugins/dfcdrom/cdr-freebsd.c: Return 0 for PlayCDDA()/StopCDDA().
* gui/ConfDlg.c: Don't use dlerror() to check for symbol load failure.
* plugins/dfcdrom/cdr.c: Make cdHandle singleton as it could be different
type on some OS and we don't need to open multiple handles.
* plugins/dfcdrom/cdr.h: Likewise.
* plugins/dfcdrom/cdr-linux.c: Likewise.
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Added device listing for Solaris.
* configure.ac: Fixed FTBFS on Solaris.
* plugins/peopsxgl/draw.c: Don't use glColorTableEXT on Solaris.
* libpcsxcore/socket.c: Silenced warning on Solaris.
* plugins/dfinput/cfg.c: Renamed LoadConfig()/SaveConfig() to avoid problems
with some OSes like Solaris.
* plugins/dfinput/cfg-gtk2.c: Likewise.
* plugins/dfinput/pad.c: Likewise.
* plugins/dfinput/pad.h: Likewise.
* gui/AboutDlg.c: Minor text change.
July 8, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr.c: Refactored for better portability.
* plugins/dfcdrom/cdr.h: Likewise.
* plugins/dfcdrom/cfg.c: Likewise.
* plugins/dfcdrom/cdr-linux.c: Likewise.
* plugins/dfcdrom/cdr-null.c: Likewise.
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Likewise.
* plugins/dfcdrom/cdr-freebsd.c: Added prelimiary FreeBSD port (not working
yet).
* plugins/dfcdrom/Makefile.am: Added cdr-linux.c, cdr-null.c, cdr-freebsd.c.
* configure.ac: Added bladesio1.
* Makefile.am: Likewise.
July 7, 2010 edgbla <[email protected]>
* plugins/bladesio1/gui.c: Sio1 plugin (dummy).
* plugins/bladesio1/Makefile.am: Likewise.
* plugins/bladesio1/settings.c: Likewise.
* plugins/bladesio1/settings.h: Likewise.
* plugins/bladesio1/sio1.c: Likewise.
* plugins/bladesio1/sio1.h: Likewise.
* plugins/bladesio1/sio1.glade2: Likewise.
July 7, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/plugins.c: #ifdef'ed out the currently unused Sio1 API.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* win32/gui/AboutDlg.c: Minor text change.
* po/pcsx.pot, po/*.po: Updated.
* libpcsxcore/socket.c: Fixed FTBFS on FreeBSD.
* configure.ac: Likewise.
* gui/Makefile.am: Likewise.
* plugins/dfcdrom/cdr-null.c: Likewise.
* libpcsxcore/plugins.c: Fixed plugin loading with FreeBSD.
July 4, 2010 edgbla <[email protected]>
* libpcsxcore/plugins.c: GPUvBlank (for gpuBladeSoft now, experimental).
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
July 3, 2010 edgbla <[email protected]>
* libpcsxcore/psxhw.c: Sio1 interface (link cable).
* libpcsxcore/plugins.c: Likewise.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxcommon.h: Likewise.
July 2, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdriso.c: Fixed subchannel data handling with images ripped
with cdrdao. Removed support for AcetoneISO. Parse .cue file as .toc file
when needed to satisfy some stupid tutorials which tell users to use cdrdao
to rip a "bin/cue" image which is in fact a "bin/toc" image.
July 2, 2010 edgbla <[email protected]>
* po/ru_RU.po: Updated.
July 1, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdriso.c: Added support for images ripped with cdrdao with
"--read-subchan rw_raw" for subchannel data.
* po/pcsx.pot, po/*.po: Updated.
Jun 30, 2010 Wei Mingzhi <[email protected]>
* macosx/PcsxController.m: Default dynarec to off until it's actually working
for Mac OS X :(
Jun 29, 2010 Wei Mingzhi <[email protected]>
* win32/gui/plugin.c: Close PAD plugins before other plugins and don't check
return value for PADclose(), which should fix issues with LilyPad.
* plugins/dfxvideo/gpu.c: Added 'fake gpu busy' hack and GPUsetFix() API
from P.E.Op.S Soft GPU 1.18.
* plugins/dfxvideo/externals.h: Likewise.
* plugins/dfxvideo/prim.c: Likewise.
* plugins/dfxvideo/gpucfg-0.1df/main.c: Likewise.
* plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2: Likewise.
* macosx/plugins/DFXVideo/English.lproj/NetSfPeopsSoftGPUConfig.nib/classes.nib:
Likewise.
* macosx/plugins/DFXVideo/English.lproj/NetSfPeopsSoftGPUConfig.nib/keyedobjects.nib:
Likewise.
* po/pcsx.pot, po/*.po: Updated.
Jun 26, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxbios.c: Fixed bcopy() (FF9 battle crash with HLE BIOS - my
mistake :( ).
* libpcsxcore/misc.c: Added check for HLE BIOS in savestate, bumped savestate
version, don't byteswap savestate version as part of savestate data is not
endianness clean.
Jun 24, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/spu.c: Reset lastch to -1 in SPUinit().
* plugins/dfsound/psemu.c: Removed support for obsoleted ancient API.
* plugins/dfsound/Makefile.am: Removed psemu.c.
* macosx/plugins/DFSound/PeopsSPU.xcodeproj/project.pbxproj: Likewise.
Jun 23, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/sio.c: Convert more ASCII characters to half-width.
Jun 21, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxbios.c: Use a separate flag to identify whether we are
inside a softcall or not, as ra might be modified inside the interrupt
handler.
* libpcsxcore/psxbios.h: Likewise.
* libpcsxcore/psxcommon.c: Likewise.
* plugins/dfsound/spu.c: Moved initialization routine from SPUopen() into
SPUinit().
* plugins/dfsound/freeze.c: Save spuAddr as well.
* po/Makefile.in.in: Silenced warning.
Jun 20, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/freeze.c: Reset lastch when loading state, which fixes
occasionally crash after state loading.
* plugins/dfsound/spu.c: Likewise.
Jun 19, 2010 Wei Mingzhi <[email protected]>
* macosx/PcsxController.m: Do not simulate CD case open if user clicked
Cancel in switch ISO dialog.
Jun 16, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxcommon.c: Do not allow hotkeys inside a softcall from HLE
BIOS.
* configure.ac: Removed -fno-dse, which is no longer necessary.
Jun 9, 2010 Wei Mingzhi <[email protected]>
* win32/pcsx.rc: Embed manifest properly under MSVC6.
Jun 8, 2010 Wei Mingzhi <[email protected]>
* plugins/dfcdrom/cdr-linux.c: Implemented CDRgetTE() and CDRreadCDDA() (not
tested).
* plugins/dfcdrom/cdr-null.c: Added CDRgetBufferSub().
* libpcsxcore/plugins.c: CDRgetBufferSub() is now mandatory (again) :)
Jun 7, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdrom.c: Use boolean/TRUE/FALSE for where it should, don't use
"long" type for cdrStruct which is to be saved in savestates.
* libpcsxcore/cdrom.h: Likewise.
* libpcsxcore/misc.c: Bumped savestate version.
* libpcsxcore/plugins.c: Added support for CDRreadCDDA()/CDRgetTE() (not used
for now).
* libpcsxcore/plugins.h: Likewise.
Jun 6, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/sio.c: Fixed: 'y' and 'z' not converted to half-width.
Jun 4, 2010 Wei Mingzhi <[email protected]>
* gui/Plugin.c: Hack-fixed the bug which causes crash when loading state
with dynarec CPU core. A large amount of refactor is needed for a proper
fix.
* win32/gui/WndMain.c: Changed language code corresponding to the ones in
source tree.
* libpcsxcore/psxmem.c: Minor comment fix.
Jun 3, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cheat.c: Fixed endianness issue (not tested).
* libpcsxcore/cdrom.c: Changed CDR interrupt timing value so that it behaves
the same as old revisions. Not sure if it breaks or unbreaks anything.
* libpcsxcore/psxbios.c: Silenced some GCC warnings.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/misc.c: Bumped savestate version.
* libpcsxcore/ix86/iR3000A.c: Use %x instead of %lx.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* po/zh_CN.po, po/zh_TW.po: Updated ("PS" seems to be more common than "PSX"
in Asian regions).
Jun 2, 2010 Wei Mingzhi <[email protected]>
* gui/MemcardDlg.c: Use unsigned for currentIcon.
* libpcsxcore/cdrom.c: Use %x instead of %lx.
* libpcsxcore/psxbios.c: Likewise.
* libpcsxcore/psxdma.c: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* gui/Makefile.am: Added -ldl.
* plugins/dfinput/Makefile.am: Added -lX11 to cfgDFInput_LDFLAGS.
Jun 1, 2010 Wei Mingzhi <[email protected]>
* gui/MemcardDlg.c: Fixed icon animation.
* gui/ConfDlg.c: Minor text change.
* win32/gui/ConfigurePlugins.c: Likewise.
* po/pcsx.pot, po/zh_CN.po, po/zh_TW.po, po/ru_RU.po, po/it.po, po/pt_BR.po:
Updated.
* win32/pcsx.dev: Added sjisfont.h.
May 31, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxbios.c: Implemented Krom2RawAdd().
* libpcsxcore/sjisfont.h: Added font data.
* macosx/Pcsx.xcodeproj/project.pbxproj: Added sjisfont.h.
* win32/pcsx.vcproj: Likewise.
* win32/pcsx.dsp: Likewise.
* libpcsxcore/Makefile.am: Likewise.
May 30, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxbios.c: Fixed memcpy(), create new stack for interrupt
handlers.
May 29, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxbios.c: Implemented more functions without standard C library
calls.
May 28, 2010 Wei Mingzhi <[email protected]>
* macosx/Pcsx.xcodeproj/project.pbxproj: Fixed Xcode Project.
* macosx/English.lproj/InfoPlist.strings: Updated info.
* autogen.sh: Removed autoreconf.
* libpcsxcore/psxbios.c: Implemented more functions by hand (qsort() is not
tested).
May 25, 2010 Wei Mingzhi <[email protected]>
* po/pt_BR.po, po/it.po, po/zh_TW.po, po/ru_RU.po, po/pcsx.pot, po/zh_CN.po:
Updated.
* win32/gui/WndMain.c: Do not make temporary buffer static.
* win32/intl/gettext.c: Likewise.
May 24, 2010 Wei Mingzhi <[email protected]>
* win32/gui/WndMain.c: Also show Japanese titles properly for Windows
(need to set ACP to east-asian languages).
* win32/intl/gettext.c: Added a hack for UTF-8 support.
* win32/gui/AboutDlg.c: Updated info.
* win32/config.h: Silenced MSVC6 warnings.
* libpcsxcore/psxbios.c: Implemented more functions. RNG should behave
exactly the same as real BIOS now.
* libpcsxcore/psxcounters.c: Fixed freeze bug when launching an NTSC game
when Config.PsxAuto is enabled and Config.PsxType is set to PAL.
May 23, 2010 Wei Mingzhi <[email protected]>
* AUTHORS: Updated info.
* gui/AboutDlg.c: Likewise, and fixed FTBFS on SLED 10.
* gui/MemcardDlg.c: Show Japanese titles properly.
* libpcsxcore/sio.h: Likewise.
* libpcsxcore/sio.c: Likewise.
May 22, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/pulseaudio.c: Use Native Endian instead of Little Endian.
May 21, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/oss.c: Readded OSS, PulseAudio, ALSA & NULL backends.
* plugins/dfsound/pulseaudio.c: Likewise.
* plugins/dfsound/nullsnd.c: Likewise.
* plugins/dfsound/alsa.c: Likewise.
* plugins/dfsound/spu.c: Likewise.
* configure.ac: Added an option --enable-sound to specify the sound backend.
* plugins/dfsound/Makefile.am: Likewise.
* po/pt_BR.po, po/it.po, po/zh_TW.po, po/ru_RU.po, po/pcsx.pot, po/zh_CN.po:
Updated.
* libpcsxcore/psxbios.c: Implemented several HLE BIOS functions inside the
core instead of calling the standard C functions. (Not done yet)
* plugins/dfsound/sdl.c: Changed buffer size.
* libpcsxcore/psxinterpreter.c: Revert the previous revert (why the problem
on amd64 disappeared?).
* libpcsxcore/ppc/pR3000A.c: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/ix86/iR3000A.c: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxdma.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/mdec.c: Likewise, and fixed the cycle value in mdec1Interrupt().
May 20, 2010 Wei Mingzhi <[email protected]>
* macosx/main.m: Removed obsolete code, added const to function definations.
* libpcsxcore/plugins.c: Added brackets around the use of CheckErr().
* libpcsxcore/psxcommon.h: Added brackets around gzfreeze().
* plugins/dfinput/Makefile.am: Use $(SDL_CFLAGS) and $(SDL_LIBS).
* plugins/dfsound/Makefile.am: Likewise.
* libpcsxcore/psxmem.c: Map 1fc00000-1fc7ffff and 9fc00000-9fc7ffff to BIOS
as well.
May 19, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/sdl.c: Use SDL for Sound Plugin.
* plugins/dfsound/oss.c: Removed OSS, PulseAudio, ALSA & NULL sound code. If
these are ever needed in the future we still have the thing called version
control.
* plugins/dfsound/pulseaudio.c: Likewise.
* plugins/dfsound/nullsnd.c: Likewise.
* plugins/dfsound/alsa.c: Likewise.
* plugins/dfsound/spu.c: Removed OSS/PulseAudio/ALSA/NULL plugin names,
added SDL plugin name.
* debian/control: Removed libasound2-dev.
* debian/rules: Removed --enable-alsa.
* configure.ac: Removed ALSA, PulseAudio & OSS stuff.
* plugins/dfsound/Makefile.am: Likewise.
* po/pt_BR.po, po/it.po, po/zh_TW.po, po/ru_RU.po, po/pcsx.pot, po/zh_CN.po:
Updated.
* libpcsxcore/psxinterpreter.c: Reverted the change to how BIAS was handled in
r48024, which was causing problems with x64 dynarec core.
* libpcsxcore/ppc/pR3000A.c: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/mdec.c: Likewise.
* libpcsxcore/ix86/iR3000A.c: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxdma.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
May 16, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/plugins.c: Added brackets around CheckErr() and LoadSym().
May 15, 2010 edgbla <[email protected]>
* libpcsxcore/psxdma.h: spu dma was fixed.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/psxdma.c: Likewise.
May 14, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/plugins.c: Fixed crash when launching another game if netplay
plugin is selected but not used during the previously running game.
* gui/Plugin.c: Use TRUE/FALSE for Config.UseNet.
* win32/gui/plugin.c: Likewise.
* libpcsxcore/psxbios.c: Minor cleanup.
May 14, 2010 edgbla <[email protected]>
* libpcsxcore/psxinterpreter.c: Bias was moved into rec/int.
* libpcsxcore/ppc/pR3000A.c: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/mdec.c: Likewise.
* libpcsxcore/ix86/iR3000A.c: Likewise.
* libpcsxcore/psxcommon.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxdma.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
* po/ru_RU.po: Updated.
May 14, 2010 Wei Mingzhi <[email protected]>
* data/pcsx.glade2: Moved About dialog box out of glade2 file.
* gui/AboutDlg.c: Added.
* gui/AboutDlg.h: Likewise.
* gui/Gtk2Gui.c: Call RunAboutDialog() instead of showing about dialog from
glade2 file.
* po/pcsx.pot, po/pt_BR.po, po/it.po, po/zh_TW.po, po/ru_RU.po, po/zh_CN.po:
Updated.
* gui/Makefile.am: Added AboutDlg.c.
* po/POTFILES.in: Added all current files.
May 13, 2010 edgbla <[email protected]>
* libpcsxcore/plugins.h: CDRgetBufferSub for internal cdr plugin.
* libpcsxcore/plugins.c: Likewise.
May 13, 2010 Wei Mingzhi <[email protected]>
* plugins/dfnet/gui.c: Get the correct address under GNU/Linux.
* plugins/dfnet/dfnet.c: Removed sockGetIP(), which is unused in plugin.
* plugins/dfnet/dfnet.h: Likewise.
* plugins/dfnet/dfnet.glade2: Fixed max length of IP address entry.
* libpcsxcore/gte.c: Improved accuracy (or 'inaccuracy') of the divider
(courtesy of shalma).
* libpcsxcore/gte_divider.h: Added.
* win32/pcsx.dsp: Added gte_divider.h.
* win32/pcsx.vcproj: Likewise.
* win32/pcsx.dev: Likewise.
May 13, 2010 edgbla <[email protected]>
* libpcsxcore/plugins.h: PADreadPort1/2 for NRage pad plugin (windows).
* libpcsxcore/plugins.c: Likewise.
* po/ru_RU.po: Updated.
May 13, 2010 Wei Mingzhi <[email protected]>
* configure.ac: Added plugins/dfnet/Makefile.am.
* Makefile.am: Added plugins/dfnet.
* plugins/dfnet/dfnet.c: Added NetPlay plugin (based on netSock).
* plugins/dfnet/unix.c: Likewise.
* plugins/dfnet/cfg.c: Likewise.
* plugins/dfnet/gui.c: Likewise.
* plugins/dfnet/dfnet.h: Likewise.
* plugins/dfnet/Makefile.am: Likewise.
* plugins/dfnet/dfnet.glade2: Likewise.
* plugins/dfinput/cfg-gtk2.c: Use gtk_dialog_run() for about dialog.
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Likewise.
* po/pt_BR.po, po/it.po, po/zh_CN.po, po/zh_TW.po, po/ru_RU.po, po/pcsx.pot:
Updated.
* po/update-pot.sh: Added files in plugins/dfnet.
May 12, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/sio.c: Erase CdromId and CdromLabel when net connection closed.
* libpcsxcore/psxcommon.h: Use boolean type for config values, byte for enum
values.
* gui/Config.c: Use TRUE/FALSE for boolean values, enums for byte values in
config.
* gui/ConfDlg.c: Likewise.
* macosx/PcsxController.m: Likewise.
* win32/gui/ConfigurePlugins.c: Likewise.
* win32/gui/WndMain.c: Likewise.
* libpcsxcore/psxmem.c: Likewise.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/plugins.c: Likewise.
* libpcsxcore/misc.c: Likewise.
* AUTHORS: Updated info.
May 11, 2010 Wei Mingzhi <[email protected]>
* gui/Gtk2Gui.c: Use TRUE/FALSE instead of 0/1 for NetOpened.
* gui/Plugin.c: Likewise.
* win32/gui/plugin.c: Likewise.
* macosx/Plugin.c: Removed obsolete code.
May 10, 2010 edgbla <[email protected]>
* data/pcsx.glade2: Memory cards dialog is now resizable, icons were
enlarged and animated. (experimental,gtk)
* gui/MemcardDlg.c: Likewise.
May 10, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxcommon.c: Include ppf.h.
* libpcsxcore/misc.c: Silenced MSVC warning.
May 10, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/plugins.c: Use functions instead of using global variables,
other minor cleanups.
* gui/Plugin.c: Likewise.
* gui/LnxMain.c: Likewise.
* gui/Gtk2Gui.c: Likewise.
* win32/gui/plugin.c: Likewise.
* win32/gui/WndMain.c: Likewise.
* libpcsxcore/cdriso.c: Likewise.
* libpcsxcore/psxcommon.c: Likewise.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxcommon.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* libpcsxcore/psxbios.c: Moved declaration of netError() into ...
* libpcsxcore/sio.h: Here.
May 10, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdrom.c: Got rid of gzfreezel.
* libpcsxcore/mdec.c: Likewise.
* libpcsxcore/psxcommon.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/misc.c: Added savestate versioning support.
* gui/Gtk2Gui.c: Don't reset when loading from savestate unless loading
succeeded.
May 10, 2010 edgbla <[email protected]>
* libpcsxcore/sio.h: Some code (regs,macro) was moved to the 'c' file.
* libpcsxcore/sio.c: Likewise.
May 10, 2010 Wei Mingzhi <[email protected]>
* configure.ac: libbz2 is no longer needed.
* debian/control: Likewise.
* libpcsxcore/plugins.c: CDRgetBufferSub() is now mandatory.
* libpcsxcore/cdrom.h: Savestate compatibility is already broken, so no need
to stuff garbage into saved files :)
* libpcsxcore/mdec.c: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
May 9, 2010 edgbla <[email protected]>
* libpcsxcore/psxcounters.c: psxRcntFreeze was fixed.
* plugins/dfxvideo/prim.c: Returned some code (iGPUHeight=1024), IMO, it's
wrong, can't perform the tests.
May 9, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/plugins.c: Removed support for ancient GPU/SPU plugin APIs.
* libpcsxcore/plugins.h: Likewise.
May 8, 2010 edgbla <[email protected]>
* plugins/dfxvideo/prim.c: Dithering logic was fixed.
* plugins/dfxvideo/gpucfg-0.1df/main.c: Likewise.
May 8, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/misc.c: Use const for input strings.
* libpcsxcore/misc.h: Likewise.
* libpcsxcore/spu.c: Got rid of 0x80000000 flag of psxRegs.interrupt.
* libpcsxcore/psxinterpreter.c: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* libpcsxcore/r3000a.h: Likewise.
* libpcsxcore/ix86/iR3000A.c: Likewise.
* libpcsxcore/psxhw.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
May 8, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/sio.h: Added extern "C" to all headers.
* libpcsxcore/misc.h: Likewise.
* libpcsxcore/ppc/reguse.h: Likewise.
* libpcsxcore/ppc/pGte.h: Likewise.
* libpcsxcore/ppc/ppc.h: Likewise.
* libpcsxcore/psxdma.h: Likewise.
* libpcsxcore/psxcounters.h: Likewise.
* libpcsxcore/cdrom.h: Likewise.
* libpcsxcore/psxmem.h: Likewise.
* libpcsxcore/decode_xa.h: Likewise.
* libpcsxcore/coff.h: Likewise.
* libpcsxcore/gte.h: Likewise.
* libpcsxcore/ix86_64/iGte.h: Likewise.
* libpcsxcore/cdriso.h: Likewise.
* libpcsxcore/system.h: Likewise.
* libpcsxcore/ppf.h: Likewise.
* libpcsxcore/debug.h: Likewise.
* libpcsxcore/psxbios.h: Likewise.
* libpcsxcore/psxhle.h: Likewise.
* libpcsxcore/r3000a.h: Likewise.
* libpcsxcore/spu.h: Likewise.
* libpcsxcore/psemu_plugin_defs.h: Likewise.
* libpcsxcore/mdec.h: Likewise.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/ix86/iGte.h: Likewise.
* libpcsxcore/psxhw.h: Likewise.
* libpcsxcore/cheat.h: Likewise.
* libpcsxcore/socket.h: Likewise.
* libpcsxcore/r3000a.c: Separated cheat related stuff out of the r3000a code.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/psxcommon.h: Added EmuInit, EmuReset, EmuShutdown & EmuReset.
* libpcsxcore/misc.c: Moved logging stuff to psxcommon.c.
* libpcsxcore/psxcommon.c: Added EmuInit, EmuReset, EmuShutdown & EmuReset,
moved logging stuff from misc.c to here.
* gui/LnxMain.c: Call Emu* instead of psx*.
* macosx/main.m: Likewise.
* macosx/EmuThread.m: Likewise.
* win32/gui/WndMain.c: Likewise.
* libpcsxcore/ix86/ix86.c: Moved definations in ix86.h to source file.
* libpcsxcore/ix86/ix86.h: Likewise.
May 7, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/r3000a.c: Removed unneeded declarations, other minor cleanups.
* libpcsxcore/plugins.c: Likewise.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxcommon.h: Added definations for boolean type, as well as
TRUE and FALSE (not used for now).
* gui/Linux.h: Declares StatesC here.
May 7, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/misc.h: Preparing for refactor/cleanup, moved all definations
into .c files, other minor cleanups. (Breaks Mac OS X and maybe Windows as
well for now, will fix later)
* libpcsxcore/psxdma.h: Likewise.
* libpcsxcore/psxcounters.h: Likewise.
* libpcsxcore/cdrom.c: Likewise.
* libpcsxcore/cdrom.h: Likewise.
* libpcsxcore/psxmem.c: Likewise.
* libpcsxcore/psxmem.h: Likewise.
* libpcsxcore/cdriso.c: Likewise.
* libpcsxcore/ppf.c: Likewise.
* libpcsxcore/cdriso.h: Likewise.
* libpcsxcore/system.h: Likewise.
* libpcsxcore/debug.h: Likewise.
* libpcsxcore/r3000a.c: Likewise.
* libpcsxcore/psxhle.h: Likewise.
* libpcsxcore/spu.h: Likewise.
* libpcsxcore/mdec.h: Likewise.
* libpcsxcore/psxhw.h: Likewise.
* libpcsxcore/plugins.c: Likewise.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/psxcommon.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/misc.c: Likewise.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/ix86_64/ix86-64.c: Likewise.
* gui/LnxMain.c: Likewise.
* gui/Gtk2Gui.c: Likewise.
* win32/WndMain.c: Likewise.
* libpcsxcore/psxcommon.c: Added.
* win32/pcsx.dsp: Added psxcommon.c.
* win32/pcsx.dev: Likewise.
* win32/pcsx.vcproj: Likewise.
* libpcsxcore/Makefile.am: Likewise.
* autogen.sh: Run autoreconf as well.
* AUTHORS: Updated info.
May 5, 2010 edgbla <[email protected]>
* libpcsxcore/psxcounters.c: Updated (Rc2Disable).
May 5, 2010 Wei Mingzhi <[email protected]>
* gui/DebugMemory.c: Show 0x7f as dots.
* libpcsxcore/plugins.c: Got rid of old PAD_readPort1()/PAD_readPort2() APIs.
PAD_startPoll() and PAD_poll() are now required.
* libpcsxcore/plugins.h: Likewise.
* libpcsxcore/sio.c: Likewise.
* libpcsxcore/psemu_plugin_defs.h: Updated info.
May 2, 2010 edgbla <[email protected]>
* libpcsxcore/psxcounters.h: Root counters code was written from scratch.
* libpcsxcore/psxcounters.c: Likewise.
* libpcsxcore/psxhw.c: Likewise.
* libpcsxcore/misc.c: Likewise.
* libpcsxcore/ix86/iR3000A.c: Likewise.
* libpcsxcore/ix86_64/iR3000A-64.c: Likewise.
* libpcsxcore/ppc/pR3000A.c: Likewise.
April 30, 2010 Wei Mingzhi <[email protected]>
* Mass update to the copyright headers. Fixed typo in FSF's address,
Removed obsolete URL. (No real change :) )
April 24, 2010 Wei Mingzhi <[email protected]>
* win32/pcsx.rc: Don't include afxres.h, which doesn't exist in MSVC
2010 Express.
April 18, 2010 edgbla <[email protected]>
* po/ru_RU.po: Updated.
April 17, 2010 Wei Mingzhi <[email protected]>
* po/ru_RU.po: Added Russian translation by edgbla.
* po/update-pot.sh: Added ru_RU.po.
* po/LINGUAS: Likewise.
* AUTHORS: Updated info.
April 16, 2010 Wei Mingzhi <[email protected]>
* plugins/peopsxgl/soft.c: Applied the same fix by edgbla as dfxvideo.
* libpcsxcore/gte.c: Use integer math for division operations.
April 15, 2010 Wei Mingzhi <[email protected]>
* plugins/dfsound/freeze.c: Fixed the sound doesn't always play properly
after loading the state. (Thanks edgbla)
* libpcsxcore/psxmem.c: Fixed KKND freeze at startup. (edgbla)
* libpcsxcore/gte.c: Fixed gteDCPL. (edgbla)
* AUTHORS: Updated info.
April 14, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/gte.c: Use u32 instead of unsigned long.
* COPYING: Fixed a typo in FSF's address.
* plugins/dfxvideo/soft.c: Army Man invisible bullets fix (courtesy of
edgbla).
* AUTHORS: Updated info.
* data/pcsx.glade2: Likewise.
April 13, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/gte.c: Backported the new GTE code from PCSX-Revolution project
(http://code.google.com/p/pcsx-revolution), which is more accurate & fixes
at least graphic corruption problems with Mat Hoffman's Pro BMX.
* libpcsxcore/gte.h: Likewise.
* libpcsxcore/r3000a.h: Likewise.
* libpcsxcore/ppc/pGte.h: Call functions in gte.c instead of generating
machine code directly for now.
* libpcsxcore/ix86_64/iGte.h: Likewise.
* libpcsxcore/ix86/iGte.h: Likewise.
* libpcsxcore/debug.h: Removed GTE_DUMP.
* gui/LnxMain.c: Likewise.
* macosx/main.m: Likewise.
* win32/gui/WndMain.c: Likewise.
April 11, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdriso.c: Check the CRC value of subchannel after reading.
* gui/DebugMemory.c: Allow using a hexa string instead of one value for
Memory Patch.
* po/zh_CN.po, po/zh_TW.po, po/it.po, po/pt_BR.po, po/pcsx.pot: Updated.
April 10, 2010 Wei Mingzhi <[email protected]>
* data/pcsx.glade2: Added "Memory Dump" to menu item. Added Memory Viewer
dialog box. Added more info to About dialog box.
* gui/Gtk2Gui.c: Likewise.
* gui/DebugMemory.c: Implemented memory viewer/dumper.
* gui/DebugMemory.h: Likewise.
* gui/Makefile.am: Added DebugMemory.c.
* gui/Cheat.c: Changed the order of OK/Cancel buttons for consistency with
GNOME UI standards.
* libpcsxcore/psxmem.c: Minor cleanup (thanks Sebun).
* libpcsxcore/spu.c: Likewise.
* libpcsxcore/cdrom.c: Check case open/close in CdlStop (courtesy of shalma).
* plugins/peopsxgl/gpucfg/callbacks.c: Fixed warnings.
* po/zh_CN.po, po/zh_TW.po, po/it.po, po/pt_BR.po, po/pcsx.pot: Updated.
March 21, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/mdec.c: Minor cleanup.
March 18, 2010 Wei Mingzhi <[email protected]>
* macosx/plugins/HIDInput/src/PlugPAD.c: Commented out calls to
HIDCalibrateValue(), which caused problem in some cases.
March 17, 2010 Wei Mingzhi <[email protected]>
* macosx/plugins/HIDInput/HIDInput.xcodeproj/project.pbxproj: Fixed build
issue.
March 16, 2010 Wei Mingzhi <[email protected]>
* po/it.po: Updated Italian translation by Giovanni Scafora.
March 15, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/mdec.c: 0x1f should be 31 rather than 15 (stupid /me).
* po/it.po: Added Italian translation (Thanks Giovanni Scafora).
* AUTHORS, po/LINGUAS, po/update-pot.sh: Updated.
March 14, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/mdec.c: Rewritten MDEC decoder to replace non-free code, also
fixes image quality issues and improves decoding speed. (Thanks gorlik)
* AUTHORS: Updated info.
March 12, 2010 Wei Mingzhi <[email protected]>
* gui/LnxMain.c: Fixed -cdfile switch (Thanks NeToU).
* AUTHORS: Updated info.
March 6, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/ppf.c: Speeded up the PPF loading routine when the PPF file
is "in order".
February 23, 2010 Wei Mingzhi <[email protected]>
* plugins/dfinput/analog.c: Confirmed center value should be 127 instead of
128, removed obsolete comments.
(http://code.google.com/p/pcsx2/source/detail?r=2587)
February 18, 2010 Wei Mingzhi <[email protected]>
* AUTHORS: Updated info.
February 17, 2010 Tristin Celestin <[email protected]>
* configure.ac: Removed PulseAudio Simple API support.
* plugins/dfsound/Makefile.am: Likewise.
* plugins/dfsound/nullsnd.c: Likewise.
* plugins/dfsound/spu.c: Likewise.
* plugins/dfsound/pulseaudiosimple.c: Removed.
* plugins/dfsound/pulseaudio.c: Fixed high-compatibility (SPUasync) mode.
February 15, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/psxhw.c: Don't skip calls to psxDman() when TR flag of CHCR is
true, which fixes the menu problem in Dragon Quest 7.
* plugins/dfcdrom/cdr-linux.c: Fixed subchannel reading in threaded mode.
February 14, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdrom.c: Fixed GetlocP, which solves the problem with libcrypt
copy protected games. (Thanks shalma)
February 13, 2010 Wei Mingzhi <[email protected]>
* libpcsxcore/cdrom.c: Clear the 0x20 flag when stop reading, which fixes the
problem with Syphon Filter.
* libpcsxcore/psxhw.c: Always update HW_DMAx_CHCR in DmaExec(), which fixes
the problem with Harvest Moon.
(Thanks shalma: http://forums.ngemu.com/pcsx-discussion/116599-developers-wanted-pcsx-revival-2.html)
February 10, 2010 Tristin Celestin <[email protected]>
* plugins/dfsound/pulseaudio.c: PulseAudio Normal API support is now working
in threaded non-SPUasync() mode.