-
Notifications
You must be signed in to change notification settings - Fork 1
/
allegro.log
8072 lines (8072 loc) · 969 KB
/
allegro.log
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
system I system.c:242 al_install_system [ 0.00000] Allegro version: 5.1.13 (WIP)
audio-dsound D dsound.cpp:258 _dsound_open [ 0.00162] Loading DirectSound module
system D wsystem.c:724 _al_win_safe_load_library [ 0.00182] PathFindOnPath found: C:\Windows\system32\dsound.dll
system D wsystem.c:635 load_library_at_path [ 0.00183] Calling LoadLibrary C:\Windows\system32\dsound.dll
system I wsystem.c:638 load_library_at_path [ 0.00225] Loaded C:\Windows\system32\dsound.dll
audio-dsound I dsound.cpp:275 _dsound_open [ 0.00227] Starting DirectSound...
audio-dsound D dsound.cpp:285 _dsound_open [ 0.02472] DirectSoundCreate8 succeeded
audio I audio.c:347 do_install_audio [ 0.02644] Using DirectSound driver
system D wsystem.c:245 win_get_display_driver [ 0.02648] Configuration value graphics.driver = default
system D wsystem.c:724 _al_win_safe_load_library [ 0.02704] PathFindOnPath found: C:\Windows\system32\d3d9.dll
system D wsystem.c:635 load_library_at_path [ 0.02705] Calling LoadLibrary C:\Windows\system32\d3d9.dll
system I wsystem.c:638 load_library_at_path [ 0.03163] Loaded C:\Windows\system32\d3d9.dll
d3d I d3d_disp.cpp:674 d3d_init_display [ 0.03431] Render-to-texture: 1
d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.03472] faux_fullscreen=0
d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.03473] al_display=02A00C40
d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.03473] al_display->vt=02B8B8C8
d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.03648] found 64 format combinations
display D display_settings.c:212 debug_display_settings [ 0.03651] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03653] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03653] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03655] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03655] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03657] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03657] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03659] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03659] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03661] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03662] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03663] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03664] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03665] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03666] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03667] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03668] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03675] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03676] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03678] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03678] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03680] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03680] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03682] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03682] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03684] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03684] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03686] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03686] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03687] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03688] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03689] Score is : 897
display D display_settings.c:212 debug_display_settings [ 0.03690] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03691] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03692] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03693] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03694] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03695] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03696] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03697] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03698] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03699] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03700] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03701] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03702] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03703] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03703] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03705] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03705] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03707] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03708] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03709] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03710] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03711] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03713] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03713] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03714] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03715] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03716] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03717] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03718] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03719] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03720] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03726] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03732] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03739] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03740] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03741] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03742] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03743] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03744] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03745] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03746] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03747] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03747] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03749] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03749] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03751] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03751] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03753] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03753] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03755] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03755] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03757] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03757] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03759] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03759] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03761] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03761] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03763] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03763] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03765] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03765] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03766] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03767] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:527 _al_score_display_settings [ 0.03768] Score is : 769
display D display_settings.c:212 debug_display_settings [ 0.03769] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03770] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03771] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03772] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03773] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03774] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03775] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03776] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03777] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03778] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03779] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03780] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03782] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03782] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03783] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03787] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03788] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03789] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03790] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03791] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03792] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03793] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03794] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03795] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03796] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03797] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03798] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03799] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03800] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03801] Single Buffer requirement not met.
display D display_settings.c:212 debug_display_settings [ 0.03802] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
display D display_settings.c:398 _al_score_display_settings [ 0.03803] Single Buffer requirement not met.
d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.03805] Trying format 0.
d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.03820] Chose a display format: 23
d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.03822] Normal window.
d3d I d3d_disp.cpp:781 d3d_create_device [ 0.05286] Using no depth stencil buffer
d3d D d3d_disp.cpp:839 d3d_create_device [ 0.06185] BeginScene succeeded in create_device
d3d D d3d_disp.cpp:847 d3d_create_device [ 0.06189] Success
d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.06191] Resumed after wait.
d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.06193] Format 0 succeeded.
d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.06195] Returning d3d_display: 02A00C40
d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.06196] al_display=02A00C40
d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.06197] al_display->vt=02B8B8C8
system W wsystem.c:728 _al_win_safe_load_library [ 0.06342] PathFindOnPath failed to find d3dx9_43.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.06402] PathFindOnPath failed to find d3dx9_42.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.06567] PathFindOnPath failed to find d3dx9_41.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.06729] PathFindOnPath failed to find d3dx9_40.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.06929] PathFindOnPath failed to find d3dx9_39.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07145] PathFindOnPath failed to find d3dx9_38.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07457] PathFindOnPath failed to find d3dx9_37.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07607] PathFindOnPath failed to find d3dx9_36.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07678] PathFindOnPath failed to find d3dx9_35.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07751] PathFindOnPath failed to find d3dx9_34.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07825] PathFindOnPath failed to find d3dx9_33.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07897] PathFindOnPath failed to find d3dx9_32.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.07961] PathFindOnPath failed to find d3dx9_31.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.08104] PathFindOnPath failed to find d3dx9_30.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.08314] PathFindOnPath failed to find d3dx9_29.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.08435] PathFindOnPath failed to find d3dx9_28.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.08670] PathFindOnPath failed to find d3dx9_27.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.08747] PathFindOnPath failed to find d3dx9_26.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.09133] PathFindOnPath failed to find d3dx9_25.dll
system W wsystem.c:728 _al_win_safe_load_library [ 0.09345] PathFindOnPath failed to find d3dx9_24.dll
d3dx9 E d3d_d3dx9.cpp:121 _al_load_d3dx9_module [ 0.09347] Failed to load D3DX9 library. Library is not installed.stdio D file_stdio.c:105 file_stdio_fopen [ 0.09741] opening gs_icon.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09807] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09813] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09814] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09815] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09816] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09817] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09817] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09818] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.09819] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.09820] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.09821] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.09822] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.09823] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.09891] added dtor for object 02A19FD0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.10003] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.10034] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10265] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10267] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10269] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10269] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10270] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10270] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10271] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10271] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.10272] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.10272] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.10273] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.10273] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.10274] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.10283] added dtor for object 02A16DA8, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.10685] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.10688] _al_d3d_sync_bitmap (video) ref count == 2
dtor D dtor.c:214 _al_unregister_destructor [ 0.10790] removed dtor for object 02A16DA8
d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.10799] d3d_destroy_bitmap: Release video texture failed.
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11085] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11089] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11090] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11090] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11091] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11092] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11092] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11093] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.11093] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.11094] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.11094] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.11095] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.11096] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.11114] added dtor for object 02A16DA8, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.11757] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.11768] _al_d3d_sync_bitmap (video) ref count == 2
dtor D dtor.c:214 _al_unregister_destructor [ 0.11897] removed dtor for object 02A16DA8
d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.11900] d3d_destroy_bitmap: Release video texture failed.
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12019] opening miriam.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12053] Font miriam.ttf loaded with pixel size 0 x 20.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12054] ascent=15.0, descent=-5.0, height=20.0
dtor D dtor.c:184 _al_register_destructor [ 0.12055] added dtor for object 02B8AA38, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12056] opening Audiowide-Regular.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12074] Font Audiowide-Regular.ttf loaded with pixel size 0 x 40.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12075] ascent=40.0, descent=-11.0, height=51.0
dtor D dtor.c:184 _al_register_destructor [ 0.12076] added dtor for object 02B8AB70, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12077] opening Audiowide-500.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12093] Font Audiowide-500.ttf loaded with pixel size 0 x 40.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12093] ascent=40.0, descent=-11.0, height=51.0
dtor D dtor.c:184 _al_register_destructor [ 0.12094] added dtor for object 02B8EB00, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12095] opening Audiowide-Regular.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12113] Font Audiowide-Regular.ttf loaded with pixel size 0 x 30.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12114] ascent=30.0, descent=-9.0, height=38.0
dtor D dtor.c:184 _al_register_destructor [ 0.12114] added dtor for object 02B8AB10, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12115] opening Audiowide-500.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12130] Font Audiowide-500.ttf loaded with pixel size 0 x 30.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12131] ascent=30.0, descent=-9.0, height=38.0
dtor D dtor.c:184 _al_register_destructor [ 0.12132] added dtor for object 02A01E20, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12133] opening Zebulon.otf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12148] Font Zebulon.otf loaded with pixel size 0 x 200.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12149] ascent=195.0, descent=-49.0, height=244.0
dtor D dtor.c:184 _al_register_destructor [ 0.12149] added dtor for object 02A2B490, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12150] opening Zebulon.otf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12164] Font Zebulon.otf loaded with pixel size 0 x 131.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12164] ascent=128.0, descent=-32.0, height=160.0
dtor D dtor.c:184 _al_register_destructor [ 0.12165] added dtor for object 02A2B520, func 0048E2A0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12166] opening 7seg.ttf rb
font D ttf.c:847 al_load_ttf_font_stretch_f [ 0.12182] Font 7seg.ttf loaded with pixel size 0 x 18.
font D ttf.c:849 al_load_ttf_font_stretch_f [ 0.12183] ascent=20.0, descent=-7.0, height=26.0
dtor D dtor.c:184 _al_register_destructor [ 0.12184] added dtor for object 02A2B640, func 0048E2A0
audio-dsound D dsound.cpp:320 _dsound_allocate_voice [ 0.12192] Allocating voice
audio-dsound D dsound.cpp:379 _dsound_allocate_voice [ 0.12194] Allocated voice
dtor D dtor.c:184 _al_register_destructor [ 0.12194] added dtor for object 02B8C390, func 004960C0
dtor D dtor.c:184 _al_register_destructor [ 0.12195] added dtor for object 02A31C78, func 00490440
audio-dsound D dsound.cpp:476 _dsound_start_voice [ 0.12196] Starting voice
audio-dsound D dsound.cpp:504 _dsound_start_voice [ 0.12197] CreateSoundBuffer
audio-dsound D dsound.cpp:513 _dsound_start_voice [ 0.12352] CreateSoundBuffer succeeded
audio-dsound D dsound.cpp:519 _dsound_start_voice [ 0.12353] Starting _dsound_update thread
audio-dsound I dsound.cpp:529 _dsound_start_voice [ 0.12357] Voice started
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12359] opening shootA.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12372] added dtor for object 02A02828, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12377] opening shootB.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12385] added dtor for object 02A02528, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12388] opening particle.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12396] added dtor for object 02A02608, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12398] opening dead.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12406] added dtor for object 02A02668, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12409] opening clunk.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12428] added dtor for object 02A3AC00, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12433] opening wind.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12447] added dtor for object 02A3AB80, func 004937F0
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12507] opening yippee.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.12523] added dtor for object 02A3ABA0, func 004937F0
acodec I ogg.c:203 _al_load_ogg_vorbis [ 0.12532] Loading sample gsloop.ogg.
stdio D file_stdio.c:105 file_stdio_fopen [ 0.12533] opening gsloop.ogg rb
acodec D ogg.c:262 _al_load_ogg_vorbis_f [ 0.12592] channels 2
acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.12593] word_size 2
acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.12594] rate 44100
acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.12594] total_samples 1518777
acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.12595] total_size 6075108
dtor D dtor.c:184 _al_register_destructor [ 0.24387] added dtor for object 02A3AB60, func 004937F0
dtor D dtor.c:184 _al_register_destructor [ 0.24419] added dtor for object 02A31D78, func 0048F5D0
dtor D dtor.c:184 _al_register_destructor [ 0.24429] added dtor for object 02A31E60, func 004358B0
dtor D dtor.c:184 _al_register_destructor [ 0.24434] added dtor for object 02A31F08, func 004300A0
system D wsystem.c:345 win_get_joystick_driver [ 0.24437] Selected combined XInput/DirectInput joystick driver.
system D wsystem.c:724 _al_win_safe_load_library [ 0.24516] PathFindOnPath found: C:\Windows\system32\xinput1_4.dll
system D wsystem.c:635 load_library_at_path [ 0.24517] Calling LoadLibrary C:\Windows\system32\xinput1_4.dll
system I wsystem.c:638 load_library_at_path [ 0.26089] Loaded C:\Windows\system32\xinput1_4.dll
xinput I wjoyxi.c:214 _imp_load_xinput_module_version [ 0.26147] Module "xinput1_4.dll" loaded.
system D wsystem.c:724 _al_win_safe_load_library [ 0.26578] PathFindOnPath found: C:\Windows\system32\dinput8.dll
system D wsystem.c:635 load_library_at_path [ 0.26582] Calling LoadLibrary C:\Windows\system32\dinput8.dll
system I wsystem.c:638 load_library_at_path [ 0.26664] Loaded C:\Windows\system32\dinput8.dll
dinput I wjoydxnu.cpp:1107 joydx_merge [ 0.32056] Merged, num joysticks=0
system D wsystem.c:724 _al_win_safe_load_library [ 0.32112] PathFindOnPath found: C:\Windows\system32\user32.dll
system D wsystem.c:635 load_library_at_path [ 0.32114] Calling LoadLibrary C:\Windows\system32\user32.dll
system I wsystem.c:638 load_library_at_path [ 0.32116] Loaded C:\Windows\system32\user32.dll
touch I wtouch_input.c:90 _al_win_init_touch_input_api [ 0.32118] touch input API installed successfully
touch I wtouch_input.c:241 init_touch_input [ 0.32119] registering touch window 02A00C40: 0
touch E wtouch_input.c:243 init_touch_input [ 0.32120] RegisterTouchWindow failed: Access is denied.
stdio D file_stdio.c:105 file_stdio_fopen [ 0.32133] opening controls.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32144] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32145] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32145] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32146] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32146] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32147] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32147] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32147] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.32148] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.32148] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.32149] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.32149] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.32150] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.32164] added dtor for object 02A794E0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.35365] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.35369] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 0.52592] opening menu_bg.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52611] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52612] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52612] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52613] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52613] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52614] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52614] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52614] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52615] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.52615] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.52616] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.52617] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.52617] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.52629] added dtor for object 02A790A0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53842] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53847] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 0.57570] opening gs.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57587] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57588] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57589] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57589] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57590] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57590] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57591] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57591] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57591] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57592] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57592] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57593] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57593] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 0.57605] added dtor for object 02A3B2C0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.57738] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.57739] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 0.59692] opening slam.wav rb
dtor D dtor.c:184 _al_register_destructor [ 0.59713] added dtor for object 02A3AD80, func 004937F0
dtor D dtor.c:184 _al_register_destructor [ 0.59734] added dtor for object 02A3B1D8, func 0048F5D0
dtor D dtor.c:184 _al_register_destructor [ 0.59736] added dtor for object 02A79628, func 0048F5D0
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59805] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59807] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59808] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59809] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59810] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59811] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59812] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59812] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.59813] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.59814] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.59815] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.59816] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.59818] Chose bitmap format 9
font D ttf.c:225 alloc_glyph_region [ 0.59860] Glyph 42: 111x92 (112x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.61186] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.61192] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.65074] Glyph 85: 149x118 (152x120)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65595] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65636] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.68053] Glyph 68: 125x92 (128x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.68350] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.68353] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.71088] Glyph 89: 125x92 (128x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71615] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71622] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.74907] Glyph 54: 117x92 (120x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.75505] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.75510] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.78789] Glyph 87: 117x92 (120x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.79385] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.79390] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.82390] Glyph 82: 117x92 (120x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.82676] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.82679] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 0.85656] Glyph 80: 137x92 (140x92)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86253] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86259] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90295] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90308] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90647] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90653] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.93681] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.93686] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.94634] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.94639] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.94802] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.94805] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:415 cache_glyph [ 3.65579] Glyph 3 has zero size.
font D ttf.c:415 cache_glyph [ 3.65582] Glyph 0 has zero size.
dtor D dtor.c:214 _al_unregister_destructor [ 4.10112] removed dtor for object 02A79628
dtor D dtor.c:214 _al_unregister_destructor [ 4.10117] removed dtor for object 02A790A0
dtor D dtor.c:214 _al_unregister_destructor [ 4.10303] removed dtor for object 02A3B2C0
stdio D file_stdio.c:105 file_stdio_fopen [ 4.12908] opening menu_bg.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12920] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12921] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12921] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12922] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12922] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12923] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12923] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12924] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.12924] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.12925] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.12925] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.12926] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.12926] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 4.13049] added dtor for object 02A3B2C0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.13187] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.13189] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 4.17769] opening gs.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17795] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17796] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17797] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17797] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17799] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17799] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17801] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17803] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.17803] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.17805] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.17805] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.17806] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.17807] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 4.17864] added dtor for object 02A790A0, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.18110] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.18115] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 4.19978] opening ships.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20076] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20078] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20080] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20080] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20082] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20082] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20083] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20084] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.20085] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.20086] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.20086] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.20088] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.20088] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 4.20113] added dtor for object 02A79628, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.20528] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.20532] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 4.29328] opening grey_ships.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29375] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29376] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29376] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29377] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29377] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29378] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29378] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29378] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.29379] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.29379] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.29380] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.29380] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.29381] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 4.29394] added dtor for object 02A77188, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.29599] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.29601] _al_d3d_sync_bitmap (video) ref count == 1
dtor D dtor.c:184 _al_register_destructor [ 4.31303] added dtor for object 02A772D0, func 0048F5D0
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31358] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31360] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31360] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31361] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31361] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31362] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31362] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31363] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.31363] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.31363] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.31364] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.31364] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.31365] Chose bitmap format 9
font D ttf.c:225 alloc_glyph_region [ 4.31375] Glyph 37: 27x25 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.31449] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.31451] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.31795] Glyph 68: 21x18 (24x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.31841] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.31843] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.32036] Glyph 57: 21x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.32080] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.32082] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.32276] Glyph 58: 20x18 (20x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.32322] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.32323] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32548] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32551] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32552] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32553] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32553] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32555] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32555] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32556] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 4.32557] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 4.32557] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 4.32559] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 4.32559] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 4.32561] Chose bitmap format 9
font D ttf.c:225 alloc_glyph_region [ 4.32584] Glyph 48: 35x31 (36x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.32909] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.32912] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.33939] Glyph 82: 28x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.34113] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.34116] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.34846] Glyph 71: 28x33 (28x36)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.35009] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.35011] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.35628] Glyph 72: 28x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.35718] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.35719] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.36432] Glyph 36: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.36436] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.36438] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.36855] Glyph 56: 19x18 (20x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.36899] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.36901] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.37092] Glyph 54: 21x18 (24x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.37145] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.37147] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.37357] Glyph 65: 10x25 (12x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.37410] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.37411] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.37612] Glyph 31: 24x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.37665] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.37667] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.37874] Glyph 66: 26x18 (28x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.37924] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.37925] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.38145] Glyph 47: 30x31 (32x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.38149] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.38150] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.38967] Glyph 70: 26x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.39157] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.39160] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.39982] Glyph 68: 27x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.40166] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.40168] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.40966] Glyph 79: 17x33 (20x36)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.41156] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.41158] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:415 cache_glyph [ 4.41978] Glyph 3 has zero size.
font D ttf.c:225 alloc_glyph_region [ 4.41985] Glyph 42: 31x31 (32x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.42170] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.42172] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.42993] Glyph 80: 33x26 (36x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.43189] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.43192] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.44005] Glyph 43: 24x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.44009] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.44010] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.44497] Glyph 62: 7x25 (8x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.44549] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.44551] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.44753] Glyph 67: 21x18 (24x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.44807] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.44809] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.45015] Glyph 60: 21x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.45066] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.45068] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.45275] Glyph 69: 21x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.45327] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.45329] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.45507] Glyph 78: 21x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.45532] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.45533] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.45722] Glyph 71: 17x18 (20x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.45774] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.45776] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.48515] Glyph 122: 8x10 (8x12)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.48595] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.48597] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.48789] Glyph 72: 19x18 (20x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.48815] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.48816] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.49025] Glyph 75: 22x19 (24x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.49072] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.49074] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.49264] Glyph 121: 6x6 (8x8)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.49308] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.49310] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.49501] Glyph 32: 24x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.49551] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.49553] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.49747] Glyph 73: 19x23 (20x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.49791] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.49793] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.49982] Glyph 38: 24x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.50024] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.50025] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.50218] Glyph 76: 29x18 (32x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.50261] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.50263] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.50453] Glyph 64: 22x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.50478] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.50479] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 4.50657] Glyph 34: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.50707] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.50709] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.50981] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.50987] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.51930] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.51934] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.52088] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.52096] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.53560] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.53565] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.54213] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.54218] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.54474] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.54478] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.75495] Glyph 43: 31x31 (32x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.75497] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.75498] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.78757] Glyph 86: 26x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.78978] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.78980] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.79765] Glyph 87: 25x31 (28x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.79919] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.79921] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.80695] Glyph 49: 31x32 (32x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.80849] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.80851] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.81643] Glyph 90: 38x26 (40x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.81795] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.81797] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.82592] Glyph 85: 24x26 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.82751] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.82753] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.83589] Glyph 78: 35x33 (36x36)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.83774] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.83776] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.84605] Glyph 61: 21x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.84609] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.84610] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.85206] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.85212] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.85462] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.85464] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.92156] Glyph 45: 30x31 (32x32)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.92160] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.92160] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.93064] Glyph 76: 14x33 (16x36)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.93263] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.93266] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 6.94135] Glyph 81: 27x26 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.94322] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.94324] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.95381] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.95403] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 7.82715] Glyph 35: 25x23 (28x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.82890] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.82892] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 7.83154] Glyph 59: 17x25 (20x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.83207] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.83209] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 7.83405] Glyph 11: 17x7 (20x8)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.83450] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.83451] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 7.83671] Glyph 137: 16x19 (16x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.83717] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.83718] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.83978] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.83982] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.15496] Glyph 30: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.15500] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.15500] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.15786] Glyph 74: 21x18 (24x20)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.15833] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.15835] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.16026] Glyph 14: 10x23 (12x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.16056] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.16059] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.16262] Glyph 22: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.16307] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.16310] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.16501] Glyph 15: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.16546] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.16548] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.16745] Glyph 19: 23x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.16790] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.16791] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.16987] Glyph 21: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.17030] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.17032] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.17228] Glyph 13: 28x23 (28x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.17272] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.17274] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.17463] Glyph 17: 22x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.17507] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.17509] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.17801] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.17812] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.28827] Glyph 27: 23x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.28831] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.28831] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 12.29111] Glyph 135: 6x11 (8x12)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.29161] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.29163] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.29444] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.29446] _al_d3d_sync_bitmap (video) ref count == 1
dtor D dtor.c:214 _al_unregister_destructor [ 26.85393] removed dtor for object 02A772D0
font D ttf.c:225 alloc_glyph_region [ 26.85529] Glyph 25: 24x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 26.85533] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 26.85541] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 26.85868] Glyph 49: 24x23 (24x24)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 26.85935] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 26.85937] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 26.86170] Glyph 39: 26x25 (28x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 26.86220] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 26.86222] _al_d3d_sync_bitmap (video) ref count == 1
font D ttf.c:225 alloc_glyph_region [ 26.86435] Glyph 55: 21x25 (24x28)
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 26.86489] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 26.86491] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 26.86782] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 26.86787] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 27.82219] opening canyon.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84945] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84948] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84949] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84951] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84951] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84952] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84953] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84954] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.84955] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 27.84956] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 27.84957] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 27.84958] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 27.84959] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 27.84995] added dtor for object 02A6D410, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.85131] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.85133] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 27.87602] opening dirt128.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87651] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87652] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87653] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87653] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87653] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87654] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87654] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87657] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.87658] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 27.87658] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 27.87659] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 27.87659] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 27.87660] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 27.87676] added dtor for object 02A8A780, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.87708] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.87708] _al_d3d_sync_bitmap (video) ref count == 1
stdio D file_stdio.c:105 file_stdio_fopen [ 27.87978] opening ship_masks.png rb
dtor D dtor.c:184 _al_register_destructor [ 27.88051] added dtor for object 02AF4788, func 004177B0
dtor D dtor.c:214 _al_unregister_destructor [ 27.88435] removed dtor for object 02AF4788
stdio D file_stdio.c:105 file_stdio_fopen [ 27.88439] opening rb
bitmap W bitmap_io.c:200 al_load_bitmap_flags [ 27.88441] Bitmap has no extension and filetype identification failed - not even trying to load it.
stdio D file_stdio.c:105 file_stdio_fopen [ 27.88451] opening canyon_col.png rb
dtor D dtor.c:184 _al_register_destructor [ 27.88501] added dtor for object 02AF4788, func 004177B0
dtor D dtor.c:214 _al_unregister_destructor [ 27.90814] removed dtor for object 02AF4788
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90893] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90895] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90897] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90898] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90899] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90901] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90902] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90903] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 27.90904] Fake format
d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 27.90906] Alpha doesn't match
d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 27.90908] Adapter format is 23
d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 27.90910] Found a format
d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 27.90911] Chose bitmap format 9
dtor D dtor.c:184 _al_register_destructor [ 27.90937] added dtor for object 02A6AC18, func 004177B0
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.90945] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.90947] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91023] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91025] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91078] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91081] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91131] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91134] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91174] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91176] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91205] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91206] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91235] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91237] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91265] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91267] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91295] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91297] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91324] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91326] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91353] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91355] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91382] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91383] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91409] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91410] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91437] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91438] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91465] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91466] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91493] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91493] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91520] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91521] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91548] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91549] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91576] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91577] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91603] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91604] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91631] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91632] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91660] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91661] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91688] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91689] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91716] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91717] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91744] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91745] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91772] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91772] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91799] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91800] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91827] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91828] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91855] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91856] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91884] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91885] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91902] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91903] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91930] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91931] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91948] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91949] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.91978] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.91980] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92010] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92011] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92041] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92042] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92073] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92073] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92103] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92104] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92134] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92134] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92164] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92165] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92194] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92195] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92224] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92225] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92255] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92255] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92286] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92287] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92305] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92306] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92337] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92338] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92368] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92368] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92399] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92400] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92428] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92429] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92459] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92460] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92489] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92490] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92519] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92520] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92549] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92550] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92567] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92568] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92597] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92598] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92629] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92629] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92663] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92664] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92692] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92693] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92711] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92712] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92741] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92742] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92771] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92772] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92801] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92802] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92832] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92833] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92864] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92864] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92894] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92894] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92924] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92925] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92954] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92954] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.92985] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.92986] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93016] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93016] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93046] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93047] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93079] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93080] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93110] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93111] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93142] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93143] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93172] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93173] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93205] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93206] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93235] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93236] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93265] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93266] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93295] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93296] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93326] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93327] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93356] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93357] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93390] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93391] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93420] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93420] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93451] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93451] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93481] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93482] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93511] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93512] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93530] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93530] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93560] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93561] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93590] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93591] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93620] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93621] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93651] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93651] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93680] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93681] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93711] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93712] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93742] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93743] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93772] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93773] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93790] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93791] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93820] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93821] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93851] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93852] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93869] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93870] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93899] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93900] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93930] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93931] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93959] _al_d3d_sync_bitmap (system) ref count == 1
d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 27.93960] _al_d3d_sync_bitmap (video) ref count == 2
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 27.93989] _al_d3d_sync_bitmap (system) ref count == 1