This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
whatsnew.html
4496 lines (4319 loc) · 298 KB
/
whatsnew.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FB Alpha - What's New</title>
<meta charset="UTF-8" />
<style>
body {
font-family: verdana, lucida, sans-serif;
font-size: 0.8em;
color: #333333;
background-color: #CE6A57;
margin: 0em;
text-align: center;
}
a:link {
color: #C03029;
text-decoration: none;
}
a:visited {
color: #C03029;
text-decoration: none;
}
a:hover {
color: #333333;
text-decoration: underline;
}
a:active {
color: #C03029;
text-decoration: underline;
}
a.active:link {
color: #C03029;
text-decoration: none;
font-weight:bold;
font-style: italic;
}
a.active:visited {
color: #C03029;
text-decoration: none;
font-weight:bold;
font-style: italic;
}
a.active:hover {
color: #333333;
text-decoration: underline;
font-weight:bold;
font-style: italic;
}
a.active:active {
color: #C03029;
text-decoration: underline;
font-weight:bold;
font-style: italic;
}
h2 {
color: #C03029;
font-size: 1.4em;
margin-top: 1em;
}
h3 {
color: #FFFFFF;
font-size: 1.2em;
margin-top: 3em;
background-color: #aaaaaa;
width: 6.0em;
padding: 0.5em;
border-radius: 10px;
text-align: center;
}
h4 {
color: #C03029;
font-size: 1.0em;
}
li {
padding: 0.1em;
}
.outer {
width: 78em;
margin: 0em auto;
text-align: left;
padding: 0.7em 0.7em 0.7em 0.7em;
background-color: #FFFFFF;
border: 0.08em solid #808080;
margin-top: 1em;
margin-bottom: 1em;
}
.note {
color: #C03029;
padding: 1em;
background-color: #DDD9D9;
font-style: italic;
}
</style>
</head>
<body>
<div class="outer">
<h2>FB Alpha - What's New</h2>
<p><a href="https://www.fbalpha.com">https://www.fbalpha.com</a><br />
<a href="http://neosource.1emu.net/forums">http://neosource.1emu.net/forums</a></p>
<h3>v0.2.97.43</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Use real MCU for Tokio [Barry]</li>
<li>Fix state issues with Slap Fight/Tiger Heli [dink]</li>
<li>Fix incremental search and sort alphabetically w/"Use Zipnames". [dink]</li>
<li>Improve incremental search in the game list. This search is when you type at the game list (not the search box) for example: to get to "Super Cobra" really fast, type "superco" - or - "doublew" for "Double Wings". Whatever you are searching for - just leave out the space. If "Use Zipnames" is selected, type in the romset name or a subset of it. [dink]</li>
<li>Fix a few video bugs and state issues in "The Lost Castle in Dark Mist" [dink]</li>
<li>Fix dac sounds in Ultimate Mortal Kombat 3 Trilogy hack [dink]</li>
<li>Fix B-Wings (Alt) set boot issue [dink]</li>
<li>Fix color issues in Gold Medalist [iq_132]</li>
<li>Z80 Core, small improvement to vector handling [dink]</li>
<li>Parents Only option for driver icons (for systems that have problems with driver icons) [dink]</li>
<li>Create new interface and port eke-eke's high quality ym2612 core from Genplus-gx [dink]<ul>
<li>Fixes SFX sounds in Streets of Rage 2</li>
<li>Fixes lead and percussive guitar sounds in Mega Turrican's intro</li>
</ul></li>
<li>Fix crash with NBA Jam Tournament Edition on Megadrive [dink]</li>
<li>Improve 68k timing for Megadrive, fixes... [dink]<ul>
<li>Graphics issues/corruption in Galahad</li>
<li>Flickery separator line in VS mode on Sonic 2 and 3</li>
<li>Fix freeze with Desert Strike on Megadrive</li>
<li>Overall, probably improves everything</li>
</ul></li>
<li>Fix music hangs in Sonic 3 when Sonic is underwater (Z80 timing) [dink]</li>
<li>Fix PGM Arm7 crash on 64bit systems w/theglad, kov* [dink]</li>
<li>Sync. romsets with MAME 0.188 [Barry]</li>
<li>Sync. some romsets with MAME 0.189 [JacKc]</li>
<li>Fix Robocop2 ending credits scrolltext (8x8 offset masking) [iq_132]</li>
<li>Fix for replays desynching with games that use SRAM/NVRAM [dink]</li>
<li>Strikers 1945 Plus music fix [dink]</li>
<li>Fix Palette Viewer for games with BDF_16BIT_ONLY flag [dink]</li>
<li>Port Z180 Core from MAME and create FBAlpha-style cpu interface [Barry, iq_132]</li>
<li>Hook-up Z180 sound-cpu in GHOX [Barry]</li>
<li>Games using flag BDF_16BIT_ONLY are no longer 1-frame behind emulation, other projects using FBAlpha please take note (see intf/video/vid_interface.cpp) [dink]</li>
<li>Fix DAC(psg) sounds in Afterburner II Megadrive [dink]</li>
<li>Added define to log ram usage in src/burn/burn_memory.cpp [iq_132]</li>
<li>Fixed Archery level in Konami's '88 Games [dink, Gab75]</li>
<li>Fixed inputs for Nayade Resistance and Crazy Buggy on MSX [dink]</li>
<li>Hooked up protected versions of Alligator hunt, Touch & Go, Maniac Square in Gaelco2 Hardware [iq_132]</li>
<li>Fixed Music/SFX pitch in Arbalester, and occasional "Illegal Inst." error when playing w/Keyboard [dink]</li>
<li>Hook up protection MCU for protected version of Glass [iq_132]</li>
<li>Fixed palette recalc issue w/some Taito-Z games, fixes weird colors when switching BPP during game [dink]</li>
<li>Fixed cut-short continue message in Data East's Breakthru [dink]</li>
<li>Fixed small memory leaks in dynamic Huffman compression [dink]</li>
<li>Hook up MCU to Tough Turf (U) and Wrestle War, fix Tough Turf (J) [Barry]</li>
<li>Fixed 2-Player mode in Wonder Boy in Monster Land (System1) [dink]</li>
<li>Fixed distorted sounds in Time Pilot, Time Pilot '84, Tutanham and Commando Sega [dink]</li>
<li>Added Single-Screen modes (DIPS) to Gaelco's World Rally 2 and Data East's Backfire! [dink]</li>
<li>Fixed screen corruption at end of race in Hang-On Jr. / v-scrolling issue in Sega System E [dink]</li>
<li>Added notaz's BCD fixes to the Musashi 68k cpu core [dink]</li>
<li>Added i8x41/UPI-41 cpu core [iq_132]</li>
<li>Sync. romsets with MAME 0.191 [Barry]</li>
<li>Fixed occasional distorted graphics in Konami's Jail Break when playing w/Keyboard [dink]</li>
<li>Fixed deroon's inputs (irq timing) [dink]</li>
<li>New feature for Lord of Gun: shoot any side to reload [dink]</li>
<li>Added support for Multi/Connected sprites in Toaplan GP9001 emulation, fixes GHOX's Highscore background [dink]</li>
<li>UI Change, the search box text will be preserved between game loads [dink]</li>
<li>Fix for Use and Select buttons were erraneously swapped in Dungeons & Dragons - Shadow Over Mystara [dink]</li>
<li>Fix spritelag issue in Ryu Jin [dink]</li>
<li>Add missing third button to Life Force (Japan) [dink, gamezfan]</li>
<li>Improve paddle emulation in Gee Bee, Bomb Bee and Cutie Q [dink]</li>
<li>Fix sound issues with Phoenix and savestates [dink]</li>
<li>Fix freeze in Kaitei Takara Sagashi while starting a new game [dink]</li>
<li>Increase the sound level for all Taito F3 games [dink]</li>
<li>Small improvement to the search box. Now, for example "namco system 1", "namco system 2" or "taito f3" can be searched for [dink]</li>
<li>Fix color issues and impliment transmask groups for Mad Gear / Led Storm, fixing level 2+ [dink]</li>
<li>Fix missing tiles and scrolling issues in Last Duel level 2 [dink]</li>
<li>Fixed many graphical issues in Magical Crystals [dink]</li>
<li>Fixed input and sound issues in Zoar [dink]</li>
<li>Fixed timing issue in Burnin' Rubber / Bump 'n Jump [dink]</li>
<li>Fixed p3 / p4 inputs in Bucky and Moo Mesa [dink]</li>
<li>Fixed Kaiser Knuckle 2p Kick buttons [shine]</li>
<li>Fixed transparency issue in Motos [iq_132]</li>
<li>Fixed an input issue in CPS3 when opposite directions are pressed [dink]</li>
<li>Converted 1942 and Gun.Smoke over to the new tilemap system [iq_132]</li>
<li>Updated the ARM core to fix problems with Deco MLC and Deco 156 games [dink]</li>
<li>Fix byte, word, and quad-long DMA Transfers in SH-2 [dink]</li>
<li>Added stereo mode to DAC [dink]</li>
<li>Added bsmt2k and decobsmt soundcores [iq_132, dink]</li>
<li>Fixed sounds/sfx in Gouketsuji Gaiden Legends [dink]</li>
<li>Fixed occasional clicks/pops at the beginning of emulation if the last game played was exited while the msm6295 was playing something [dink]</li>
<li>Fixed the fog-fadeout in the end-boss scene and other alpha-transparency issues in Moo Mesa [dink]</li>
<li>Fixed several minor graphic bugs in Hangzo [dink]</li>
<li>Slight drawing optimization for Robocop 2 and Edrandy [dink]</li>
<li>Fixed bad fades in Ninja Baseball Batman and occasional tilemap studder in R-Type LEO [dink]</li>
<li>Enabled High Score saves for most Irem M72 games [dink]</li>
<li>Fixed k054539 savestates and reverb function [dink]</li>
<li>Fixed graphics issues in Irem's Major Title making the game fully playable [dink]</li>
<li>Fixed music issues in Sol Divide [dink, barbudreadmon]</li>
<li>Added speedhack dip options for Psikyo SH-2 games [barbudreadmon]</li>
<li>Fixed k054539 pt.2: Use 3 different techniques (ramp to 0, check for bad last sample, slight modification to dpcm table) to get rid of clicky noises in 4bit dpcm sfx/voice samples (Moo Mesa, Bucky O'Hare, Mystic Warriors, Violent Storm, etc.) [dink]</li>
<li>Fixed alpha effects in Bucky O'Hare title fadeout, and other transitional scene fades (tile layer 3 over/under sprites priority mode) [dink]</li>
<li>Added Z180 support to BurnTimer [iq_132]</li>
<li>Rewrite/Modernize drivers for 1943, Commando, Jack and the Giantkiller, Mole Attack, Mr. Flea, Route 16, and Bomb Jack [iq_132]</li>
<li>Fixed Safari Hunting on SG-1000, thanks to Eke of Genesis Plus GX for info! [dink]</li>
<li>Fixed palette/color issues in Spelunker 1 and 2 [dink]</li>
<li>Added proper Draw handler to Irem M62 so paused games don't advance a frame during a window update/redraw [dink]</li>
<li>Fixed Input Dialog: Populate the combo list with preset name when saving [Barry]</li>
<li>Fixed broken lines in the boss tank for the M82 version of Air Duel [dink]</li>
<li>Removed rom patch and added proper protection simulation to Route 16 [iq_132]</li>
<li>Removed rom patch and added proper protection simulation to Meta Fox [iq_132]</li>
<li>Fixed Tetrise and Hang-On Jr. dips [dink]</li>
<li>Slight timing improvement for Kicker / Shaolin's Road [dink]</li>
<li>Use event semaphores instead of polling for better DirectSound performance and timing [Jan Klaassen]</li>
<li>Fix another cycle-related issue with ZetRunEnd, fixes sound issues with certain Neo-Geo games [dink]</li>
<li>Enabled High Score saving for most CPS3 games [barbudreadmon]</li>
<li>Fixed some palette issues in Super Burger Time [dink]</li>
<li>Added M6502SetAddressMask() to the M6502 cpu core [iq_132]</li>
<li>Added cubic resampling interpolater to the samples core [Jan Klaassen]</li>
<li>Added speedhack dip options for Deco32 games [gamezfan, dink]</li>
<li>Enabled High Score saving for Raiden [barbudreadmon]</li>
<li>Updated K054539 pt.3, use cubic resampling for high quality sound [dink]</li>
<li>Fixed timers in SN76477 sound core [dink]</li>
<li>Fixed missing cut-scene graphics in Pretty Soldier Sailor Moon [Jan Klaassen]</li>
<li>Update Namco System 2's soundcore w/cubic resampling for high quality sound [dink]</li>
<li>Update Gaelco2 soundcore w/cubic resampling and fix crackle/pop!'s at beginning of samples [dink]</li>
<li>Fixed layer priority masking in Black Tiger [vbt]</li>
<li>Fixed the MSM6295 sampling rate in Batsugun and Truxton2 [yukaritamura (libretro-fba), dink]</li>
<li>Add high-quality ICS2115 (pgm) soundcore from Jan, superior sound quality for all PGM games, fixes KOV2 music [Jan Klaassen]</li>
<li>Update ES5505/6 soundcore w/cubic interp. resampling [dink]</li>
<li>Increase volume in Gyruss and Monster Slider [dink]</li>
<li>Fixed sound loss, palette fade bug and sprite clipping issues in Double Wings [dink]</li>
<li>Added new interface for AY8910, updated all drivers to use it [iq_132]</li>
<li>Emulated sound cpu and hooked up all sounds in Mario Bros. (mario) [dink]</li>
<li>Added Sega TeamPlayer support to the Megadrive driver, enabling it for: Columns 3, Gauntlet 4, Mega Bomberman, Street Racer (...more to come..) [dink]</li>
<li>Fixed player sprite color in Millipede [dink]</li>
<li>Added speech to Gauntlet I and II - TMS5220 sound core ported to FBA [dink]</li>
<li>Added save state support to the Irem M90 driver [dink]</li>
<li>Cleaned up the sound in Donkey Kong to get rid of clicks in some sounds [dink]</li>
<li>Fixed sound hz in Triple Punch and clones [dink]</li>
<li>Standardize savestate calls amongst soundcores [iq_132]</li>
<li>Fixed tilemap and sound synchronization issues in Rohga [dink]</li>
<li>Hook up sound cpu and fix sprite offsets in Pipi & Bibis / Whoopee!! on Teki Paki hardware [dink]</li>
<li>Fixed video and audio issues in Risky Challenge, game now playable [dink, iq_132]</li>
<li>Updated all FM soundcores using the timer system to require a lot less support code per driver (internalized *GetTime and *Synch.Stream) [dink]</li>
<li>Fix the SRam implimentation on Megadrive [dink]</li>
<li>Added EA "Four Way Play" support to Megadrive, enabled for General Chaos and Mutant League Hockey [dink]</li>
<li>Added resampling to the ymf278b sound core, sounds right regardless of user sound rate [dink]</li>
<li>Added a English fan-translations of the following Megadrive games: Battle Mania Daiginjou, Gleylancer, Tougiou King Colossus, Langrisser II, Phantasy Star II Adventure series games, Pulse Man, Twinkle Tale and Undead Line [barbudreadmon]</li>
<li>Fixed color issues on Jupiter and occasional missing pixels on Neptune in Gyruss [dink]</li>
<li>Added CPU_IRQSTATUS_HOLD to hd6309 cpu core [dink]</li>
<li>Fixed ending scene and movement of the rock-wall dragon boss in Labyrinth Runner/Trick Trap [dink]</li>
<li>Use a common timer value when starting netgames on Neo-Geo for better netgame sync. [Ponder]</li>
<li>Added menu option (Misc -> Options) to enable/disable the High Resolution Timer - defaults to ON [dink]</li>
<li>Added Sync. to DWM option for Windows 7 - 10 windowed mode [dink]</li>
<li>Street Fighter II' - Champion Edition now runs at the right speed [dink, Barry]</li>
<li>Fixed crash w/DX9 Blitters when going to the task manager in Win7+ when Auto Pause is off [dink]</li>
<li>Updates to the uPD7810 cpu core [dink, iq_132]</li>
<li>uPD7810 core, update some opcodes and add analog port reading for c-chip [dink, iq_132]</li>
<li>Emulate Taito C-Chip for Superman, Bonze Adventure, Mega Blast, Rainbow Islands / Rainbow Islands Extra and Volfied [dink]</li>
<li>Use 4-Way inputs for Volfied, making the game playable [dink]</li>
<li>Fixed a problem where Bonze Adventure wasn't reading the dips [dink]</li>
<li>Re-work tile:sprite priority system in Taito F2 [dink]<ul>
<li>Pulirula: fixes tile:sprite priorities and blending effects in level 2</li>
<li>Liquid Kids: fixes the cut-scene/story between levels</li>
<li>Metal Black: fixes missing moving letters before the titlescreen appears</li>
</ul></li>
<li>Improved DonPachi and DoDonPachi timing to respond to inputs in 2 frames instead of 4 [dink]</li>
<li>Changed aspect ratio on Tecmo Bowl to look less squished [dink]</li>
<li>Sync. romsets with MAME 0.197 [Barry]</li>
<li>Analog input improvement for Konami GT and RF2 [dink]</li>
<li>Fixed click when paused/dc offset issue in Cheeky Mouse [dink]</li>
<li>Removed busyloop hacks from M6809, HD6309 and M6805 CPU Cores [dink]</li>
<li>Update libpng to 1.6.34 [Barry]</li>
<li>Improved timing in Heavy Unit and Ghosts'n Goblins (revisited) [dink]</li>
<li>Fixed several bugs in the M6805 cpu core [dink]</li>
<li>Fixed "BAD HARDWARE" error message in most versions of Arkanoid [dink]</li>
</ul>
<!-- new drivers -->
<h4>New drivers</h4>
<ul>
<li>Added driver for Pit n Run and Jump Kun [iq_132]</li>
<li>Added driver for Glass by OMK/Gaelco [iq_132]</li>
<li>Added driver for Thunder Hoop 2: TH Strikes Back [iq_132]</li>
<li>Added driver for Manhattan, Highway Chase, Terranean, Astro Fantasia, Super Astro Fighter, Flash Boy, Lock 'n Chase, on Deco Cassette System hardware [iq_132, dink]</li>
<li>Added driver for Pata Pata Panic [iq_132]</li>
<li>Added driver for Pacman - 25th Anniversary Edition and Ms.Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion [iq_132]</li>
<li>Added driver for Data East's Dream Ball [iq_132]</li>
<li>Added driver for Heavy Smash and World Cup Volly '95 on Deco 156 hardware [iq_132]</li>
<li>Added driver for Avengers in Galactic Storm, Stadium Hero '96, Skull Fang, Hoops '96, Dunk Dream '95 and Hoops on Deco MLC hardware [iq_132]</li>
<li>Added driver for Captain America and The Avengers, Fighter's History, Night Slashers, Tattoo Assassins, and Dragon Gun on Deco 32 hardware [iq_132, dink]</li>
<li>Added driver for Popper [iq_132]</li>
<li>Added driver for Mosaic and Golden Fire II [iq_132]</li>
<li>Added driver for Pipe Dream and Hatris [iq_132]</li>
<li>Added driver for The Pit, Round Up/Fitter, Dockman/Portman, Super Mouse/Funny Mouse, Desert Dan and Intrepid [iq_132]</li>
<li>Added driver for 3x3Puzzle and Casanova [iq_132]</li>
<li>Added driver for Toaplan-1 games: Vimana, Outzone, Same! Same! Same!/FireShark, Demon's World, Zero Wing, Hellfire, Truxton and Rally Bike, replacing the older individual drivers [iq_132]</li>
<li>Added driver for Konami's Double Dribble [iq_132, dink]</li>
<li>Added driver for Nibbler, Pioneer Balloon, Fantasy, Vanguard, Sasuke and Commader and Satan of Saturn on RockOla/SNK6502 hardware [iq_132, dink]</li>
<li>Added driver for Car Jamboree [iq_132]</li>
<li>Added driver for Metal Clash by Data East [iq_132]</li>
<li>Added driver for Jibun wo Migaku Culture School Mahjong Hen [iq_132]</li>
<li>Added driver for Metal Soldier Isaac II [iq_132]</li>
<li>Added driver for Xyonix [iq_132]</li>
<li>Added driver and sound core for Flower [iq_132, dink]</li>
<li>Added driver for Mad Motor Prototype [iq_132]</li>
<li>Added driver for Monkey Magic [iq_132]</li>
<li>Added driver for Kangaroo, replacing the old one [iq_132]</li>
<li>Added driver for Pirate Ship Higemaru, replacing the old one [iq_132]</li>
<li>Added driver for Cop 01 and Mighty Guy, due to protection issues, Mighty Guy is without sound [iq_132]</li>
<li>Added driver for Oli-Boo-Chu [iq_132]</li>
<li>Added driver for Super Cross II [iq_132]</li>
<li>Added driver for V-Ball [iq_132]</li>
<li>Added driver for PK Scramble [iq_132]</li>
<li>Added driver for games on Vic Dual hardware *no sound yet* [iq_132]</li>
<li>Added driver for Super Speed Race Jr. [iq_132]</li>
<li>Added driver for American Speedway [iq_132]</li>
<li>Added driver for Space Stranger / 2 [iq_132]</li>
<li>Added driver for Crazy Ballon [iq_132, dink]</li>
<li>Added driver for Clash Road and Fire Battle [iq_132]</li>
<li>Added driver for Flack Attack / MX5000 by Konami [iq_132, dink]</li>
<li>Added driver for Master Boy (older/Z80 HW) [iq_132]</li>
<li>Added driver for Beam Invader *WIP/not working* [iq_132]</li>
<li>Added driver for Dribling [iq_132]</li>
<li>Added driver for Dora-Chan [iq_132]</li>
<li>Added driver for Combat School by Konami [iq_132]</li>
<li>Added driver for Fast Lane by Konami [iq_132]</li>
<li>Added driver for Konami's Super Basketball [iq_132]</li>
<li>Added driver for WarpSpeed *WIP/not working* [iq_132]</li>
<li>Added driver for Food Fight by GCC/Atari [iq_132]</li>
<li>Added driver for Data East's 18 Holes Pro Golf [iq_132]</li>
</ul>
<!-- new game additions to existing drivers -->
<h4>New additions / updates to existing drivers</h4>
<ul>
<li>Add World Rally 2 [Morten Shearman Kirkegaard, Peter Wilhelmsen, David Haywood, iq_132]</li>
<li>Add Mortal Kombat II (World) Unlimited Hack by Smoke on Megadrive [dink]</li>
<li>Add Streets of Rage 2 (USA) Syndicate Wars 2016 Hack by Gsaurus on Megadrive [dink]</li>
<li>Add Streets of Rage 3 - The Bare Knuckle 3 Project Hack on Megadrive [dink]</li>
<li>Add Rock n` Roll Racing v15 Hack by Ti [Combone]</li>
<li>Add several great Sonic 1,2&3 Hacks [Combone]</li>
<li>Add Mortal Kombat Revelations, Mortal Kombat 3 and Ultimate Hacks [Combone]</li>
<li>Add Monster World IV English Translation Hack on Megadrive [dink]</li>
<li>Add Bubble Bobble (prototype on Tokio hardware) [Barry]</li>
<li>Added DoDonPachi III (World, 2002.05.15 Master Ver) [neohyphengeo productions] to d_pgm.cpp [JacKc]</li>
<li>Added B.Rap Boys Special (World) [Phill @NES4Life, JacKc]</li>
<li>Added Super Street Fighter II sound and color improvement hack on Megadrive [Combone]</li>
<li>Added Mega Cheril Perils homebrew game to Megadrive [dink]</li>
<li>Added Alex Kidd in Miracle World 2 Hack to Mastersystem [dink]</li>
<li>Added Dahna - Goddess` Birth (English Hack) to Megadrive [dink]</li>
<li>Added Masiaka (Demo[scene]) by Resistance 2017 to Megadrive [dink]</li>
<li>Added Turrican fix/hack by linkuei & helder to Megadrive [dink]</li>
<li>Added Street Fighter 2 Special Champion Edition color and sound hack on Megadrive [Combone]</li>
<li>Added FlameWing's BCD Test program to the Megadrive Driver [dink]</li>
<li>Added Fantasy Zone 2 (Working) and Opa-Opa (not working) to System E driver [dink]</li>
<li>Removed all garbage/hacks by GSC2007, as they should be avoided like the plague anyway. [n/a]</li>
<li>Add Riddle of Pythoragas and Slap Shooter to Sega System E [vbt]</li>
<li>Added Omega to the Freekick driver [dink]</li>
<li>Add Contra, NES2PCE conversion to PCE [Combone]</li>
<li>Added several Megadrive game hacks: Teenage Mutant Ninja Turtles - Tournament Fighters Hack, Streets of Rage 2 - Bare Knuckle 3 Boss Edition, Streets of Rage 2 - TMNT Hack, Streets of Rage 3 - Extreme Edition, Golden Axe III - New Character, International Superstar Soccer Deluxe - Real Names+Extras, and UEFA Euro 2004 Portugal (ISSDX Hack) [Combone]</li>
<li>Added In Your Face [iq_132], created a handcrafted priority prom so the game works (for all emulators!) [dink]</li>
<li>Added Weka Invaders 1.0 to the Sega Master System driver [dink]</li>
<li>Added A-Blast to the Seta 2 driver [gamezfan]</li>
<li>Added Silver Valley by Enrique Ruiz / MIKGAMES to the Sega Master System driver [dink]</li>
<li>Added Last KM to the Gaelco driver [iq_132]</li>
<li>Added Sonic 3D Blast: The Director's Cut to the Megadrive driver [dink]</li>
<li>Added Bioplaything Cop to Gaelco [iq_132]</li>
<li>Updated kof99ae to 20170909 Final version [JacKc]</li>
<li>Added Mario Bros. revision G, making it the new parent [dink]</li>
<li>Added Pier Solar to the Megadrive driver [iq_132]</li>
<li>Added KOF2002 OMG and Omega hacks to the Neo-Geo driver [barbudreadmon]</li>
<li>Added KOF98 mix hack to the Neo-Geo driver [iq_132]</li>
<li>Added Metal Slug 5W hack to the Neo-Geo driver [iq_132]</li>
<li>Added World Rally 2: Twin Racing (mask ROM version) to d_gaelco.2.cpp [Barry]</li>
</ul>
<!-- clones and updated romsets in drivers -->
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Add clone of Act-Fancer Cybernetick Hyper Weapon [Barry]</li>
<li>Add clone of Kageki [Barry]</li>
<li>Add two clones of Return of the Invaders [Barry]</li>
<li>Added clone of Street Fighter II: The World Warrior (Quicken, bootleg) [Moffitt] to d_cps1.cpp [JacKc]</li>
<li>Added clone of Street Fighter (World) (protected) [Corrado Tomaselli] to d_cps1.cpp [JacKc]</li>
<li>Added World clone of Ordyne [Barry]</li>
<li>Added clone of Carrier Air Wing (USA 901130) [mastercello] to d_cps1.cpp [JacKc]</li>
<li>Added missing Popeye clones [JacKc]</li>
<li>Added clone of WWF Superstars (US revision 6) [JacKc]</li>
<li>Added 1943: Midway Kaisen (Japan) to d_1943.cpp [JacKc]</li>
<li>Added Chuka Taisen (Japan) (P0-025-A PCB) and correct color proms [pacman70] to d_tzns.cpp [JacKc]</li>
<li>Added Alligator Hunt (World, protected) [Pablo] to d_gaelco2.cpp [JacKc]</li>
<li>Added Alligator Hunt (unprotected, set 2) [David Haywood, Peter Wilhelmsen] to d_gaelco2.cpp [JacKc]</li>
<li>Added Super Athena (bootleg) [Hammy] to d_snk.cpp [JacKc]</li>
<li>Added Crazy Climber (US set 2) [John of http://www.johnsarcade.com] to d_cclimber.cpp [JacKc]</li>
<li>Added clone of Beast Busters (Japan, Version 2, J3) [Layer @ jammaplus, JacKc]</li>
<li>Added clone of Lady Master of Kung Fu (set 2, older) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Athena (bootleg) [Porchy, The Dumping Union, JacKc]</li>
<li>Added clone of Cabal (UK, Joystick) [hammy, The Dumping Union, JacKc]</li>
<li>Added clone of Super Hang-On (Hang-On conversion, Beta bootleg) [Cmonkey, JacKc]</li>
<li>Added clone of Rod-Land (World, set 2) [frsj8112, JacKc]</li>
<li>Added clone of Bucky O'Hare (ver AA) [Bill D., The Dumping Union, JacKc]</li>
<li>Added clone of '99: The Last War (bootleg) [ShouTime, JacKc]</li>
<li>Added clone of Martial Masters (ver. 102, 101, 101TW) [skate323k137, The Dumping Union, JacKc]</li>
<li>Added clone of Gunbird 2 (set 2) [Hyid Choi, JacKc]</li>
<li>Added clone of Biomechanical Toy (Ver. 1.0.1878) [Jorge Silva, JacKc]</li>
<li>Added clone of TH Strikes Back (Non North America, Version 1.0, Checksum 020EB356) [caius, The Dumping Union, JacKc]</li>
<li>Added clones of Action Fighter (afightera, afighterb) to Sega System 16A driver [Barry]</li>
<li>Added clone of Blood Bros. (US) [Bill D., The Dumping Union, JacKc]</li>
<li>Added clone of West Story (bootleg of Blood Bros., set 2) [Osso, caius, The Dumping Union, JacKc]</li>
<li>Added clone of Teki Paki (location test) [ShouTime, Mouloud Bessaad, Dulleron, Christian Ricolleau, Marisol Nunez Serrano, Renato Mucciarelli, Jeffrey Gray, John Wilke, Darksoft, Ryan Holtz, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Galaxian Growing Galaxip / Galaxian Nave Creciente (Recreativos Covadonga Spanish bootleg) [ARPA, Recreativas.org, The Dumping Union, JacKc]</li>
<li>Added clone of Blue's Journey / Raguy (ALH-001) [Razoola, JacKc]</li>
<li>Added clone of X-Men: Children of the Atom (Brazil 950331) [SHVB, Haze, smf, JacKc]</li>
<li>Added clone of Four Trax (Asia) [Arzeno Fabrice, The Dumping Union, JacKc]</li>
<li>Added clone of Pretty Soldier Sailor Moon (Ver. 95/03/21) and Pretty Soldier Sailor Moon (Ver. 95/03/22, Europe) [rtw, ShouTime, The Dumping Union, JacKc]</li>
<li>Added clone of G.I. Joe (Asia, AA) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Knights of Valour 2 / Sangoku Senki 2 (ver. 104, 102, 100HK) [twistedsymphony, JacKc]</li>
<li>Added clone of Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 2) [Sugoi Helsinki, JacKc]</li>
<li>Added clone of Gee Bee (UK) [Andrew Welburn, The Dumping Union, JacKc]</li>
<li>Added clone of Pac-Man (bootleg, Video Game SA) [Arcade Vintage, Recreativas.org, The Dumping Union, JacKc]</li>
<li>Added clone of Turbo Force (World, set 2) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Cadash (Spain, version 1) [caius, The Dumping Union, JacKc]</li>
<li>Added clone of Cookie & Bibi 2 (set 2) [Hammy, JacKc]</li>
<li>Added clone of Pac-Land (Bally-Midway) [Andrea Palazzetti, JacKc]</li>
<li>Added clone of Ares no Tsubasa (Japan, rev. A) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Ghox (joystick, older) [caius, JacKc]</li>
<li>Added clone of Opa Opa (Rev A, unprotected) [ShouTime, Charles MacDonald, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (street fighter 2' 920313 Taiwan) [sampson, JacKc]</li>
<li>Added clone of Moon Shuttle (US, version A) [ShouTime, The Dumping Union, JacKc]</li>
<li>Added clone of Gigas Mark II (MC-8123, 317-5002) [jacKc]</li>
<li>Added clone of Tecmo Bowl (World, set 2) [coolmod, JacKc]</li>
<li>Added clone of Garou - Mark of the Wolves (NGH-2530) [Razoola, JacKc]</li>
<li>Added clone of Pochi and Nyaa (Ver 2.02) [Razoola, JacKc]</li>
<li>Added clone of Enduro Racer (YM2151) (mask ROM sprites, FD1089B 317-0013A) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II': Champion Edition (Playmark bootleg) [f205v, maru79, JacKc]</li>
<li>Added clone of Explosive Breaker (Korea) [Jorge Silva, JacKc]</li>
<li>Added clone of WWF: Wrestlemania (proto 2.01 06/07/95) [Jorge Silva, JacKc]</li>
<li>Added clone of Super Cobra (bootleg, set 2) [Belike, JacKc]</li>
<li>Added clone of Street Fighter II: The World Warrior (Thunder Edition, bootleg, set 2) [coolmod, The Dumping Union, JacKc]</li>
</ul>
<h3>v0.2.97.42</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Restore MSVC full optimisation (should see slightly faster performance) [Barry]</li>
</ul>
<h3>v0.2.97.41</h3>
<!-- fixes and features -->
<h4>Fixes and new features</h4>
<ul>
<li>Speed-up the Game List (F6) window considerably [dink]</li>
<li>Fixed 16-bit rendering for most games on Konami and Metro hardware [iq_132]</li>
<li>Fixed 16-bit RGB555 rendering in Taito F3 [dink]</li>
<li>Separate Force 16-Bit Video option between D3D Enhanced blitter and DX9 Alt blitter [Barry]</li>
<li>Fixed scfinals coin-up issue with a kludge [dink]</li>
<li>Fixed missing background layer in Bio-ship Paladin level 2 [dink]</li>
<li>Fixed an issue with Pururun's sound [dink]</li>
<li>Massive Taito-F3 video fix-a-thon<ul>
<li>Arabian Magic: ugly line down the screen at stage start, caused by off-by-one clipping</li>
<li>Arabian Magic: missing text in the cutscenes</li>
<li>Puzzle Bobble 4: missing end-of-round you won/lost animations</li>
<li>Land Maker: missing you won/lost text</li>
<li>Land Maker: tilemap alignment issues</li>
<li>Grid Seeker: missing continue screen</li>
</ul></li>
<li>Remove unneeded DWM and MDI code, causes issues in Win10 [Barry]</li>
<li>Updated modern Windows builds to use the Segoe font recommended by Microsoft [Barry]</li>
<li>Fixed broken background issue in Ashura Blaster [dink]</li>
<li>Fixed animated background in Universal's Space Raider [dink]</li>
<li>Added experimental SekBurnUntilInt() code to the 68k core [dink]</li>
<li>Fixed layer alignments and screensize in Ajax / Typhoon [dink]</li>
<li>Fix shadow/highlights for 2-cell column vscroll in Megadrive, in particular fixes the intro to Trouble Shooter / Battle Mania [dink]</li>
<li>Fix Super Real Darwin sprite:tile priorities [dink]</li>
<li>Fix timing inconsistencies / framerate issues on some Win 10 machines (high precision timer) [dink]</li>
<li>Fix Galaxian-custom sound that dink broke [Barry]</li>
<li>Add ability to rotate player digitally in Forgotten Worlds [dink]</li>
<li>Fix layer priorities in G-Loc (gloc) [Barry]</li>
<li>Fix cutscene crystal ball in some sets of Altered Beast [Barry]</li>
<li>Fixed broken sound in Puzzle King (4in1boot) [dink]</li>
<li>Disabled Force 16-bit emulation by default, can still be enabled by user, but causes issues with some systems, eg, Taito F3 [Barry]</li>
<li>Made the Enhanced blitter the default for normal builds [Barry]</li>
<li>Made force flip a default option for the Direct Draw blitter [Barry]</li>
<li>Set the full-screen resolution to the desktop resolution on first program start [Barry]</li>
<li>Fixed blue squares in Street Fighter Alpha 2 high score entry screen [Barry]</li>
<li>Added a message to install the Direct X runtimes if the DLLs are missing when starting the DirectX9 blitters, removed the message that showed at every FB Alpha start [Barry]</li>
<li>Added ability to choose which monitor (separated for Horizontal and Vertical games) to use for fullscreen in the DirectX 9 blitters [Barry]</li>
<li>Added alpha transparencies to Raiga Strato Fighter [iq_132]</li>
<li>Fixed video offset issue in Gundhara [dink]</li>
<li>Fixed alpha blending and many sprite:tile priority issues in Nitro Ball [dink]</li>
<li>Fixed MSM6295 Banking in Boogie Wings [dink]</li>
<li>For debug builds: show negative numbers with the debug counter ('m' and 'n') [dink]</li>
<li>Fixed the road and sky levels (broken raster effects) in Ed Randy / The Cliffhanger [dink]</li>
<li>Fixed "stuck" sprites in Pitfall II on Sega System 1 hardware [dink]</li>
<li>Fixed slow music tempo when sound rate set to 44100 in Contra, Jaleco Megasystem 1 games, Konami's Surprise Attack and several Data East 16-Bit games [dink]</li>
<li>Fixed strange music tempo in Route 16 [dink]</li>
<li>Fixed un-smooth scrolling and cut-off end-of-level message in Konami's Surprise Attack [dink]</li>
<li>Fixed video offset issue in X-Multiply m81 version [dink]</li>
<li>Ported the Namco C140 sound core to FBAlpha [dink]</li>
<li>Added resampling to the Konami K054539 Soundcore, now most later Konami games (Xexex, Moo Mesa, Bucky O'Hare, etc) will sound great at any user-selected soundrate [dink]</li>
<li>Fixed occasional sprite flickering in Mystic Warriors [dink]</li>
<li>Fixed occasional freeze in Atomic Robo-Kid when playing via keyboard and up+down or left+right is pressed at the same time [dink]</li>
<li>Fixed music, graphics, timing and color issues in Psychic 5 [dink]</li>
<li>Added CPU_IRQSTATUS_HOLD support to m6809 cpu core [dink]</li>
<li>Add watchdog device. Hook it up to Momoko 120% driver as an example. [iq_132]</li>
<li>Use real MCU for Nekketsu Kouha Kunio-kun, Guardian/Get Star, Fairy Land Story, Rumba Lumber, Onna Sansirou - Typhoon Gal, Chack'n Pop, Golden Axe (set 2, US) [Barry]</li>
<li>Added BurnRandom() / BurnRandomScan(), a predictable random number generator based on old BSD LCG [dink]</li>
<li>Hooked up BurnRandom() to games using rand() to allow for reliable input recordings and states [dink]</li>
<li>Enabled Alpha Transparency effects in Mystic Warriors [dink]</li>
<li>Fixed music issues in DJ Boy [dink]</li>
<li>Fixed a palette issue and possibly(?) fixed a timing issue in Heavy Unit [dink]</li>
<li>EEPROM saves path now configurable [Barry]</li>
<li>General source tidy-up/maintenance, and conversion to BurnMalloc/BurnFree [Barry]</li>
<li>Add support for the new format hiscore.dat file [Barry]</li>
<li>Fix issue with IPS Manager sometimes saving ini file incorrectly [Barry]</li>
<li>Added Generate All .dat file function [Barry]</li>
<li>Added checkbox filters to the HTML debug log, and added ten new output levels [Barry]</li>
<li>Added extra compile step to link drivers separately to avoid Windows 32KB process limit [Barry]</li>
<li>Updated the documentation [Barry]</li>
</ul>
<!-- new drivers -->
<h4>New drivers</h4>
<ul>
<li>Add driver for Mappy, Dig Dug II, Super Pacman, Pac & Pal, Grobda and The Tower of Druaga [iq_132, dink]</li>
<li>Add driver for Gaplus / Galaga 3 [iq_132]</li>
<li>Added driver for Toypop and Libble Rabble on misc. Namco Hardware [iq_132]</li>
<li>Added driver for Cannon Ball, Magix / Rock and Rock Tris on Yun Sung 8 hardware [iq_132]</li>
<li>Added driver for US Games trivia [iq_132]</li>
<li>Added driver for Double Wings on Data East 16-bit Hardware [iq_132]</li>
<li>Added driver for Assault, Burning Force, Cosmo Gang: The Video, Dragon Saber, Mirai Ninja, Valkyrie no Densetsu, Ordyne, Phelios, Rolling Thunder 2, Marvel Land, Metal Hawk, Kyuukai Douchuuki, Super World Stadium 92 and 93, Steel Gunner, Steel Gunner 2, Dirt Fox, Finest Hour and Lucky and Wild on Namco System 2 Hardware [iq_132, dink]</li>
<li>Add driver for Time Soldiers/Battle Field, Sky Soldiers, Sky Adventure, Gang Wars, Super Champion Baseball on Alpha68k II and VI hardware [iq_132, dink]</li>
<li>Added driver for Sauro and Tricky Doc [iq_132]</li>
<li>Added driver and sound core for Wiping / Rug Rats [iq_132, dink]</li>
</ul>
<!-- new game additions to existing drivers -->
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Dottori-Man Jr. to the Dottori Kun driver [hap, JacKc]</li>
<li>Added Revenger '84 to the EPOS driver [dink]</li>
<li>Added Ultimate Mortal Kombat Trilogy Hack r.5149 to Megadrive [dink]</li>
<li>Added Shinobi III M.I.J.E.T. Enhancement Hack to Megadrive [dink]</li>
</ul>
<!-- clones and updated romsets in drivers -->
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Added clone of Gals Panic DX (Asia) [arcade mod bios]</li>
<li>Added American Horseshoes (Taito-L) - was missing from the .40 release by accident [dink]</li>
<li>Added clone of Macross II (Korea) [CoolMod, CS, The Dumping Union, JacKc]</li>
<li>Added clone of The Last Blade (Special 2017, hack from GSC2007) [GSC2007, JacKc, iq_132]</li>
<li>Added clone of Street Fighter II: The World Warrior (Japan 911210, CPS-B-17) [ShouTime, Bonky, MetalliC, JacKc]</li>
<li>Added clone of Operation Wolf (Japan, SC) [ShouTime, JacKc]</li>
<li>Added clone of Operation Thunderbolt (Japan, SC) [ShouTime, JacKc]</li>
<li>Added clone of Silk Worm (prototype?) [frsj8112, JacKc]</li>
<li>Added clone of Double Dragon (Special 2017, hack from GSC2007) [GSC2007, JacKc, iq_132]</li>
<li>Added clone of Palamedes (US) [caius, The Dumping Union, JacKc]</li>
<li>Added Nebulous Bee, clone of Galaga [JacKc]</li>
<li>Added clone of Jackal (bootleg, Rotary Joystick) [f205v, The Iron Goat, JacKc]</li>
<li>Added clone of Rastan Saga (Japan Rev 1) [Michel BLANCO, JacKc]</li>
<li>Added clone of Captain Silver (Japan, revision 1) [Apocalypse, The Dumping Union, JacKc]</li>
<li>Added clone of Super Street Fighter II to the CPS-2 driver [Barry, idc/Team Avalaunch]</li>
<li>Added clone of Bucky O'Hare (ver JA) [ShouTime, The Dumping Union, JacKc]</li>
<li>Added Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin (Special 2017, hack from GSC2007) [GSC2007, JacKc]</li>
<li>Updated The King of Fighters '98 (Combo) to Ver. 2017/04/08 [Ivex, JacKc]</li>
<li>Sync. romsets with MAME 0.187 [Barry]</li>
</ul>
<h3>v0.2.97.40</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Added Favorites feature: mark games as favorite from the Game Info window, or right-click in the list. Toggle favorites mode in the "Filters" section [dink]</li>
<li>Added right-click context menu (Play game, View in Progetto Emma, Game Info and Mark as Favorite) [Barry]</li>
<li>Added a gear-shifter display for Chequered Flag, Contental Circus, Super Chase, Chase HQ, SCI, Double Axle, Racing Beat, Top Speed, KonamiGT / RF2, OutRun / Turbo Outrun and Power Drift. Can be enabled/disabled in Misc -> Options. [dink]</li>
<li>Hooked up newly dumped sound-MCU's in Fire Shark, Vimana and Teki Paki, giving these games sound! Thank you CapsOff!! [dink]</li>
<li>Added bSkipStartupCheck - hidden .ini option for developers or those who never scan their romsets [dink]</li>
<li>Fixed odd-word/long reads and writes in the m68000 cpu interface which in turn fixes the nasty 68x020 bug that has been plaguing us for ages. This fixes freeze-ups in Asura Buster and other 68ec020-based games. [iq_132/dink]</li>
<li>Fixed in Asura Buster / Blade: Sprite & tile glitches, music synchronization [dink]</li>
<li>Fixed several issues which caused FBAlpha to crash when loading romsets with missing roms [dink]</li>
<li>Fixed Tail 2 Nose missing backgrounds [dink]</li>
<li>Added TMS32010 cpu core for the Flying Shark/Twin Cobra/Wardner drivers [dink]</li>
<li>Fixed Demon World sprite and tile offsets, also hooked up TMS32010 cpu and removed the no-TMS32010 hack [iq_132 / dink]</li>
<li>Fixed Flicky on SG-1000 hw [dink]</li>
<li>Fixed default eeprom settings for Charlie Ninja [dink]</li>
<li>Fixed sound in regulusu [dink]</li>
<li>Fixed Head Panic default settings, game is now playable [dink]</li>
<li>Fixed broken graphics/corruption in Mille Miglia 2: Great 1000 Miles Rally [dink]</li>
<li>Increased the Icon limit [dink]</li>
<li>Fixed P2 Start in Asterix [dink]</li>
<li>Added 1-bit dac/key clicker, map joy to cursor keys, Swap tape side A/B and lots of games to the MSX driver [dink]</li>
<li>Improved savestate stability/reliability with the MSX driver [dink]</li>
<li>Improved the MSM5205 interface w/MSM5205NewFrame() and MSM5205UpdateScanline(), for games that need a 256 interleave. [dink]</li>
<li>Fixed diagonal movements in Toaplan/Taito's GetStar / Guardian [dink]</li>
<li>Fixed a crash-scenario w/DonPachi on ARM and 64-bit systems [dink]</li>
<li>Fixed sound in Speed Spin [iq_132]</li>
<li>Added encrypted DataEast cpus to the M6502 core [iq_132]</li>
<li>Fixed service mode, sprite offsets and corrupt tilemaps in G.I.Joe [dink]</li>
<li>Fixed audio issues, movement issues, slowdowns in Captain Silver [dink]</li>
<li>Mega-update to the ES5506 core: dynamic resampling, volume functions [iq_132], 5505-interface fix, clipping issues and savestate support [dink]</li>
<li>Add NEC-V60 CPU Core [iq_132 / Romhack]</li>
<li>Add UPD-7725 DSP Core [iq_132]</li>
<li>Fixed sound, video issues and crash issues in Welltris [dink]</li>
<li>Fixed sound and hooked up proper analogue inputs for Taito's Super Chase [dink]</li>
<li>Fixed DAC speech and reboot issues in Baraduke / Alien Sector [dink]</li>
<li>Fixed missing sounds in Pac-Land and Sky Kid [dink]</li>
<li>Fixed a bug in the M6502 core where it wouldn't save the subtype and instruction handler [dink]</li>
<li>Added rotation code for Caliber 50 and DownTown [dink]</li>
<li>Fixed video layer offsets in namcos86 driver, improving video for Rolling Thunder, Hopping Mappy and SkyKid DX [dink]</li>
<li>Fixed Taito/Toaplan's RallyBike titlescreen [dink]</li>
<li>Added M6502ReleaseSlice() the the M6502 cpu core interface [dink]</li>
<li>Add UPD-7810 CPU Core [iq_132]</li>
<li>Fixed Thunder Cross 2 Japan and Asian versions [dink]</li>
<li>Fixed dim palette in Lightning Fighters [dink]</li>
<li>Enhanced the glass effect in Surprise Attack [dink]</li>
<li>Fixed grapics issues in Konami's Xexex: Sprite masking effect in intro, flashes between scene changes, offset issue in the highscore table, missing effect in Japanese version continue screen [dink]</li>
<li>Added new tilemap system with all the bells & whistles [iq_132]</li>
<li>Fixed dips in Dam Busters [dink]</li>
<li>Fixed gameover animation in Vapor Trail [rb6502]</li>
<li>Fixed titlescreen raster effect in R-Type Leo [dink]</li>
<li>Fixed sprite glitching in Shogun Warriors [dink]</li>
<li>Fixed strangely flipped tiles in Cosmic Cop [dink]</li>
<li>Ported latest i8051 core with DS5002FP support [dink]</li>
<li>Added support for 6821 PIA devices [dink]</li>
<li>Added apan callback support to the K054539 soundchip [dink]</li>
<li>Fixed service mode in Xexex. Bucky O`Hare and Moo Mesa [dink]</li>
<li>Fixed tile priority issue in Shackled [dink]</li>
<li>Re-wrote driver for Shadow Force and added raster effects [iq_132]</li>
<li>Re-wrote driver for Exed Exes [iq_132]</li>
<li>Fixed screen priority & graphics issues in Chase HQ, SCI and Night Striker [dink]</li>
<li>Fixed DIPs for Mars by Artic [dink]</li>
<li>Added proper MCU emulation on Heavy Barrel with the new i8051 core [dink]</li>
<li>Fixed Speed Coin - freezes up when the coin breaks if audio set to 48khz [dink]</li>
<li>timer.cpp: added ability to attach a timer to a NULL cpu for for instances where the main cpu cycles possibly vary [dink]</li>
<li>Added BDF_GAME_NOT_WORKING flag to burn.h [dink]</li>
<li>Fixed 8-way movements in Jump Shot [dink]</li>
<li>System 16 Updates [Barry]<ul>
<li>Added support for the Sega 315 5195 Memory Mapper chip<ul>
<li>Hooked up in Sega System 16B driver</li>
<li>Hooked up in Sega OutRun driver</li>
<li>Hooked up in Sega System 18 driver</li>
<li>Added Moonwalker and clones to the Sega System 18 driver now they can be supported</li>
</ul></li>
<li>Properly emulate the shadow/hilight palettes in Sega System 16 and associated drivers</li>
<li>Emulate priority buffer for Y-Board driver when mixing in System 16B sprites</li>
<li>Added Lock On (Philko) to the Sega System 16B driver</li>
<li>Fixed tile banking in some Altered Beast sets</li>
<li>Emulated the I8751 MCU in the parent set of Altered Beast</li>
<li>Emulated the I8751 MCU in the parent set of Golden Axe</li>
<li>Emulated the I8751 MCU in the parent set of Body Slam</li>
<li>Emulated the I8751 MCU in the clone Quartet 2 (8751 317-0010)</li>
<li>Added 5 bootlegs of SDI to the Sega System 16B driver</li>
<li>Fixed game ini saving for SDI & clones</li>
<li>Implemented full controls in Ace Attacker in the Sega System 16B driver</li>
<li>Fix outrundxj</li>
<li>Hooked up PPI8255 reads in Major League</li>
<li>Fix life counter in Space Harrier</li>
<li>Added support for screen flipping in Sega System 16A/16B drivers - fixes some levels of SDI which rely on it</li>
</ul></li>
<li>Added a module for Resister Networks (Palette Generation) [Barry]</li>
<li>Update lzma sdk to 16.04 [Barry]</li>
<li>Update libpng to 1.6.28 [Barry]</li>
<li>Update zlib to 1.2.11 [Barry]</li>
<li>Synchronize romsets with the latest MAME [Barry]</li>
<li>Fixed sprite priority issues in Task Force Harrier [dink]</li>
<li>Fixed alignment issues in Swat Police and Head Panic, x-scroll issues, and added missing flashing sprite effect on ESD16 Hardware [dink]</li>
<li>Synthesized a proper color palette for Time Limit [dink]</li>
<li>Improvements/Fixes for Super Kaneko Nova System: [dink]<ul>
<li>New cpu-based speedhack for most games - dip option</li>
<li>Fixed Music and SFX in Gals Panic S</li>
<li>Fixed attract-mode music cut short in VS Block Breaker/Saru Kani</li>
<li>Fixed garbage on screen when the game starts in VS Block Breaker/Saru Kani</li>
</ul>
<li>Updated KonamiBlendCopy() to be faster/more efficient [iq_132]</li>
<li>Fixed a crash in Donkey Kong 3 Japanese version [dink]</li>
<li>Fixed Z80's ZetRunEnd(); *revisited*. This fixes slowdown issues with Strikers 1945 Plus [dink]</li>
<li>Added newer-style VezMapMemory() function to the NEC V20-35 cpu interfaces. [dink]</li>
<li>Fixed a masking issue in NEC V20-35's read port interface [dink]</li>
<li>Fixed a blitter issue in Kangaroo, fixed savestates: video banking and lost music [dink]</li>
<li>Fixed nasty crackling/popping noises in Darius 2 [dink]</li>
<li>Hooked up shot and explosion samples to Seibu Stinger and Scion[c] [dink]</li>
<li>Fixed sprite flickering and freeze-ups in Xain'd Sleena [dink]</li>
<li>Front-End fix: when starting a game from the commandline, only init the blitter once. also don't get stuck in fullscreen when loading fails due to a bad romset [dink]</li>
<li>Fix some structure alignment issues so drivers can benefit from vectorization/SIMD optimizations present in latest gcc w/ -O3 and other recent compilers [dink, barbudreadmon]</li>
<li>Fix dipswitch issues in several games thanks to info from the libretro/fba guys [barbudreadmon, dink]</li>
<li>Fixed Dac and scrolling issues in Konami's Finalizer [dink]</li>
<li>Fixed a crash issue in Super-X (NTC) when up + down was pressed [dink]</li>
<li>Default Full Screen depth to 32bpp [dink]</li>
<li>Fixed DAC DC Offset on some System16 games: Shinobi, Quartet 1 and 2, eliminating pops and clicks [dink]</li>
<li>Added proper inputs for Wall Crash [dink]</li>
<li>Add default gun calibrations and fix sprite:tile priority issues in Operation Wolf 3 [dink]</li>
<li>Reduce the time duration "state loaded/saved" is displayed on the screen [dink]</li>
<li>Fixed mosaic tile effect on scene transitions in FixEight [dink]</li>
<li>Fixed sound synchronization issues in Batrider [dink]</li>
<li>Improvements and Fixes to the Input (re)Recording/Playback feature: [dink]<ul>
<li>Add Record from Power On option to replay/input recording</li>
<li>Shift+Backspace to disable/enable the frame counter while recording or playing back recordings</li>
<li>Fix a nasty bug that caused desynchs in some recordings</li>
</ul>
<li>Add original author(s) credit to each driver and core [iq_132]</li>
<li>Add trackball support to Capcom Bowling and Krazy Bowl [dink]</li>
<li>Fix crash with Force 16bit Emulation and Megadrive [dink]</li>
<li>Fix Gun & Frontier sprite lag issue [dink]</li>
<li>Fix Zero Point 1 and 2 Sprite priorities and sound effects in Zero Point 2 [dink]</li>
<li>Slight speedup with the search function [tumu]</li>
<li>Fix Demon World savestates [dink]</li>
<li>Fix timing issue in D-Con [dink]</li>
<li>Fix sprite alignment in oisipuzl [dink]</li>
<li>Fix savestate compatibility between 32bit/64bit systems [barbudreadmon & libretro guys, dink]</li>
<li>Fix Ghost 'n Goblins savestate banking issue, improve timing [dink]</li>
<li>Fix timing issue in Toki that occasionally caused tiles in the map-screen to jitter [dink]</li>
<li>Fix Hit the Ice inputs and graphics issues [dink]</li>
<li>Fix timing issues in 4 En Raya [dink]</li>
<li>Fix missing button #3 and video issues in Strategy X [dink]</li>
<li>Hook up trackball and fix palette issues - U.S. Classic now playable [dink]</li>
<li>Fix music and banking issues in Funny Bubble [dink]</li>
<li>Fix soundfx and timing in Tripool [dink]</li>
<li>Fixed soundcpu communications in Gauntlet, hooked up the Pokey sound generator and savestates [dink]</li>
<li>Improved M6502 core by properly handling indexed read/writes, fixed pulsing the nmi line with CPU_IRQSTATUS_AUTO [dink]</li>
<!-- new drivers -->
</ul>
<h4>New drivers</h4>
<ul>
<li>Konami's The Main Event and Cosmo Police Galivan / Ninja Emaki / UFO Robo Dangar were accidentally left out of the last release, sorry!</li>
<li>Added driver for Twin Cobra, Flying Shark / Sky Shark / Gulf War II [iq_132]</li>
<li>Added driver for Wardner [iq_132]</li>
<li>Added driver for Taito System-L (Fighting Hawk, Raimais, Champion Wrestler, Puzznic, Kuri Kinton, Evil Stone, etc) [iq_132]</li>
<li>Added driver for Dacholer / KickBoy and Itazura Tenshi [iq_132]</li>
<li>Add driver for games on SSV hardware: Twin Eagle 2, Vasara I and II, Change Air Blade, Dyna Gear, Survival Arts, Drift Out '94, Mobil Suit Gundam Final Shooting, Ultra-X-Weapons, Storm Blade and more [iq_132]</li>
<li>Added driver for FireTrap by WoodPlace [iq_132]</li>
<li>Added driver for games on Metro hardware: Blazing Tornado, Gun Master, Pang Poms, Sky Alert, Puzzli, Mouse Shooter GoGo/Bang Bang Ball/Battle Bubble, Bal Cube, Dharma Doujou [iq_132]</li>
<li>Added driver for Bogey Manor by Technos on modified Data East hardware [iq_132]</li>
<li>Added driver for Cloak and Dagger [iq_132 w/dink]</li>
<li>Added driver for B-Wings and Zaviga [iq_132]</li>
<li>Added driver for Sigma's Submarine [iq_132]</li>
<li>Added driver for Macross Plus [iq_132]</li>
<li>Added driver for Atari's Canyon Bomber [iq_132]</li>
<li>Added driver for Gaelco's World Rally [iq_132, dink]</li>
<li>Added driver for Dream World, Cute Fighter, Baryon Future Assault, Rolling Crush, Gaia on SemiCom DreamWorld Hardware [iq_132]</li>
<li>Added driver for Puzzle Bobble 2, 3 & 4, Gunlock/Rayforce, Bubble Bobble 2 & 3, Gekirindan, Grid Seeker, Twin Cobra II, Recalhorn, Land Maker and a whole bunch more on Taito F3 hardware [iq_132, dink]</li>
<li>Added driver for Shadow Land, Dragon Spirit, Pac-Mania, Galaga '88, Splatter House and others on Namco System 1 Hardware [iq_132, dink]</li>
<li>Added driver for Fantasy Land, Galaxy Gunner and Wheels Runner [iq_132, dink]</li>
<li>Added driver for Susume! / Go Go! Mile Smile and Gyakuten! Puzzle Bancho on Fuuki 16-bit Hardware [iq_132, dink]</li>
<li>Added driver for Karate Champ by Data East [iq_132, dink]</li>
<li>Added driver for Shot Rider, Zippy Race / Traverse USA [iq_132, dink]</li>
<li>Added driver for Konami's Hyper Sports and Road Fighter [iq_132]</li>
<li>Added driver for Konami's Juno First [iq_132]</li>
<li>Added driver for Battle Cross and DodgeMan [iq_132]</li>
<li>Added driver for Shoot Out by Data East [iq_132, dink]</li>
<li>Added driver for Acrobatic Dog Fight [iq_132, dink]</li>
<li>Added driver for Tetris, Hang-On Jr. and Transformer on Sega System E hardware [vbt]</li>
<li>Added drivers for Big Striker bootlegs [iq_132]</li>
<li>Added driver for Kusayakyuu (Baseball) [iq_132]</li>
<li>Added driver for Paddle Mania and The Next Space on Alpha 68k I hardware [iq_132]</li>
<!-- new game additions to existing drivers -->
</ul>
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Mini Planets (REV02) to the Megadrive driver [dink]</li>
<li>Added Miss World 2002 [NeoGeo de Ahuizotla, Artemio Urbina, The Dumping Union, JacKc]</li>
<li>Added Eeekk!! on pacman hardware [iq_132]</li>
<li>Added Sky Robo and Tatakae! Big Fighter to the armedf driver. Thanks to CapsOff for dumping the impossible protection MCU! [dink]</li>
<li>Added Hangzo! to the DataEast Rohga driver [iq_132]</li>
<li>Added Gals Panic S2 (Europe), now its the parent [rtw, JacKc]</li>
<li>Added Samurai Shodown II (Spacial 2017, hack from GSC2007) [GSC2007, JacKc, iq_132]</li>
<li>Finished emulation of early Seta games: Caliber 50, ThunderCade, Twin Eagle, DownTown, Meta Fox and Arbalester [dink]</li>
<li>Added Ken Sei Mogura: Street Fighter II (Japan 940418, Ver 1.00) [Barry]</li>
<!-- clones and updated romsets in drivers -->
</ul>
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Update kof98cb to 20170108 version [JacKc]</li>
<li>Replaced Mutant Night (mnight) with World version, Kawakus license now mnightj [JacKc]</li>
<li>Added clone of Burning Fight (prototype, ver 23.3, 910326) [Collin Foust, JacKc]</li>
<li>Added clone of WWF WrestleFest (World) [Hammy, The Dumping Union, JacKc]</li>
<li>Added clone of Mustache Boy (Italy) [ShouTime, JacKc]</li>
<li>Added clone of ORIENTAL SOFT 1945k III OPCX1 2000 Version (Korea) [ShouTime, JacKc]</li>
<li>Added clone of Forgotten Worlds (USA, B-Board 88618B-2, Rev. E) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Vendetta (World, 2 Players, ver. ?) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Sol Divide - The Sword Of Darkness (Korea) [Nomax, The Dumping Union, JacKc, dink]</li>
<li>Added clone of Raiden (Korea, bootleg) [Tirino73, JacKc]</li>
<li>Added clone of Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release) [Brian Hargrove, JacKc]</li>
<li>Added clone of Flicky (128k Version, 315-5051, larger roms) [system11, JacKc]</li>
<li>Added clone of Momoko 120% (English text) [Paul Hogger, JacKc]</li>
<li>Added clone of The NewZealand Story (World, old version) (older PCB) [Porchy, The Dumping Union, JacKc]</li>
<li>Added clone of Dynamite Duke (Japan, 25JUL89) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Fighting Fantasy (Japan revision ?) [Hammy, The Dumping Union, JacKc]</li>
<li>Added clone of King of the Monsters 2 - The Next Thing (older) [NeoSD, JacKc]</li>
<li>Added clone of Three Wonders (3wondersha) [Barry]</li>
<li>Added clone of The King of Fighters '99 - Millennium Battle (Korean release) [Brian Hargrove, JacKc]</li>
<li>Added clone of Deroon DeroDero (alt set) [arcademodbios, JacKc]</li>
<li>Added clone of Puzznic (US) [Coolmod, JacKc]</li>
<li>Added clone of Head Panic (ver. 0702, 02/07/1999) [hammy, Brian Troha, The Dumping Union, JacKc]</li>
<li>Added clone of Red Hawk (Greece) [Abelardator2, JacKc, iq_132]</li>
<li>Added clone of Dungeons & Dragons: Shadow over Mystara (Japan 960223) [ShouTime, Steven Fairbrother, Smitdogg, The Dumping Union, JacKc]</li>
<li>Added clone of Raiden II (Germany) [Caius, JacKc]</li>
<li>Update Samurai Shodown II Special to v1.0.0311 [GSC2007, JacKc]</li>
<li>Added clone of Street Fighter II: The World Warrior (World 910129) [Janniz, JacKc]</li>
<li>Added clone of Radical Radial (Japan) [ShouTime, JacKc]</li>
<li>Added clone of Flashgal (set 1, Kyugo logo) [Corrado Tomaselli, The Dumping Union, JacKc]</li>
<li>Added clone of Martial Masters / Xing Yi (V103, 102, 102, China) [kuze, JacKc]</li>
<li>Added clone of Rastan (World, Earlier code base) [System11, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II - The World Warrior (911210 Japan, rev L) [Bonky0013, The Dumping Union, JacKc]</li>
<li>Added clone of Sonic Blast Man (US) [coolmod, The Dumping Union, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (UPL bootleg) [Shoutime, The Dumping Union, JacKc]</li>
<li>Added clone of Prehistoric Isle in 1930 (World, bootleg) [The Iron Goat, JacKc]</li>
<li>Added clone of Knights of Valour - Sangoku Senki (V100, Hong Kong) [Pasky Junk, JacKc]</li>
<li>Added clone of Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 4, 921005 Asia) [Unknown, Barry]</li>
<li>Sync. PGM romsets with MAME 0.184 [JacKc]</li>
<li>Added clone of Bionic Commandos (bootleg, set 2) [The Dumping Union, JacKc]</li>
</ul>
<h3>v0.2.97.39</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Shots Factory update: esc to close window, change "All Sprites" to "Layer 1" [dink]</li>
<li>Fixed Palette Viewer color issues [dink]</li>
<li>Fixed Clear and ClearLock for Analogue & Mouse in the Input Editor [dink]</li>
<li>Fixed regression in FB Alpha v0.2.97.38 for E.D.F. : Earth Defense Force (Parent and Clones) [dink]</li>
<li>Fixed graphics issues for Heavyweight Champ (Japan, FD1094 317-0046 decrypted) in SEGA System16B driver [JacKc]</li>
<li>Haunted Castle is most likely-probably fixed now (sorry!) [dink]</li>
<li>Fixed Van Van Car [dink]</li>
<li>Added nsc8105 mcu support to the m6800 cpu core [dink]</li>
<li>Fixed road issues with Turbo Outrun [Barry]</li>
<li>Added i8051 mcu core [iq_132]</li>
<li>Fixed rowscrolling issues in Caveman Ninja (tree level and ending), Joe and Mac Returns (ending), Mutant Fighter intro [dink]</li>
<li>Sync. romsets with MAME 0.175 [Barry]</li>
<li>Fixed sprite issues on the Hacha Mecha Fighter bootleg titlescreen [dink]</li>
<li>When writing an .avi, don't lose frames when F1 (ffwd) is pressed [dink]</li>
<li>Added SN76477 soundcore [dink]</li>
<li>Fixed explosions and missing SFX in Stratovox / Speak and Rescue by hooking up the SN76477 soundcore [dink]</li>
<li>Fixed sound in Porky [dink]</li>
<li>Fixed booting & DIP issues with Main Event (SNK) [dink]</li>
<li>Fixed P2 inputs in Cabal [dink]</li>
<li>Fixed Gwar (Japanese version) [dink]</li>
<li>Fixed the apple sprite in Pooyan [dink, Zazzone]</li>
<li>Fixed the music tempo in Darkseal and used this new fix for Vapor Trail and Crude Buster as well [dink, Gab75]</li>
<li>Fixed Konami's The Main Event, it had sprite and priority issues (K052109 custom) [dink]</li>
<li>Fixed Highlight mode in Sunset Riders, fix also needed by Chequered Flag [iq_132, dink]</li>
<li>Operation Wolf, allow continue by default [dink, gamezfan]</li>
<li>Added re-recording functionality [blip, dink]</li>
<li>Split avi files every 2 gig while recording to prevent corrupted video [dink]</li>
<li>Added selectable 1x, 2x and 3x pixel modes to the avi writer [dink]</li>
<li>Fixed Warriors of Fate 3rd fire button on clones [gxb]</li>
<li>Improved the speed of the search function [dink]</li>
<li>Fixed crash loading a savestate or replay while a different game is running [dink]</li>
<li>Improved desynch issues with netplay and input recording of Capcom CPS1, CPS2, PGM and certain Cave games [dink]</li>
<li>Fixed possible crash with Battle Bakraid loading a state when the game isn't running [dink]</li>
<li>Made the recording icon smaller to be less intrusive while playing games and recording inputs [dink]</li>
<li>Added an option to display joystick/button movements while playing input recordings. [dink]</li>
<li>Fixed choppy sound on music fade-outs in DoDonPachi II: Bee Storm [dink]</li>
<li>Fixed gear shifting in Continental Circus [dink, Gab75]</li>
<li>Added new feature: Shift+F1 toggles FFWD on/off [dink]</li>
<li>Temporary work-around to Data East Backfire! to prevent crash [dink]</li>
<li>Under some circumstances certain macros could not be mapped [dink]</li>
<li>Fixed "smoke" and "dust" sprites in Super Hangon [dink]</li>
<li>Fixed crash when dieing in certain situations in Bonze Adventure [dink]</li>
<li>Fixed gear shifter in Contental Circus, Chase HQ, SCI, Racing Beat, Double Axle and Top Speed [dink]</li>
<li>Fixed missing SFX and graphics glitches in Top Speed [dink]</li>
<li>Fixed the adventure world in UFO Senshi Yohko Chan [dink]</li>
<li>Fixed video issues with savestates for certain Kaneko Supernova games [dink]</li>
<li>Fixed some broken sprites in Guwange [dink]</li>
<li>Fixed the big alien in Turbo Force (revisited) [dink]</li>
<li>Allow movement of the "Scanning ROMs" window [dink]</li>
<li>Fixed remaining lives issue in Woodpecker [dink]</li>
<li>Fixed missing line of pixels at the top of the screen in Air Gallete [dink]</li>
<li>Fixed some missing samples in Seta games w/ X1-010 soundchip [dink]</li>
<li>Fixed crash issue with X1-010 soundchip and 64bit systems [dink, Gab75]</li>
<li>Fixed graphics issues in US AAF Mustang and Twin Action in the NMK16 driver [dink]</li>
<li>Fixed analog controls and shifting in Konami GT / RF2 and Hyper Crash [dink]</li>
<li>Fixed crash issue with xx-in-1 Megadrive pirate carts [dink]</li>
<li>Fixed "BAD HARDWARE" issue with Arkanoid [dink]</li>
<li>Fixed life counter in Zzyzzyxx [dink]</li>
<li>Fixed dips and possible crash issue on 64bit systems with the Seta2 hunting games [dink]</li>
<li>Fixed the HUD face icon in Warrior Blade [dink]</li>
<li>Fixed several graphics issues in Gaiapolis [dink]</li>
<li>Fixed transparent color issue in Metamorphic Force and Violent Storm [dink]</li>
<li>Added YM2610 ADPCM samplebanking support for KOF98AE [dink]</li>
<li>Fixed choppy scrolling on the left side of the screen in Blazing Star [dink]</li>
<li>Fixed minor graphic glitch in X-Men [dink]</li>
<li>Fixed Funky Bee and Sky Lancer palette issues [dink]</li>
<li>Fixed timing issues in Martial Champion, now works but with graphical issues [dink]</li>
<li>Updated the cheat engine to support more modes: Watch, Wait for Modification, Level Selection and One-Shot [dink]</li>
<li>Fixed "Break the Statue" text in Metamorphic Force and spotlight on the belly dancer in Violent Storm [dink]</li>
<li>Fixed oddly-placed black lines and opaque windows in Lethal Enforcers [dink]</li>
<li>Fixed several bugs in the Konami-scc (K051649) core [dink]</li>
<li>Updated the Quiz Olympic driver [iq_132]</li>
<li>Updated the TMS9928a vdp to a newer core/line-based version [dink]</li>
<li><ul>
<li>Fixes Magical Tree in SG-1000</li>
<li>Fixes the Radar screen in Colecovision Defender</li>
</ul></li>
<li>Updated the Sunset Riders protection chip emulation, fixes walking on slanted surfaces [Angelo Salese]</li>
<li>Fixed the sprite offsets in Konami's Vendetta/Crime Fighters [dink]</li>
<li>Fixed the roms of Moon Alien 2 (Older Version) [JacKc]</li>
<li>Added configurable clipping to generic tile drawing [iq_132]</li>
<!-- clones and updated romsets in drivers -->
</ul>
<h4>Clones and updated romsets in existing drivers</h4>
<ul>
<li>Added clone of Street Fighter II' - Magic Delta Turbo (bootleg set 4 (with YM2151 + 2xMSM5205), 920313 etc) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 3) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 4) [f205v, maru79, JacKc]</li>
<li>Added clone of Street Fighter II' - Champion Edition (920313 etc bootleg set 5) [Janniz, f205v, JacKc]</li>
<li>Added clone of 1945k III (older, OPCX1 PCB) [system11, iq_132]</li>
<li>Added clone of Operation Thunderbolt (World, rev 1) [Muddymusic, The Dumping Union, JacKc]</li>
<li>Added clone of Fighting Fantasy world rev. 3 [bmcphail, JacKc]</li>
<li>Added clone of The NewZealand Story (US, old version) (older PCB) [Alex Cmaylo, The Dumping Union, JacKc]</li>
<li>Added clone of Metamorphic Force (ver AAA) [Abelardo Vidal, JacKc]</li>
<li>Added clone of Super Street Fighter II X: Grand Master Challenge (Japan 940311) [undamned, ShouTime, JacKc]</li>
<li>Added clone of Air Gallet (Europe, older) [Artemio Urbina, JacKc]</li>
<li>Added clone of New Zero Team (V33 SYSTEM TYPE_B hardware) [caius, JacKc]</li>
<li>Added clone of Teenage Mutant Ninja Turtles (US 4 Players, version H) [The Iron Goat, JacKc]</li>
<li>Added clone of Gulf Storm (Korea) to the Dooyong driver [system11, JacKc]</li>
<li>Updated The King of Fighters '99 (15th Anniversary Edition) to 20160827 Build [JacKc]</li>
<li>Updated The King of Fighters '98 (Combo/Ivex Hack) to 20161004 Build [JacKc]</li>
<li>Added clone of Street Fighter (Japan, pneumatic buttons) [ShouTime, Smitdogg, Jan Stuhler, Paul Thacker, Sean Sutton, The Dumping Union, JacKc]</li>
<li>Added 2 new Phoenix clones: Amstar Set 2 and Condor (S C Novar bootleg of Phoenix) [f205v, JacKc]</li>
<li>Added clone of Bubble Bobble: Ultra (Hack by Penta Penguin) [dink]</li>
<li>Added clone of Demon's World / Horror Story (set 2) [Sugoi Helsinki, JacKc]</li>
<li>Added clone of Teenage Mutant Ninja Turtles (Asia 4 Players, version ?) [Abelardo Vidal, The Dumping Union, JacKc]</li>
<!-- new game additions to existing drivers -->
</ul>
<h4>New additions to existing drivers</h4>
<ul>
<li>Added Triki Triki (Lover Boy bootleg) [Rafael Alonso (from ARCADE VINTAGE), JacKc]</li>
<li>Added Mercenario (Commando bootleg) [Rockman, JacKc]</li>
<li>Added Super Street Fighter II: The Tournament Battle (Japan 931005) [ShouTime, JacKc]</li>
<li>Added Mutant Warrior ( Altered Beast Datsu bootleg) [The Dumping Union, JacKc]</li>
<li>Added Shogun Warriors (Korea?) to the Kaneko 16 driver [Barry]</li>
<li>Added Dai Makai Mura debug edition to the PCE-SGX driver [dink]</li>
<li>Added Jungler, Tactician, Commando (Sega) & Loco-Motion to the RallyX driver [dink]</li>
<li>Added Bang!, Snowboard Championship and Touch 'n Go (Korea, Unprotected) to the Gaelco2 driver [dink, iq_132]</li>
<li>Added '96 Flag Rally to the 1945kiii driver [dink]</li>
<li>Added Mega Q-Bert to the Megadrive driver [dink]</li>
<li>Added Sega Master System Brawl to the Megadrive driver [dink]</li>
<li>Added Bomb on Basic City by vetea to the Megadrive driver [dink]</li>
<li>Added Bara Buru to the Sega MasterSystem driver [dink]</li>
<li>Added Data Storm to the Sega MasterSystem driver [dink]</li>
<li>Added Deluxe 4 U and Deluxe 5 to the ESD16 driver [JacKc]</li>
<li>Added Super UWOL! SG-1000 to the SG-1000 driver [dink]</li>
<!-- new drivers -->
</ul>
<h4>New drivers</h4>
<ul>
<li>Added driver for Parallel Turn [iq_132, dink]</li>
<li>Added driver for Breakthru and Darwin 4078 [iq_132, dink]</li>
<li>Added driver for Crazy Climber, Guzzler, Swimmer, River Patrol, Silver Land and Yamato [dink, iq_132]</li>
<li>Added driver for Zodiack, Mogu Chan, Dogfight, The Bounty, The Percussor. [dink]</li>
<li>Added driver for Dr. Micro [dink]</li>
<li>Added driver for Seicross, Radical Radial and Frisky Tom [iq_132]</li>
<li>Added driver for Calorie Kun [iq_132, dink]</li>
<li>Added driver for Jr. PacMan [iq_132, dink]</li>
<li>Added driver for Burger Time, Lock 'n Chase, Bump 'n Jump / Burnin' Rubber, Minky Monkey, Disco no.1 [dink, iq_132]</li>
<li>Added driver for Metal Freezer [Angelo Salese, iq_132]</li>
<li>Added driver for Fast Freddie / Fly Boy, Jump Coaster, Boggy '84, Red Robin, Imago [dink, iq_132]</li>
<li>Added driver for Heavy Unit [iq_132]</li>
<li>Added driver for Dangar, Galivan and Ninja Emaki [iq_132]</li>
<li>Added driver fot The Deep [Lucia Elia, iq_132]</li>
<li>Added driver for Zero Team 2000, New Zero Team and Raiden2DX v33 [iq_132]</li>
<li>Added driver for Chequered Flag [iq_132]</li>
<li>Added driver for Naughty Boy, Pop Flamer, Trivia Master/Genius [iq_132, dink]</li>
<li>Added driver for Cheeky Mouse [dink]</li>
<li>Added driver for Zodiack, Mogu Chan, Dogfight, The Bounty, The Percussor [dink]</li>
<li>Added driver for Jaleco's City Connection [iq_132]</li>
<li>Added driver for Phoenix & Pleiads [iq_132, dink (sound)]</li>
<li>Added driver for Syusse Oozumou [iq_132]</li>
<li>Added driver for Aeroboto / Formation Z [iq_132]</li>
<li>Added driver for Syvalion, Tetristh, Record Breaker and Dynamite League on Taito H hardware [iq_132]</li>
<li>Added driver for Track and Field / Hyper Olympic, Masters of Kin, Reaktor and Yie Ar Kung-Fu (GX361 conversion) [iq_132, dink]</li>
<li>Added driver for Gigas, Freekick, Counter Run and Perfect Billiard [vbt]</li>
<li>Added driver for MSX1-based games [dink]</li>
<li>Added driver for Konami's Ping Pong [iq_132]</li>
<li>Added driver for One + Two [iq_132]</li>
</ul>
<h3>v0.2.97.38</h3>
<h4>Fixes and new features</h4>
<ul>
<!-- fixes and features -->
<li>Fixed BurnSamplesSetLoop() in the sample core [dink]</li>
<li>Added the Toki devlopers' debug mode to Toki [dink]</li>
<li>Added several behind-the-scene improvements to the Galaga/Dig-Dug driver [dink]</li>
<li>Fixed a crash-situation with the Namco sound-core that only seemed to affect 64bit systems [dink, Gab75]</li>
<li>Capcom CPS3 is now friendly towards slower/embedded systems (Raspberry Pi etc.) [dink]</li>
<li>Fixed Capcom's The Speed Rumber: broken Boot-up messages, random slowdowns, screen priority issues [dink]</li>
<li>Fixed music in SD Gundam Psycho Salamander [dink]</li>
<li>Fixed extra buttons in Olds [iq_132]</li>
<li>Added default rom paths for SMS & GameGear systems [dink]</li>