Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
226 KB
Referenced Files
None
Subscribers
None
diff --git a/DarthInvaders.sdf b/DarthInvaders.sdf
index 6011d5a..441ecb4 100644
Binary files a/DarthInvaders.sdf and b/DarthInvaders.sdf differ
diff --git a/Test.cpp b/Test.cpp
index b0a7c00..6c69496 100644
--- a/Test.cpp
+++ b/Test.cpp
@@ -1,807 +1,807 @@
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup") //no console window behind game window
#include<allegro5\allegro.h>
#include<allegro5\allegro_native_dialog.h>
#include<allegro5\allegro_primitives.h>
#include<allegro5\allegro_image.h>
#include <allegro5\allegro_font.h>
#include <allegro5\allegro_ttf.h>
#include <allegro5\allegro_audio.h>
#include <allegro5\allegro_acodec.h>
#include "Enemy.h"
#include "Spaceship.h"
#include "Bullet.h"
#include "Global.h"
#include "BackGround.h"
#include "Barrier.h"
using namespace std;
//GLOBALS
enum KEYS {LEFT, RIGHT, SPACE};
bool keys[5] = {false,false,false};
int gameState = 1; //initial gamestate is menu
extern int width;
extern int height;
int numAlive = NUM_COLUMNS*NUM_ROWS;
int Current_EnemyCount = NUM_COLUMNS*NUM_ROWS;
int EnemyWaveCount = 0;
int b = 0;
//METHODS
void setEnemy();
void collideEnemy(int&);
void collidePlayer();
void moveDown(int&);
void enemyShoot();
void updateBullet();
bool reachEnd();
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image);
void UpdateBackground(BackGround &back);
void DrawBackground(BackGround &back);
void CollideBarrier();
void Reactivate_Enemies();
void EnemyReachEnd();
void BulletBarrierCollide();
void InitialiseBarriers();
//INITIALISE
Spaceship player(width/2, height*4/5);
Bullet playerBullet(player.x_pos, player.y_pos,10,true);
Bullet enemyBullet(0,0,10,false);
Enemy arrEnem[NUM_COLUMNS][NUM_ROWS]; //array of objects
Barrier Asteroid[3];
BackGround BG;
BackGround MG;
BackGround FG;
struct MovingBackground
{
float x;
float y;
float velX;
float velY;
int dirX;
int dirY;
int width;
int height;
ALLEGRO_BITMAP *BG;
};
int main(void)
{
setEnemy();
enemyBullet.isFriendly = false;
srand((unsigned)time(NULL));
//primitive variables
const int FPS = 60;
bool done = false;
bool redraw = true;
InitialiseBarriers();
MovingBackground MBG;
if(!al_init())
{
al_show_native_message_box(NULL,NULL,NULL,"Could not initialize allegro",NULL,NULL);
return -1;
}
ALLEGRO_BITMAP *bgImage = NULL;
ALLEGRO_BITMAP *mgImage = NULL;
ALLEGRO_BITMAP *fgImage = NULL;
//Allegro variables
ALLEGRO_DISPLAY *DISPLAY = NULL;
ALLEGRO_BITMAP *picHealth[7];
ALLEGRO_BITMAP *picShip = NULL;
ALLEGRO_BITMAP *picBullet = NULL;
ALLEGRO_BITMAP *picEnemy = NULL;
ALLEGRO_BITMAP *Game = NULL;
ALLEGRO_BITMAP *MENU = NULL;
ALLEGRO_EVENT_QUEUE *TestQueue = NULL;
ALLEGRO_TIMER *timer = NULL;
ALLEGRO_FONT *font25 = NULL;
ALLEGRO_FONT *font50 = NULL;
ALLEGRO_SAMPLE *blaster = NULL;
ALLEGRO_SAMPLE *explosion = NULL;
ALLEGRO_SAMPLE *music = NULL;
ALLEGRO_SAMPLE *startGame = NULL;
ALLEGRO_BITMAP *Barrier[5];
ALLEGRO_BITMAP *AsImage[3];
//Allegro Module Init
al_init_image_addon();
al_set_new_window_position(400, 200); //set pos of game window
DISPLAY = al_create_display(width, height);
al_hide_mouse_cursor(DISPLAY);
al_init_primitives_addon();
al_install_keyboard();
al_init_font_addon();
al_init_ttf_addon();
al_install_audio();
al_init_acodec_addon();
al_reserve_samples(4);
blaster = al_load_sample("XWing-Laser.ogg");
explosion = al_load_sample("Blast.ogg");
startGame = al_load_sample("xwing.ogg");
music = al_load_sample("Star_Wars.ogg");
if (!DISPLAY)
{
al_show_native_message_box(NULL, NULL, NULL, "Could not initialize display", NULL, NULL);
return -1;
}
//Load Pictures
picBullet=al_load_bitmap("Lazer.png");
picShip =al_load_bitmap("player1.png");
picEnemy = al_load_bitmap("enemy.png");
Game = al_load_bitmap("Goodpic.png");
MENU = al_load_bitmap("star_sky.png");
Barrier[0] = al_load_bitmap("B4.png");
al_convert_mask_to_alpha(Barrier[0], al_map_rgb(255, 255, 255));
Barrier[1] = al_load_bitmap("B3.png");
al_convert_mask_to_alpha(Barrier[1], al_map_rgb(255, 255, 255));
Barrier[2] = al_load_bitmap("B2.png");
al_convert_mask_to_alpha(Barrier[2], al_map_rgb(255, 255, 255));
Barrier[3] = al_load_bitmap("B1.png");
al_convert_mask_to_alpha(Barrier[3], al_map_rgb(255, 255, 255));
Barrier[4] = al_load_bitmap("B0.png");
al_convert_mask_to_alpha(Barrier[4], al_map_rgb(255, 255, 255));
AsImage[0] = Barrier[4];
AsImage[1] = Barrier[4];
AsImage[2] = Barrier[4];
picHealth[0] = al_load_bitmap("1.png");
picHealth[1] = al_load_bitmap("2.png");
picHealth[2] = al_load_bitmap("3.png");
picHealth[3] = al_load_bitmap("4.png");
picHealth[4] = al_load_bitmap("5.png");
picHealth[5] = al_load_bitmap("6.png");
picHealth[6] = al_load_bitmap("blank.png");
bgImage = al_load_bitmap("starBG.png");
mgImage = al_load_bitmap("starMG.jpg");
fgImage = al_load_bitmap("starFG.png");
for (int i = 0; i < 7; i++)
al_convert_mask_to_alpha(picHealth[i], al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picShip,al_map_rgb(0,0,0));
al_convert_mask_to_alpha(picEnemy, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picBullet, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(mgImage, al_map_rgb(0, 0, 0));
InitBackground(BG, 0, 0, 1, 0, 800, 600, -1, 1, bgImage);
InitBackground(MG, 0, 0, 3, 0, 2000, 768, -1, 1, mgImage);
InitBackground(FG, 0, 0, 5, 0, 800, 600, -1, 1, fgImage);
al_set_display_icon(DISPLAY, picShip);
timer=al_create_timer(1.0/FPS);
TestQueue= al_create_event_queue();
al_register_event_source(TestQueue,al_get_keyboard_event_source());
al_register_event_source(TestQueue,al_get_display_event_source(DISPLAY));
al_register_event_source(TestQueue,al_get_timer_event_source(timer));
al_start_timer(timer);
int score = 0;
int frameCount = 0;
font25 = al_load_font("Legacy.ttf", 38, 0);
font50 = al_load_font("STARWARS.TTF", 55, 0);
al_play_sample(music, 1, 0, 1, ALLEGRO_PLAYMODE_LOOP, NULL);
while (!done)
{
ALLEGRO_EVENT GETKEY;
al_wait_for_event(TestQueue, &GETKEY);
if (GETKEY.type == ALLEGRO_EVENT_DISPLAY_CLOSE) //will allow clicking X button to close program
{
done = true;
}
else if (GETKEY.type == ALLEGRO_EVENT_TIMER)
{
redraw = true;
frameCount++;
if (keys[LEFT])
player.MoveSpaceshipLeft();
if (keys[RIGHT])
player.MoveSpaceshipRight();
if (keys[SPACE]) //Spacebar will fire
{
if (playerBullet.status ==0)
{
al_play_sample(blaster, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
playerBullet.status = 1;
}
}
UpdateBackground(BG);
UpdateBackground(MG);
UpdateBackground(FG);
collideEnemy(score);
if (Current_EnemyCount == 0)
{
EnemyWaveCount++;
Current_EnemyCount = NUM_COLUMNS*NUM_ROWS;
numAlive = NUM_COLUMNS*NUM_ROWS;
Reactivate_Enemies();
setEnemy();
if (player.health != 100)
player.health += 10;
}
CollideBarrier();
collidePlayer();
BulletBarrierCollide();
EnemyReachEnd();
enemyShoot();
moveDown(frameCount);
updateBullet();
}
else if (GETKEY.type==ALLEGRO_EVENT_KEY_DOWN)
{
switch(GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE: //esc to end the game
done = true;
break;
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = true;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = true;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE]=true;
break;
}
}
else if (GETKEY.type == ALLEGRO_EVENT_KEY_UP)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = false;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = false;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE] = false;
break;
}
}
if (gameState == 1)
{
if (GETKEY.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE:
gameState = 3;
break;
case ALLEGRO_KEY_SPACE:
gameState = 2;
break;
}
}
}
if (gameState == 2)
{
if (GETKEY.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE:
gameState = 3;
break;
}
}
}
if (redraw && al_is_event_queue_empty(TestQueue)) //rendering
{
redraw = false;
if (gameState == 1)
{
al_draw_bitmap(MENU, 0, 0, 0);
al_draw_text(font25, al_map_rgb(255, 40, 78), width / 2, height- 750, ALLEGRO_ALIGN_CENTRE, "AMSST PRESENTS");
al_draw_text(font50, al_map_rgb(255, 40, 78), (width / 2), (height) - 690, ALLEGRO_ALIGN_CENTRE, "DARTH INVADERS");
al_draw_text(font25, al_map_rgb(255, 40, 78), (width / 2), (height) - 350, ALLEGRO_ALIGN_CENTRE, "PRESS SPACE TO START");
al_draw_text(font25, al_map_rgb(255, 40, 78), (width / 2), (height -300) , ALLEGRO_ALIGN_CENTRE, "PRESS ESC ESCAPE");
}
else if (gameState ==2)
{
-
+ DrawBackground(BG);
+ DrawBackground(MG);
+ DrawBackground(FG);
for (b = 0; b < 3; b++)
{
if (Asteroid[b].life_points != -1)
{
AsImage[b] = Barrier[Asteroid[b].life_points];
}
if (Asteroid[b].life_points == 5)
AsImage[b] = Barrier[4];
if (Asteroid[b].life_points == 4)
AsImage[b] = Barrier[3];
if (Asteroid[b].life_points == 3)
AsImage[b] = Barrier[2];
if (Asteroid[b].life_points == 2)
AsImage[b] = Barrier[1];
if (Asteroid[b].life_points == 1)
AsImage[b] = Barrier[0];
}
if (Asteroid[0].active == true)
al_draw_bitmap(AsImage[0], 50, 500, 0);
if (Asteroid[1].active == true)
al_draw_bitmap(AsImage[1], 435, 500, 0);
if (Asteroid[2].active == true)
al_draw_bitmap(AsImage[2], 820, 500, 0);
- DrawBackground(BG);
- DrawBackground(MG);
- DrawBackground(FG);
+
if (playerBullet.status == 1 && player.active) //if bullet still active
{
playerBullet.Increment(); //bullet will move pos
al_draw_bitmap(picBullet, playerBullet.x_pos, playerBullet.y_pos, 0); //redraw at new pos
if (playerBullet.y_pos < 20)
{
playerBullet.status = 0;
updateBullet();
}
}
if (enemyBullet.status == 1)
{
enemyBullet.Increment(); //bullet will move pos
al_draw_bitmap(picBullet, enemyBullet.x_pos, enemyBullet.y_pos, 0);
}
switch (player.health)
{
case 60:
al_draw_bitmap(picHealth[0], 10, 40, 0);
break;
case 50:
al_draw_bitmap(picHealth[1], 10, 40, 0);
break;
case 40:
al_draw_bitmap(picHealth[2], 10, 40, 0);
break;
case 30:
al_draw_bitmap(picHealth[3], 10, 40, 0);
break;
case 20:
al_draw_bitmap(picHealth[4], 10, 40, 0);
break;
case 10:
al_draw_bitmap(picHealth[5], 10, 40, 0);
break;
case 0:
al_draw_bitmap(picHealth[6], 10, 40, 0);
break;
}
if (player.health > 0)
{
al_draw_bitmap(picShip, player.x_pos - 45, player.y_pos, 0);
}
bool test = reachEnd();
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
arrEnem[i][j].Move(test);
al_draw_bitmap(picEnemy, arrEnem[i][j].x_pos, arrEnem[i][j].y_pos, 0);
}
}
}
al_draw_textf(font25, al_map_rgb(255, 0, 0), 10, 0, 0, "SCORE: %i", score);
}
else if(gameState == 3)
{
if (player.health == 0)
{
al_play_sample(explosion, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
player.health = 1; // <--- bush method to make it only sound once :p
}
al_draw_textf(font50, al_map_rgb(255, 0, 0), width/2 -250, height/2 -200, 0, "FINAL SCORE: %i", score);
}
al_flip_display(); //flip display to show all drawn objects
al_clear_to_color(al_map_rgb(0, 0, 0)); //background colour
}
}
//Destroy allegro variables
al_destroy_sample(blaster);
al_destroy_bitmap(Game);
al_destroy_bitmap(MENU);
al_destroy_sample(explosion);
al_destroy_sample(startGame);
al_destroy_sample(music);
al_destroy_event_queue(TestQueue);
al_destroy_timer(timer);
al_destroy_display(DISPLAY);
al_destroy_bitmap(picEnemy);
al_destroy_bitmap(picShip);
al_destroy_bitmap(picBullet);
al_destroy_font(font25);
al_destroy_font(font50);
for (int i = 0; i < 7; i++)
al_destroy_bitmap(picHealth[i]);
al_destroy_bitmap(bgImage);
al_destroy_bitmap(mgImage);
al_destroy_bitmap(fgImage);
return 0;
}
void collidePlayer()
{
if (enemyBullet.status)
{
if (enemyBullet.y_pos < player.y_pos + player.boxheight //checks if within box
&& enemyBullet.y_pos > player.y_pos - player.boxheight
&& enemyBullet.x_pos < player.x_pos + player.boxright
&& enemyBullet.x_pos > player.x_pos - player.boxleft)
{
enemyBullet.status = 0; //bullet set to not active
player.health -= 10;
}
}
if (player.health == 0)
{
player.active = false;
gameState = 3;
}
}
void setEnemy()
{
//row 1
arrEnem[0][0].set(width / 2 - sp, 65); //left
arrEnem[1][0].set(width / 2, 65); //middle
arrEnem[2][0].set(width / 2 + sp, 65); //right
arrEnem[3][0].set(width / 2 - 2 * sp, 65);
arrEnem[4][0].set(width / 2 + 2 * sp, 65);
arrEnem[5][0].set(width / 2 - 3 * sp, 65);
arrEnem[6][0].set(width / 2 + 3 * sp, 65);
arrEnem[7][0].set(width / 2 - 4 * sp, 65);
//row 2
arrEnem[0][1].set(width / 2 - sp, 130); //left
arrEnem[1][1].set(width / 2, 130); //middle
arrEnem[2][1].set(width / 2 + sp, 130); //right
arrEnem[3][1].set(width / 2 - 2 * sp, 130);
arrEnem[4][1].set(width / 2 + 2 * sp, 130);
arrEnem[5][1].set(width / 2 - 3 * sp, 130);
arrEnem[6][1].set(width / 2 + 3 * sp, 130);
arrEnem[7][1].set(width / 2 - 4 * sp, 130);
//row 3
arrEnem[0][2].set(width / 2 - sp, 195); //left
arrEnem[1][2].set(width / 2, 195); //middle
arrEnem[2][2].set(width / 2 + sp, 195); //right
arrEnem[3][2].set(width / 2 - 2 * sp, 195);
arrEnem[4][2].set(width / 2 + 2 * sp, 195);
arrEnem[5][2].set(width / 2 - 3 * sp, 195);
arrEnem[6][2].set(width / 2 + 3 * sp, 195);
arrEnem[7][2].set(width / 2 - 4 * sp, 195);
//row 4
arrEnem[0][3].set(width / 2 - sp, 260);
arrEnem[1][3].set(width / 2, 260);
arrEnem[2][3].set(width / 2 + sp, 260);
arrEnem[3][3].set(width / 2 - 2 * sp, 260);
arrEnem[4][3].set(width / 2 + 2 * sp, 260);
arrEnem[5][3].set(width / 2 - 3 * sp, 260);
arrEnem[6][3].set(width / 2 + 3 * sp, 260);
arrEnem[7][3].set(width / 2 - 4 * sp, 260);
}
void collideEnemy(int &score)
{
if (playerBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++) //collision detection ahead. Proceed with caution
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (playerBullet.y_pos - 25 < arrEnem[i][j].y_pos + arrEnem[i][j].boxheight //checks if within box of enemy
&& playerBullet.y_pos > arrEnem[i][j].y_pos - arrEnem[i][j].boxheight
&& playerBullet.x_pos < arrEnem[i][j].x_pos + arrEnem[i][j].boxright
&& playerBullet.x_pos > arrEnem[i][j].x_pos - arrEnem[i][j].boxleft)
{
playerBullet.status = 0; //bullet set to not active
arrEnem[i][j].active = false; //enemy set to not active
Current_EnemyCount--;
switch (j)
{
case 0:
score += 40;
break;
case 1:
score += 20;
break;
case 2:
score += 20;
break;
default:
score += 10;
break;
}
numAlive--;
}
}
}
}
}
}
void moveDown(int &frameCount)
{
int interval = 60; //how long enemies take to move down depends on how many enemies left
if (numAlive > 30)
{
interval = 360;
}
else if (30 > numAlive && numAlive > 15)
{
interval = 300;
}
else if (15 > numAlive && numAlive > 8)
{
interval = 240;
}
else if (8 > numAlive && numAlive > 2)
{
interval = 120;
}
else if (numAlive == 0)
{
gameState = 3;
}
if (frameCount % interval == 0)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].y_pos += 20;
}
}
}
}
void enemyShoot()
{
if (!enemyBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
int randCol = rand() % NUM_COLUMNS;
int randRow = rand() % NUM_ROWS;
if (randCol == i && randRow == j)
{
enemyBullet.UpdatebulletPos(arrEnem[i][j]);
enemyBullet.status = 1;
break;
}
}
}
}
}
}
void updateBullet()
{
if (playerBullet.status == 0) //while bullet not active sets pos of ship as initial bullet pos
playerBullet.UpdateBulletPos(player);
}
bool reachEnd() //returns true if any enemy hits either of the sides
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (width-80 < arrEnem[i][j].x_pos && arrEnem[i][j].speed > 0) //if moving to the right and close to right wall
{
return true;
break;
}
else if (10 > arrEnem[i][j].x_pos && arrEnem[i][j].speed < 0) //if moving to the left and close to left wall
{
return true;
break;
}
}
}
}
return false;
}
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image)
{
back.x = x;
back.y = y;
back.velX = velx;
back.velY = vely;
back.WIDTH = width;
back.HEIGHT = height;
back.dirX = dirX;
back.dirY = dirY;
back.image = image;
}
void UpdateBackground(BackGround &back)
{
back.x += back.velX * back.dirX;
if (back.x + back.WIDTH <= 0)
back.x = 0;
}
void DrawBackground(BackGround &back)
{
al_draw_bitmap(back.image, back.x, back.y, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.y, 0);
}
void InitialiseBarriers()
{
Asteroid[0].SetBarrierBound(111, 10, 15);
Asteroid[0].SetBarrierpos(50, 500);
Asteroid[0].setLife(5);
Asteroid[0].active = true;
Asteroid[1].SetBarrierBound(111, 10, 15);
Asteroid[1].SetBarrierpos(435, 500);
Asteroid[1].setLife(5);
Asteroid[1].active = true;
Asteroid[2].SetBarrierBound(111, 10, 15);
Asteroid[2].SetBarrierpos(820, 500);
Asteroid[2].setLife(5);
Asteroid[2].active = true;
}
void Reactivate_Enemies()
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].active = true;
}
}
}
void CollideBarrier()
{
int i = 0;
for (; i<3; i++)
if (Asteroid[i].active == true)
{
if (enemyBullet.status == 1)
{
if (enemyBullet.x_pos >(Asteroid[i].x_pos - Asteroid[i].Bleft) && enemyBullet.x_pos<(Asteroid[i].x_pos + Asteroid[i].Bright)
&& enemyBullet.y_pos>(Asteroid[i].y_pos - Asteroid[i].BHeight) && enemyBullet.y_pos < (Asteroid[i].y_pos + Asteroid[i].BHeight))
{
if (Asteroid[i].life_points != 0)
{
Asteroid[i].life_points--;
if (Asteroid[i].life_points == 0)
{
Asteroid[i].active = false;
}
}
enemyBullet.status = 0;
}
}
}
}
void BulletBarrierCollide()
{
int i = 0;
for (; i < 3; i++)
{
if (Asteroid[i].active == true)
{
if (playerBullet.status == 1)
{
if (playerBullet.x_pos >(Asteroid[i].x_pos - Asteroid[i].Bleft) && playerBullet.x_pos<(Asteroid[i].x_pos + Asteroid[i].Bright)
&& playerBullet.y_pos>(Asteroid[i].y_pos - Asteroid[i].BHeight) && playerBullet.y_pos < (Asteroid[i].y_pos + Asteroid[i].BHeight))
{
playerBullet.status = 0;
}
}
}
}
}
void EnemyReachEnd()
{
int i = 0;
int j = 0;
for (i = 0; i < NUM_COLUMNS; i++)
for (j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active == true)
{
if (arrEnem[i][j].y_pos > Asteroid[0].y_pos - Asteroid[0].BHeight)
{
gameState = 3;
}
}
}
}
diff --git a/allegro.log b/allegro.log
index 2225265..b32943e 100644
--- a/allegro.log
+++ b/allegro.log
@@ -1,882 +1,948 @@
stdio D file_stdio.c:105 file_stdio_fopen [ 0.00000] opening C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\Debug\allegro5.cfg r
system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
system D wsystem.c:771 _al_win_safe_load_library [ 0.00000] PathFindOnPath found: C:\WINDOWS\system32\shcore.dll
system D wsystem.c:682 load_library_at_path [ 0.00000] Calling LoadLibrary C:\WINDOWS\system32\shcore.dll
system I wsystem.c:685 load_library_at_path [ 0.00000] Loaded C:\WINDOWS\system32\shcore.dll
system I system.c:252 al_install_system [ 0.00000] Allegro version: 5.2.0
system D wsystem.c:721 maybe_parent_dir [ 0.00033] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system D wsystem.c:771 _al_win_safe_load_library [ 0.00045] PathFindOnPath found: C:\WINDOWS\system32\d3d9.dll
-system D wsystem.c:682 load_library_at_path [ 0.00047] Calling LoadLibrary C:\WINDOWS\system32\d3d9.dll
-system I wsystem.c:685 load_library_at_path [ 0.00347] Loaded C:\WINDOWS\system32\d3d9.dll
-d3d I d3d_disp.cpp:674 d3d_init_display [ 0.02754] Render-to-texture: 1
-d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.02850] faux_fullscreen=0
-d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.02854] al_display=0049B510
-d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.02857] al_display->vt=00494A78
-d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.03051] found 64 format combinations
-display D display_settings.c:212 debug_display_settings [ 0.03055] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03061] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03063] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03064] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03066] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03071] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03073] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03075] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03077] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03079] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03080] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03082] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03083] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03085] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03087] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03088] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03090] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03095] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03097] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03098] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03100] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03101] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03103] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03105] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03106] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03108] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03109] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03111] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03112] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03114] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03115] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03117] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.03118] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03120] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03122] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03124] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03125] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03127] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03129] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03131] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03133] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03135] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03137] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03140] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03142] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03144] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03146] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03148] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03149] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03151] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03153] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03155] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03156] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03158] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03159] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03161] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03162] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03164] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03165] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03167] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03169] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03170] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03172] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03174] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03176] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03178] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03179] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03182] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03184] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03188] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03190] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03194] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03196] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03198] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03200] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03202] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03203] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03205] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03206] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03208] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03209] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03211] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03212] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03214] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03215] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03217] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03218] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03221] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03222] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03224] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03225] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03228] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03229] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03233] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03235] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.03238] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.03239] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03241] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03242] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03245] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03247] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03250] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03251] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03254] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03255] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03257] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03258] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03260] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03261] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03263] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03264] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03269] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03271] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03273] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03275] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03278] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03280] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03282] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03284] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03286] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03288] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03291] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03293] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03296] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03298] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03300] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.03302] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.03305] Single Buffer requirement not met.
-d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.03310] Trying format 0.
-d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.03404] Chose a display format: 23
-d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.03408] Normal window.
-d3d I d3d_disp.cpp:781 d3d_create_device [ 0.04987] Using no depth stencil buffer
-d3d D d3d_disp.cpp:839 d3d_create_device [ 0.05954] BeginScene succeeded in create_device
-d3d D d3d_disp.cpp:847 d3d_create_device [ 0.05959] Success
-d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.05966] Resumed after wait.
-d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.05969] Format 0 succeeded.
-d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.05972] Returning d3d_display: 0049B510
-d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.05973] al_display=0049B510
-d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.05974] al_display->vt=00494A78
-system D wsystem.c:721 maybe_parent_dir [ 0.06000] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06044] PathFindOnPath failed to find d3dx9_43.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06056] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06106] PathFindOnPath failed to find d3dx9_42.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06135] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06181] PathFindOnPath failed to find d3dx9_41.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06194] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06240] PathFindOnPath failed to find d3dx9_40.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06254] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06308] PathFindOnPath failed to find d3dx9_39.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06319] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06373] PathFindOnPath failed to find d3dx9_38.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06392] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06442] PathFindOnPath failed to find d3dx9_37.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06461] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06512] PathFindOnPath failed to find d3dx9_36.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06526] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06611] PathFindOnPath failed to find d3dx9_35.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06630] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06698] PathFindOnPath failed to find d3dx9_34.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06712] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06761] PathFindOnPath failed to find d3dx9_33.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06773] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06828] PathFindOnPath failed to find d3dx9_32.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06843] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06907] PathFindOnPath failed to find d3dx9_31.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06924] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.06979] PathFindOnPath failed to find d3dx9_30.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.06993] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07042] PathFindOnPath failed to find d3dx9_29.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.07056] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07108] PathFindOnPath failed to find d3dx9_28.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.07122] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07169] PathFindOnPath failed to find d3dx9_27.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.07183] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07231] PathFindOnPath failed to find d3dx9_26.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.07244] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07293] PathFindOnPath failed to find d3dx9_25.dll
-system D wsystem.c:721 maybe_parent_dir [ 0.07306] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
-system W wsystem.c:775 _al_win_safe_load_library [ 0.07354] PathFindOnPath failed to find d3dx9_24.dll
-d3dx9 E d3d_d3dx9.cpp:121 _al_load_d3dx9_module [ 0.07359] Failed to load D3DX9 library. Library is not installed.audio-dsound I dsound.cpp:249 _dsound_open [ 0.07413] Starting DirectSound...
-audio-dsound D dsound.cpp:258 _dsound_open [ 0.09722] DirectSoundCreate8 succeeded
-audio I audio.c:347 do_install_audio [ 0.09913] Using DirectSound driver
-audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.09921] Allocating voice
-audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.09923] Allocated voice
-dtor D dtor.c:187 _al_register_destructor [ 0.09925] added dtor for voice 004929B8, func 5002117C
-dtor D dtor.c:187 _al_register_destructor [ 0.09928] added dtor for mixer 06B0B3B0, func 500211F9
-audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.09931] Starting voice
-audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.09932] CreateSoundBuffer
-audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.10078] CreateSoundBuffer succeeded
-audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.10081] Starting _dsound_update thread
-audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.10089] Voice started
-dtor D dtor.c:187 _al_register_destructor [ 0.10139] added dtor for sample_instance 06B0C010, func 500214BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.10142] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10144]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10145]
-dtor D dtor.c:187 _al_register_destructor [ 0.10147] added dtor for sample_instance 06B16DA8, func 500214BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.10156] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10157]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10158]
-dtor D dtor.c:187 _al_register_destructor [ 0.10159] added dtor for sample_instance 06B1EFF0, func 500214BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.10161] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10162]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10163]
-dtor D dtor.c:187 _al_register_destructor [ 0.10164] added dtor for sample_instance 06B1F338, func 500214BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.10166] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10168]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.10169]
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10171] Loading sample XWing-Laser.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.10172] opening XWing-Laser.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10205] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10207] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10208] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10210] total_samples 9153
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10211] total_size 18306
-dtor D dtor.c:187 _al_register_destructor [ 0.10349] added dtor for sample 06AF1748, func 500213ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10353] Loading sample Blast.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.10354] opening Blast.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10382] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10384] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10385] rate 24000
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10386] total_samples 52884
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10387] total_size 105768
-dtor D dtor.c:187 _al_register_destructor [ 0.10627] added dtor for sample 06AF1790, func 500213ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10631] Loading sample xwing.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.10633] opening xwing.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10664] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10665] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10667] rate 11025
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10669] total_samples 37250
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10670] total_size 74500
-dtor D dtor.c:187 _al_register_destructor [ 0.10969] added dtor for sample 06AF1AF0, func 500213ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10976] Loading sample Star_Wars.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.10978] opening Star_Wars.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.11031] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.11033] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.11034] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.11036] total_samples 7172901
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.11037] total_size 14345802
-dtor D dtor.c:187 _al_register_destructor [ 0.37798] added dtor for sample 06AF19D0, func 500213ED
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.37804] opening Lazer.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37824] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37827] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37828] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37830] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37832] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37834] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37836] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37838] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37839] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.37841] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.37843] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.37845] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.37847] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.37868] added dtor for bitmap 06B1F0F8, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.37951] opening player1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37961] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37963] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37964] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37965] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37967] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37968] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37969] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37970] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.37971] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.37972] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.37974] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.37975] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.37976] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.37987] added dtor for bitmap 06B81808, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.38025] opening enemy.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38033] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38035] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38036] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38037] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38038] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38039] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38040] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38041] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38043] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.38044] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.38045] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.38046] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.38048] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.38056] added dtor for bitmap 06AEBEB0, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.38075] opening Goodpic.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38083] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38084] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38086] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38087] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38088] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38089] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38090] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38091] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.38092] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.38093] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.38095] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.38096] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.38097] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.38192] added dtor for bitmap 06B50898, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.43105] opening star_sky.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43120] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43122] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43123] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43124] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43125] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43126] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43128] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43129] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.43130] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.43131] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.43133] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.43134] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.43136] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.43244] added dtor for bitmap 06B3A540, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46132] opening 1.png rb
+system D wsystem.c:771 _al_win_safe_load_library [ 0.00050] PathFindOnPath found: C:\WINDOWS\system32\d3d9.dll
+system D wsystem.c:682 load_library_at_path [ 0.00052] Calling LoadLibrary C:\WINDOWS\system32\d3d9.dll
+system I wsystem.c:685 load_library_at_path [ 0.00678] Loaded C:\WINDOWS\system32\d3d9.dll
+d3d I d3d_disp.cpp:674 d3d_init_display [ 0.03560] Render-to-texture: 1
+d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.03640] faux_fullscreen=0
+d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.03646] al_display=00A2F2C0
+d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.03649] al_display->vt=009F2E78
+d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.03703] found 64 format combinations
+display D display_settings.c:212 debug_display_settings [ 0.03706] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03709] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03712] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03714] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03716] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03719] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03727] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03729] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03731] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03735] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03737] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03740] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03741] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03744] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03746] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03749] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03751] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03760] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03762] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03765] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03767] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03770] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03772] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03775] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03777] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03780] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03782] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03784] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03786] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03789] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03791] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03794] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03796] color: 32 (rgba 8880), depth: 0, 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.03801] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03804] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03806] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03809] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03811] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03813] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03816] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03818] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03820] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03823] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03825] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03828] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03830] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03833] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03835] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03839] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03841] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03844] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03846] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03848] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03850] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03853] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03854] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03858] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03860] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03862] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03865] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03867] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03870] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03872] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03874] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03877] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03881] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03889] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03891] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03893] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03895] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03898] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03900] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03903] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03905] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03908] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03909] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03912] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03914] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03917] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03919] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03922] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03924] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03927] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03929] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03932] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03934] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03940] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03942] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03944] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03946] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03949] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03951] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03954] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03956] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03958] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03960] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03963] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03965] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03968] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03970] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03972] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03974] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03977] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03979] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03982] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03984] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03987] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03989] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03991] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03993] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04000] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04003] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04005] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04007] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04010] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04012] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04015] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04017] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04019] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04021] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04024] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04026] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04029] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04031] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04034] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.04036] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.04039] Single Buffer requirement not met.
+d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.04043] Trying format 0.
+d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.04096] Chose a display format: 23
+d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.04099] Normal window.
+d3d I d3d_disp.cpp:781 d3d_create_device [ 0.05266] Using no depth stencil buffer
+d3d D d3d_disp.cpp:839 d3d_create_device [ 0.06233] BeginScene succeeded in create_device
+d3d D d3d_disp.cpp:847 d3d_create_device [ 0.06237] Success
+d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.06241] Resumed after wait.
+d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.06245] Format 0 succeeded.
+d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.06249] Returning d3d_display: 00A2F2C0
+d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.06252] al_display=00A2F2C0
+d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.06254] al_display->vt=009F2E78
+system D wsystem.c:721 maybe_parent_dir [ 0.06274] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06330] PathFindOnPath failed to find d3dx9_43.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06343] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06399] PathFindOnPath failed to find d3dx9_42.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06417] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06466] PathFindOnPath failed to find d3dx9_41.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06482] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06529] PathFindOnPath failed to find d3dx9_40.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06541] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06585] PathFindOnPath failed to find d3dx9_39.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06597] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06638] PathFindOnPath failed to find d3dx9_38.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06650] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06691] PathFindOnPath failed to find d3dx9_37.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06704] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06745] PathFindOnPath failed to find d3dx9_36.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06758] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06804] PathFindOnPath failed to find d3dx9_35.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06816] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06860] PathFindOnPath failed to find d3dx9_34.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06875] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06912] PathFindOnPath failed to find d3dx9_33.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06921] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06952] PathFindOnPath failed to find d3dx9_32.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.06961] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.06994] PathFindOnPath failed to find d3dx9_31.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07003] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07033] PathFindOnPath failed to find d3dx9_30.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07041] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07072] PathFindOnPath failed to find d3dx9_29.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07081] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07116] PathFindOnPath failed to find d3dx9_28.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07126] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07160] PathFindOnPath failed to find d3dx9_27.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07171] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07207] PathFindOnPath failed to find d3dx9_26.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07216] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07247] PathFindOnPath failed to find d3dx9_25.dll
+system D wsystem.c:721 maybe_parent_dir [ 0.07256] Also searching C:\Users\Muhammad\Documents\Visual Studio 2015\Projects\DarthInvaders\
+system W wsystem.c:775 _al_win_safe_load_library [ 0.07288] PathFindOnPath failed to find d3dx9_24.dll
+d3dx9 E d3d_d3dx9.cpp:121 _al_load_d3dx9_module [ 0.07291] Failed to load D3DX9 library. Library is not installed.audio-dsound I dsound.cpp:249 _dsound_open [ 0.07441] Starting DirectSound...
+audio-dsound D dsound.cpp:258 _dsound_open [ 0.09291] DirectSoundCreate8 succeeded
+audio I audio.c:347 do_install_audio [ 0.09452] Using DirectSound driver
+audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.09460] Allocating voice
+audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.09463] Allocated voice
+dtor D dtor.c:187 _al_register_destructor [ 0.09465] added dtor for voice 025ABE28, func 0F14117C
+dtor D dtor.c:187 _al_register_destructor [ 0.09468] added dtor for mixer 025BF448, func 0F1411F9
+audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.09471] Starting voice
+audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.09473] CreateSoundBuffer
+audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.09583] CreateSoundBuffer succeeded
+audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.09586] Starting _dsound_update thread
+audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.09644] Voice started
+dtor D dtor.c:187 _al_register_destructor [ 0.09647] added dtor for sample_instance 025C4AB8, func 0F1414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09652] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09654]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09655]
+dtor D dtor.c:187 _al_register_destructor [ 0.09658] added dtor for sample_instance 025D4008, func 0F1414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09669] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09671]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09672]
+dtor D dtor.c:187 _al_register_destructor [ 0.09674] added dtor for sample_instance 025D4220, func 0F1414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09677] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09678]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09680]
+dtor D dtor.c:187 _al_register_destructor [ 0.09682] added dtor for sample_instance 025D4568, func 0F1414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09685] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09687]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09688]
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.09691] Loading sample XWing-Laser.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.09693] opening XWing-Laser.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.09742] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.09745] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.09747] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.09750] total_samples 9153
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.09752] total_size 18306
+dtor D dtor.c:187 _al_register_destructor [ 0.09958] added dtor for sample 025B6AA0, func 0F1413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.09966] Loading sample Blast.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.09968] opening Blast.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10011] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10013] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10015] rate 24000
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10017] total_samples 52884
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10018] total_size 105768
+dtor D dtor.c:187 _al_register_destructor [ 0.10440] added dtor for sample 025B66B0, func 0F1413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10446] Loading sample xwing.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.10448] opening xwing.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10485] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10488] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10489] rate 11025
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10491] total_samples 37250
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10492] total_size 74500
+dtor D dtor.c:187 _al_register_destructor [ 0.10787] added dtor for sample 025B67D0, func 0F1413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10791] Loading sample Star_Wars.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.10793] opening Star_Wars.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10843] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10845] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10848] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10850] total_samples 7172901
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10852] total_size 14345802
+dtor D dtor.c:187 _al_register_destructor [ 0.36461] added dtor for sample 025B6860, func 0F1413ED
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.36467] opening Lazer.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36484] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36486] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36487] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36488] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36489] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36491] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36492] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36493] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36494] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.36495] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.36496] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.36500] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.36505] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.36523] added dtor for bitmap 025F7910, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.36653] opening player1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36668] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36670] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36672] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36673] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36675] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36677] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36678] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36680] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36682] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.36683] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.36685] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.36687] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.36689] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.36707] added dtor for bitmap 025FA7D0, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.36755] opening enemy.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36776] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36778] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36780] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36782] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36783] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36785] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36786] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36788] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36790] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.36791] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.36793] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.36797] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.36801] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.36817] added dtor for bitmap 02600F18, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.36846] opening Goodpic.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36857] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36858] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36859] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36861] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36862] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36863] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36864] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36865] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.36866] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.36867] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.36868] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.36870] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.36871] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.37072] added dtor for bitmap 025EBBD0, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.42362] opening star_sky.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42386] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42388] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42390] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42392] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42394] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42395] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42397] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42399] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.42400] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.42402] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.42404] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.42406] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.42408] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.42593] added dtor for bitmap 025FFC70, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.45674] opening B4.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45693] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45694] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45696] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45697] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45698] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45699] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45700] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45701] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.45702] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.45703] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.45705] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.45706] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.45708] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.45719] added dtor for bitmap 025DEF78, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.45804] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.45806] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46122] opening B3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46139] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46142] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46143] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46144] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46146] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46147] Fake format
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46149] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46152] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46153] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46154] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46155] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46156] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46157] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46158] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46159] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46161] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46162] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46163] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46177] added dtor for bitmap 06B50E90, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46244] opening 2.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46252] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46253] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46254] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46256] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46257] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46258] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46259] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46260] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46261] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46262] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46263] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46265] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46266] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46275] added dtor for bitmap 06B50FF8, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46294] opening 3.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46301] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46302] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46304] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46305] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46306] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46307] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46308] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46309] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46310] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46311] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46312] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46314] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46315] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46323] added dtor for bitmap 06B34E90, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46335] opening 4.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46344] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46346] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46347] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46348] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46349] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46350] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46352] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46354] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46355] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46356] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46358] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46359] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46360] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46369] added dtor for bitmap 06B5ACA8, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46381] opening 5.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46390] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46391] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46392] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46393] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46394] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46395] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46397] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46398] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46399] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46400] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46401] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46402] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46403] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46412] added dtor for bitmap 06B2AD98, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46428] opening 6.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46437] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46440] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46441] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46442] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46443] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46444] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46445] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46446] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46447] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46449] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46450] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46451] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46452] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46461] added dtor for bitmap 06B2AF00, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46474] opening blank.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46482] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46484] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46485] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46488] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46491] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46492] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46493] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46494] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46495] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46496] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46497] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46498] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46500] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46526] added dtor for bitmap 06B60940, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.46688] opening starBG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46704] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46709] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46710] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46711] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46712] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46713] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46714] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46715] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46717] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46718] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46719] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46720] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46721] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.46796] added dtor for bitmap 06B7F108, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.48249] opening starMG.jpg rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48266] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48268] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48269] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48270] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48271] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48273] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48274] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48275] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.48276] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.48277] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.48278] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.48280] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.48281] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.48422] added dtor for bitmap 06B50C50, func 50112202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.49872] opening starFG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49890] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49892] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49893] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49894] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49895] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49896] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49899] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49902] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49903] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49904] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49905] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49907] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49908] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.49981] added dtor for bitmap 06B980F0, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.51770] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.51774] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52036] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52039] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52102] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52105] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52146] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52150] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52198] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52201] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52251] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52254] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52289] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52291] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53002] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53006] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53127] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53130] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53176] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53178] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53210] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53212] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66483] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66488] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66489] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66490] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66492] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66493] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66495] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66496] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.66498] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.66499] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.66501] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.66503] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.66505] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.66520] added dtor for bitmap 06BB4DD0, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67095] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67099] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.67227] removed dtor for bitmap 06BB4DD0
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.67232] d3d_destroy_bitmap: Release video texture failed.
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67260] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67265] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67266] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67268] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67270] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67271] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67273] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67274] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67276] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.67277] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.67278] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.67280] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.67283] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.67295] added dtor for bitmap 06BB9A90, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67556] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67561] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.67746] removed dtor for bitmap 06BB9A90
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.67749] d3d_destroy_bitmap: Release video texture failed.
-dtor D dtor.c:187 _al_register_destructor [ 0.67859] added dtor for timer 06AFD2F0, func 50111730
-dtor D dtor.c:187 _al_register_destructor [ 0.67864] added dtor for queue 0939E120, func 50112351
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.67937] opening Legacy.ttf rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.67971] Font Legacy.ttf loaded with pixel size 0 x 38.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.67973] ascent=29.0, descent=-9.0, height=38.0
-dtor D dtor.c:187 _al_register_destructor [ 0.67975] added dtor for ttf_font 06B80600, func 54231055
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.67977] opening STARWARS.TTF rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.67993] Font STARWARS.TTF loaded with pixel size 0 x 55.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.67995] ascent=37.0, descent=-11.0, height=46.0
-dtor D dtor.c:187 _al_register_destructor [ 0.67998] added dtor for ttf_font 06B806C0, func 54231055
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.68002] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.68003] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.68005] 0.500000
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71204] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71206] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71208] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71209] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71210] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71211] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71212] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71213] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71214] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.71215] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.71217] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.71218] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.71219] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.71264] Glyph 33: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71265] Locking glyph region: 0939BFD8 0 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71309] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71316] Glyph 45: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71317] Locking glyph region: 0939BFD8 20 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71320] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71324] Glyph 51: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71325] Locking glyph region: 0939BFD8 40 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71328] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71336] Glyph 52: 17x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71343] Locking glyph region: 0939BFD8 60 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71346] Unlocking page: 0939BFD8
-font D ttf.c:437 cache_glyph [ 0.71348] Glyph 108 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.71352] Glyph 48: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71353] Locking glyph region: 0939BFD8 80 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71357] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71360] Glyph 50: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71362] Locking glyph region: 0939BFD8 100 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71364] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71367] Glyph 37: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71369] Locking glyph region: 0939BFD8 120 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71371] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71375] Glyph 46: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71376] Locking glyph region: 0939BFD8 140 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71378] Unlocking page: 0939BFD8
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71388] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71390] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71391] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71394] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71395] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71396] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71399] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71400] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71401] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.71402] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.71403] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.71405] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.71406] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.71565] Glyph 37: 39x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71568] Locking glyph region: 093CF598 0 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.71752] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71759] Glyph 34: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71761] Locking glyph region: 093CF598 40 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.71767] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71774] Glyph 51: 45x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71775] Locking glyph region: 093CF598 88 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.71781] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71789] Glyph 53: 40x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71790] Locking glyph region: 093CF598 136 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.71794] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71798] Glyph 41: 47x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71799] Locking glyph region: 093CF598 176 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.71803] Unlocking page: 093CF598
-font D ttf.c:437 cache_glyph [ 0.71805] Glyph 1 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.71808] Glyph 42: 14x39 (16x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71810] Locking glyph region: 093CF598 224 0 16 40
-font D ttf.c:163 unlock_current_page [ 0.71812] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71816] Glyph 47: 48x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71817] Locking glyph region: 093CF598 240 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.71822] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71825] Glyph 55: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71827] Locking glyph region: 093CF598 288 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.71831] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71836] Glyph 38: 41x38 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71839] Locking glyph region: 093CF598 336 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.71843] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71847] Glyph 52: 44x39 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.71849] Locking glyph region: 093CF598 380 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.71853] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 0.71859] Glyph 35: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71861] Locking glyph region: 0939BFD8 160 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71863] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 0.71866] Glyph 47: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.71868] Locking glyph region: 0939BFD8 180 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.71878] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72065] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72069] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72115] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72122] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72153] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72155] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72177] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72188] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72558] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72563] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73012] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73016] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73067] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73070] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73099] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73101] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73131] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73134] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73163] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73166] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73188] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73191] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73234] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73238] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73300] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73304] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46150] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46151] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46152] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46154] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46155] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46156] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.46168] added dtor for bitmap 025DB980, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.46229] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.46233] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46358] opening B2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46374] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46376] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46378] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46379] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46380] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46381] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46382] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46384] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46385] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46387] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46389] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46391] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46393] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.46406] added dtor for bitmap 025DBAE8, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.46449] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.46453] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46563] opening B1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46576] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46578] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46579] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46581] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46582] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46583] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46584] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46585] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46586] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46587] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46589] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46590] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46591] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.46603] added dtor for bitmap 025DBC50, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.46643] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.46645] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46743] opening B0.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46755] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46757] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46758] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46759] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46760] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46761] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46762] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46763] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46764] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46769] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46770] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46771] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46774] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.46787] added dtor for bitmap 025EE1F8, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.46837] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.46841] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46931] opening 1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46944] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46945] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46947] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46948] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46950] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46951] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46952] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46953] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46954] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46955] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46956] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46958] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46959] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.46971] added dtor for bitmap 025EDFD0, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46986] opening 2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46997] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47001] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47002] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47004] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47006] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47008] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47009] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47011] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47014] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47016] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47019] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47021] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47023] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47034] added dtor for bitmap 02601888, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47052] opening 3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47062] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47063] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47065] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47066] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47067] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47068] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47069] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47070] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47071] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47072] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47073] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47075] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47076] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47088] added dtor for bitmap 0267EC78, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47107] opening 4.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47120] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47122] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47123] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47124] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47125] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47126] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47127] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47129] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47130] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47131] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47132] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47133] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47134] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47144] added dtor for bitmap 025FF010, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47157] opening 5.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47168] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47169] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47170] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47171] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47172] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47173] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47177] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47178] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47181] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47182] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47186] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47189] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47192] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47201] added dtor for bitmap 026019F0, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47212] opening 6.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47220] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47221] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47222] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47223] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47224] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47225] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47227] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47228] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47231] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47232] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47234] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47235] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47236] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47247] added dtor for bitmap 025D9938, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47259] opening blank.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47268] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47270] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47271] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47272] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47273] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47274] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47275] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47276] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47277] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47279] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47280] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47281] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47282] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47309] added dtor for bitmap 0267EA98, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.47482] opening starBG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47498] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47500] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47501] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47502] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47503] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47505] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47506] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47507] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.47508] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.47509] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.47510] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.47512] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.47513] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47631] added dtor for bitmap 009FAAB8, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.49001] opening starMG.jpg rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49021] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49023] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49024] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49025] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49026] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49027] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49029] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49030] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49031] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49032] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49033] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49035] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49036] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.49243] added dtor for bitmap 009FA7E8, func 77A72202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.50778] opening starFG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50800] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50801] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50802] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50803] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50805] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50806] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50807] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50808] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50809] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.50810] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.50811] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.50813] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.50814] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.50880] added dtor for bitmap 009FA950, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52817] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52820] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53024] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53029] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53101] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53105] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53150] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53153] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53199] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53203] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53248] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53253] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53290] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53292] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.54115] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.54120] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.54287] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.54291] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.54350] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.54354] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.54387] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.54390] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67012] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67015] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67016] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67017] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67018] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67019] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67021] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67024] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67026] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.67028] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.67029] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.67030] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.67033] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.67045] added dtor for bitmap 009FAC20, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67601] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67606] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.67719] removed dtor for bitmap 009FAC20
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.67722] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67843] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67848] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67850] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67851] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67852] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67853] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67856] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67858] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.67860] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.67861] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.67862] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.67871] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.67872] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.67882] added dtor for bitmap 009FAC20, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.68083] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.68085] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.68257] removed dtor for bitmap 009FAC20
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.68259] d3d_destroy_bitmap: Release video texture failed.
+dtor D dtor.c:187 _al_register_destructor [ 0.68302] added dtor for timer 025B30E0, func 77A71730
+dtor D dtor.c:187 _al_register_destructor [ 0.68305] added dtor for queue 009E9FD8, func 77A72351
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.68312] opening Legacy.ttf rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.68395] Font Legacy.ttf loaded with pixel size 0 x 38.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.68397] ascent=29.0, descent=-9.0, height=38.0
+dtor D dtor.c:187 _al_register_destructor [ 0.68399] added dtor for ttf_font 095CEC28, func 77CA1055
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.68401] opening STARWARS.TTF rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.68418] Font STARWARS.TTF loaded with pixel size 0 x 55.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.68419] ascent=37.0, descent=-11.0, height=46.0
+dtor D dtor.c:187 _al_register_destructor [ 0.68421] added dtor for ttf_font 095CE8A8, func 77CA1055
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.68423] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.68424] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.68426] 0.500000
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71628] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71630] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71632] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71633] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71634] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71635] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71636] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71637] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71639] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.71640] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.71641] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.71642] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.71644] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.71694] Glyph 33: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71696] Locking glyph region: 009FAEF0 0 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71777] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71784] Glyph 45: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71791] Locking glyph region: 009FAEF0 20 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71795] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71799] Glyph 51: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71800] Locking glyph region: 009FAEF0 40 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71803] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71808] Glyph 52: 17x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71810] Locking glyph region: 009FAEF0 60 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71812] Unlocking page: 009FAEF0
+font D ttf.c:437 cache_glyph [ 0.71814] Glyph 108 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.71817] Glyph 48: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71819] Locking glyph region: 009FAEF0 80 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71821] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71825] Glyph 50: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71826] Locking glyph region: 009FAEF0 100 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71829] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71832] Glyph 37: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71833] Locking glyph region: 009FAEF0 120 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71836] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.71839] Glyph 46: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.71840] Locking glyph region: 009FAEF0 140 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.71843] Unlocking page: 009FAEF0
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71852] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71854] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71855] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71856] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71857] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71858] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71859] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71862] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.71863] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.71865] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.71867] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.71868] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.71871] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.72037] Glyph 37: 39x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72039] Locking glyph region: 009FA3B0 0 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.72335] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72342] Glyph 34: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72350] Locking glyph region: 009FA3B0 40 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.72356] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72362] Glyph 51: 45x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72363] Locking glyph region: 009FA3B0 88 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.72368] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72371] Glyph 53: 40x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72372] Locking glyph region: 009FA3B0 136 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.72377] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72380] Glyph 41: 47x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72382] Locking glyph region: 009FA3B0 176 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.72386] Unlocking page: 009FA3B0
+font D ttf.c:437 cache_glyph [ 0.72388] Glyph 1 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.72391] Glyph 42: 14x39 (16x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72392] Locking glyph region: 009FA3B0 224 0 16 40
+font D ttf.c:163 unlock_current_page [ 0.72397] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72401] Glyph 47: 48x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72402] Locking glyph region: 009FA3B0 240 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.72406] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72410] Glyph 55: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72413] Locking glyph region: 009FA3B0 288 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.72419] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72424] Glyph 38: 41x38 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72425] Locking glyph region: 009FA3B0 336 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.72429] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72433] Glyph 52: 44x39 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.72437] Locking glyph region: 009FA3B0 380 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.72445] Unlocking page: 009FA3B0
+font D ttf.c:235 alloc_glyph_region [ 0.72453] Glyph 35: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.72454] Locking glyph region: 009FAEF0 160 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.72457] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 0.72460] Glyph 47: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.72461] Locking glyph region: 009FAEF0 180 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.72477] Unlocking page: 009FAEF0
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72603] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72607] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72677] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72683] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72719] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72721] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.72755] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.72758] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73069] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73074] _al_d3d_sync_bitmap (video) ref count == 1
d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73558] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73562] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73957] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73961] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74152] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74156] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74352] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74355] _al_d3d_sync_bitmap (video) ref count == 1
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 3.46289] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 3.46295] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 3.46298] 0.500000
-font D ttf.c:235 alloc_glyph_region [ 3.46346] Glyph 66: 5x15 (8x16)
-font D ttf.c:279 alloc_glyph_region [ 3.46349] Locking glyph region: 0939BFD8 200 0 8 16
-font D ttf.c:163 unlock_current_page [ 3.46356] Unlocking page: 0939BFD8
-font D ttf.c:235 alloc_glyph_region [ 3.46364] Glyph 94: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 3.46367] Locking glyph region: 0939BFD8 208 0 20 24
-font D ttf.c:163 unlock_current_page [ 3.46394] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 3.46429] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 3.46432] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 3.99703] Glyph 93: 19x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 3.99711] Locking glyph region: 0939BFD8 228 0 20 24
-font D ttf.c:163 unlock_current_page [ 3.99723] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 3.99825] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 3.99833] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 9.48003] Glyph 95: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 9.48008] Locking glyph region: 0939BFD8 248 0 20 24
-font D ttf.c:163 unlock_current_page [ 9.48013] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.48068] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.48072] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 9.96373] Glyph 96: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 9.96381] Locking glyph region: 0939BFD8 268 0 20 24
-font D ttf.c:163 unlock_current_page [ 9.96392] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.96502] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.96512] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 10.56304] Glyph 98: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 10.56307] Locking glyph region: 0939BFD8 288 0 20 24
-font D ttf.c:163 unlock_current_page [ 10.56310] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 10.56407] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 10.56411] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 11.02991] Glyph 99: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 11.02995] Locking glyph region: 0939BFD8 308 0 20 24
-font D ttf.c:163 unlock_current_page [ 11.03001] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 11.03053] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 11.03057] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 11.69661] Glyph 101: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 11.69664] Locking glyph region: 0939BFD8 328 0 20 24
-font D ttf.c:163 unlock_current_page [ 11.69669] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 11.69716] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 11.69719] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 12.14658] Glyph 102: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 12.14662] Locking glyph region: 0939BFD8 348 0 20 24
-font D ttf.c:163 unlock_current_page [ 12.14666] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.14714] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.14717] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 16.44658] Glyph 97: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 16.44662] Locking glyph region: 0939BFD8 368 0 20 24
-font D ttf.c:163 unlock_current_page [ 16.44667] Unlocking page: 0939BFD8
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 16.44714] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 16.44718] _al_d3d_sync_bitmap (video) ref count == 1
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 29.51289] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 29.51299] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 29.51305] 0.500000
-font D ttf.c:235 alloc_glyph_region [ 40.49640] Glyph 39: 36x38 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.49649] Locking glyph region: 093CF598 424 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.49665] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49681] Glyph 45: 34x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.49687] Locking glyph region: 093CF598 460 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.49825] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49845] Glyph 36: 35x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.49851] Locking glyph region: 093CF598 496 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.49866] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49887] Glyph 48: 44x39 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 40.49893] Locking glyph region: 093CF598 532 0 44 40
-font D ttf.c:163 unlock_current_page [ 40.49910] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49926] Glyph 27: 14x27 (16x28)
-font D ttf.c:279 alloc_glyph_region [ 40.49932] Locking glyph region: 093CF598 576 0 16 28
-font D ttf.c:163 unlock_current_page [ 40.49943] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49956] Glyph 24: 35x38 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.49962] Locking glyph region: 093CF598 592 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.49977] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.49995] Glyph 19: 36x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.50000] Locking glyph region: 093CF598 628 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.50016] Unlocking page: 093CF598
-font D ttf.c:235 alloc_glyph_region [ 40.50036] Glyph 17: 35x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 40.50042] Locking glyph region: 093CF598 664 0 36 40
-font D ttf.c:163 unlock_current_page [ 40.50058] Unlocking page: 093CF598
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 40.50132] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 40.50142] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50440] removed dtor for sample 06AF1748
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50445] removed dtor for bitmap 06B50898
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50579] removed dtor for bitmap 06B3A540
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50649] removed dtor for sample 06AF1790
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50655] removed dtor for sample 06AF1AF0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50658] removed dtor for sample 06AF19D0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.50906] removed dtor for queue 0939E120
-dtor D dtor.c:220 _al_unregister_destructor [ 42.51281] removed dtor for timer 06AFD2F0
-d3d I d3d_disp.cpp:901 d3d_destroy_display [ 42.51287] destroying display 0049B510 (current 00000000)
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.51556] converting display bitmap 093CF598 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.51687] added dtor for bitmap 0045DE18, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.51698] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.51700] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 42.52349] removed dtor for bitmap 0045DE18
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.52612] converting display bitmap 0939BFD8 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.52728] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.52752] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.52761] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 42.52975] removed dtor for bitmap 0045D710
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.53060] converting display bitmap 06B980F0 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.53255] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.53277] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.53285] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 42.53646] removed dtor for bitmap 0045D710
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.53787] converting display bitmap 06B50C50 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.54186] added dtor for bitmap 0045D878, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.54210] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.54218] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.54960] removed dtor for bitmap 0045D878
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.54966] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.55122] converting display bitmap 06B7F108 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.55225] added dtor for bitmap 0045D878, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.55238] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.55241] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 42.55544] removed dtor for bitmap 0045D878
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.55625] converting display bitmap 06B60940 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.55644] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.55669] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.55673] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.55778] removed dtor for bitmap 0045D710
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.55784] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.55802] converting display bitmap 06B2AF00 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.55807] added dtor for bitmap 0045D9E0, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.55853] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.55858] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.55929] removed dtor for bitmap 0045D9E0
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.55935] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.55946] converting display bitmap 06B2AD98 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.55952] added dtor for bitmap 0045D9E0, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.55998] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56003] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56082] removed dtor for bitmap 0045D9E0
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56087] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56098] converting display bitmap 06B5ACA8 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56102] added dtor for bitmap 0045DE18, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56145] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56149] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56226] removed dtor for bitmap 0045DE18
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56231] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56240] converting display bitmap 06B34E90 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56245] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56287] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56291] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56367] removed dtor for bitmap 0045D710
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56372] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56380] converting display bitmap 06B50FF8 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56384] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56398] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56402] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56542] removed dtor for bitmap 0045D710
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56547] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56555] converting display bitmap 06B50E90 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56559] added dtor for bitmap 0045D710, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56573] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56577] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56722] removed dtor for bitmap 0045D710
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56727] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56736] converting display bitmap 06AEBEB0 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56741] added dtor for bitmap 0045D170, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56790] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56795] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.56875] removed dtor for bitmap 0045D170
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.56880] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.56888] converting display bitmap 06B81808 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.56893] added dtor for bitmap 0045DE18, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.56906] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.56909] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.57059] removed dtor for bitmap 0045DE18
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.57064] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 42.57073] converting display bitmap 06B1F0F8 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 42.57077] added dtor for bitmap 0045D008, func 50112202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.57130] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.57135] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 42.57207] removed dtor for bitmap 0045D008
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 42.57212] d3d_destroy_bitmap: Release video texture failed.
-d3d D d3d_disp.cpp:885 d3d_destroy_display_internals [ 42.57221] waiting for display 0049B510's thread to end
-d3d I d3d_disp.cpp:1549 d3d_display_thread_proc [ 42.59288] d3d display thread exits
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59400] removed dtor for bitmap 06AEBEB0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59407] removed dtor for bitmap 06B81808
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59412] removed dtor for bitmap 06B1F0F8
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59415] removed dtor for ttf_font 06B80600
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59447] removed dtor for ttf_font 06B806C0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59546] removed dtor for bitmap 06B50E90
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59559] removed dtor for bitmap 06B50FF8
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59564] removed dtor for bitmap 06B34E90
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59568] removed dtor for bitmap 06B5ACA8
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59573] removed dtor for bitmap 06B2AD98
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59578] removed dtor for bitmap 06B2AF00
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59582] removed dtor for bitmap 06B60940
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59595] removed dtor for bitmap 06B7F108
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59642] removed dtor for bitmap 06B50C50
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59730] removed dtor for bitmap 06B980F0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59805] removed dtor for sample_instance 06B0C010
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59810] removed dtor for sample_instance 06B16DA8
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59813] removed dtor for sample_instance 06B1EFF0
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59817] removed dtor for sample_instance 06B1F338
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59820] removed dtor for mixer 06B0B3B0
-audio-dsound D dsound.cpp:509 _dsound_stop_voice [ 42.59823] Stopping voice
-audio-dsound D dsound.cpp:526 _dsound_stop_voice [ 42.59826] Joining thread
-audio-dsound D dsound.cpp:532 _dsound_stop_voice [ 42.59963] Joined thread
-audio-dsound D dsound.cpp:534 _dsound_stop_voice [ 42.59967] Destroying thread
-audio-dsound D dsound.cpp:536 _dsound_stop_voice [ 42.59970] Thread destroyed
-audio-dsound D dsound.cpp:543 _dsound_stop_voice [ 42.59973] Releasing buffer
-audio-dsound I dsound.cpp:547 _dsound_stop_voice [ 42.59976] Voice stopped
-dtor D dtor.c:220 _al_unregister_destructor [ 42.59980] removed dtor for voice 004929B8
-audio-dsound D dsound.cpp:359 _dsound_deallocate_voice [ 42.59984] Deallocating voice
-audio-dsound D dsound.cpp:364 _dsound_deallocate_voice [ 42.59986] Deallocated voice
-audio-dsound D dsound.cpp:275 _dsound_close [ 42.59990] Releasing device
-audio-dsound D dsound.cpp:277 _dsound_close [ 42.60738] Released device
-audio-dsound I dsound.cpp:278 _dsound_close [ 42.60743] DirectSound closed
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73561] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73599] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73602] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73631] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73634] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73662] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73664] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73703] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73705] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73745] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73749] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73785] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73788] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73821] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73825] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73860] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73863] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73944] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73947] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.73982] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.73984] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74011] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74013] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74054] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74057] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74290] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74293] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74654] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74657] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.74854] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.74857] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.75051] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.75054] _al_d3d_sync_bitmap (video) ref count == 1
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 1.18382] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.18388] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.18391] 0.500000
+font D ttf.c:235 alloc_glyph_region [ 1.18449] Glyph 66: 5x15 (8x16)
+font D ttf.c:279 alloc_glyph_region [ 1.18454] Locking glyph region: 009FAEF0 200 0 8 16
+font D ttf.c:163 unlock_current_page [ 1.18459] Unlocking page: 009FAEF0
+font D ttf.c:235 alloc_glyph_region [ 1.18467] Glyph 94: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.18471] Locking glyph region: 009FAEF0 208 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.18493] Unlocking page: 009FAEF0
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.18538] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.18542] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06366] removed dtor for sample 025B6AA0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06371] removed dtor for bitmap 025EBBD0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06448] removed dtor for bitmap 025FFC70
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06524] removed dtor for sample 025B66B0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06528] removed dtor for sample 025B67D0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06534] removed dtor for sample 025B6860
+dtor D dtor.c:220 _al_unregister_destructor [ 20.06784] removed dtor for queue 009E9FD8
+dtor D dtor.c:220 _al_unregister_destructor [ 20.08466] removed dtor for timer 025B30E0
+d3d I d3d_disp.cpp:901 d3d_destroy_display [ 20.08477] destroying display 00A2F2C0 (current 00000000)
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.08965] converting display bitmap 009FA3B0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.09324] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.09349] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.09357] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 20.10033] removed dtor for bitmap 009FA680
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.10297] converting display bitmap 009FAEF0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.10401] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.10422] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.10428] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 20.10646] removed dtor for bitmap 009FA248
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.10721] converting display bitmap 009FA950 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.10891] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.10912] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.10918] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 20.11258] removed dtor for bitmap 009FA248
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.11383] converting display bitmap 009FA7E8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.11733] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.11755] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.11761] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.12548] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.12557] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.12815] converting display bitmap 009FAAB8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.12989] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.13010] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.13016] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 20.13367] removed dtor for bitmap 009FA248
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.13444] converting display bitmap 0267EA98 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.13464] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.13481] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.13485] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.13595] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.13600] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.13618] converting display bitmap 025D9938 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.13622] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.13698] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.13702] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.13783] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.13788] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.13797] converting display bitmap 026019F0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.13801] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.13815] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.13818] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.13977] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.13981] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.13989] converting display bitmap 025FF010 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.13994] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14007] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14010] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14141] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14146] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14155] converting display bitmap 0267EC78 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14160] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14177] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14181] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14284] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14288] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14297] converting display bitmap 02601888 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14302] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14313] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14316] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14451] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14455] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14464] converting display bitmap 025EDFD0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14469] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14540] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14545] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14625] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14630] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14638] converting display bitmap 025EE1F8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14644] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14702] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14706] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14783] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14787] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14796] converting display bitmap 025DBC50 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14801] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.14812] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.14816] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.14972] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.14976] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.14985] converting display bitmap 025DBAE8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.14989] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15001] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15004] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15140] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15144] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.15153] converting display bitmap 025DB980 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.15159] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15197] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15202] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15288] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15292] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.15305] converting display bitmap 025DEF78 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.15312] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15368] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15373] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15448] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15453] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.15462] converting display bitmap 02600F18 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.15467] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15481] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15485] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15586] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15590] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.15599] converting display bitmap 025FA7D0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.15604] added dtor for bitmap 009FA248, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15615] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15618] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15746] removed dtor for bitmap 009FA248
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15751] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 20.15760] converting display bitmap 025F7910 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 20.15764] added dtor for bitmap 009FA680, func 77A72202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.15823] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.15828] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 20.15894] removed dtor for bitmap 009FA680
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 20.15899] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:885 d3d_destroy_display_internals [ 20.15908] waiting for display 00A2F2C0's thread to end
+d3d I d3d_disp.cpp:1549 d3d_display_thread_proc [ 20.17738] d3d display thread exits
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17797] removed dtor for bitmap 02600F18
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17805] removed dtor for bitmap 025FA7D0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17810] removed dtor for bitmap 025F7910
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17815] removed dtor for ttf_font 095CEC28
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17859] removed dtor for ttf_font 095CE8A8
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17983] removed dtor for bitmap 025EDFD0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17993] removed dtor for bitmap 02601888
+dtor D dtor.c:220 _al_unregister_destructor [ 20.17997] removed dtor for bitmap 0267EC78
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18003] removed dtor for bitmap 025FF010
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18018] removed dtor for bitmap 026019F0
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18025] removed dtor for bitmap 025D9938
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18032] removed dtor for bitmap 0267EA98
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18052] removed dtor for bitmap 009FAAB8
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18113] removed dtor for bitmap 009FA7E8
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18222] removed dtor for bitmap 009FA950
+dtor D dtor.c:115 _al_run_destructors [ 20.18268] calling dtor for bitmap 025EE1F8, func 77A72202
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18272] removed dtor for bitmap 025EE1F8
+dtor D dtor.c:115 _al_run_destructors [ 20.18276] calling dtor for bitmap 025DBC50, func 77A72202
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18279] removed dtor for bitmap 025DBC50
+dtor D dtor.c:115 _al_run_destructors [ 20.18282] calling dtor for bitmap 025DBAE8, func 77A72202
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18285] removed dtor for bitmap 025DBAE8
+dtor D dtor.c:115 _al_run_destructors [ 20.18296] calling dtor for bitmap 025DB980, func 77A72202
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18299] removed dtor for bitmap 025DB980
+dtor D dtor.c:115 _al_run_destructors [ 20.18303] calling dtor for bitmap 025DEF78, func 77A72202
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18306] removed dtor for bitmap 025DEF78
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18310] removed dtor for sample_instance 025C4AB8
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18314] removed dtor for sample_instance 025D4008
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18317] removed dtor for sample_instance 025D4220
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18320] removed dtor for sample_instance 025D4568
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18323] removed dtor for mixer 025BF448
+audio-dsound D dsound.cpp:509 _dsound_stop_voice [ 20.18326] Stopping voice
+audio-dsound D dsound.cpp:526 _dsound_stop_voice [ 20.18329] Joining thread
+audio-dsound D dsound.cpp:532 _dsound_stop_voice [ 20.18796] Joined thread
+audio-dsound D dsound.cpp:534 _dsound_stop_voice [ 20.18801] Destroying thread
+audio-dsound D dsound.cpp:536 _dsound_stop_voice [ 20.18804] Thread destroyed
+audio-dsound D dsound.cpp:543 _dsound_stop_voice [ 20.18806] Releasing buffer
+audio-dsound I dsound.cpp:547 _dsound_stop_voice [ 20.18809] Voice stopped
+dtor D dtor.c:220 _al_unregister_destructor [ 20.18813] removed dtor for voice 025ABE28
+audio-dsound D dsound.cpp:359 _dsound_deallocate_voice [ 20.18816] Deallocating voice
+audio-dsound D dsound.cpp:364 _dsound_deallocate_voice [ 20.18819] Deallocated voice
+audio-dsound D dsound.cpp:275 _dsound_close [ 20.18822] Releasing device
+audio-dsound D dsound.cpp:277 _dsound_close [ 20.19600] Released device
+audio-dsound I dsound.cpp:278 _dsound_close [ 20.19606] DirectSound closed

File Metadata

Mime Type
text/x-diff
Expires
Tue, Jun 16, 12:13 AM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
70698
Default Alt Text
(226 KB)

Event Timeline