nds_screen_rotation_angle is really an int.

This commit is contained in:
riccardom 2009-05-16 18:14:37 +00:00
parent 95c441ea0c
commit 6a3591bb84
1 changed files with 2 additions and 2 deletions

View File

@ -511,7 +511,7 @@ GtkUIManager *ui_manager;
guint nds_gap_size = 0;
float nds_screen_size_ratio = 1.0f;
int nds_screen_rotation_angle = 0.0f;
int nds_screen_rotation_angle = 0;
static BOOL regMainLoop = FALSE;
@ -1218,7 +1218,7 @@ static void SetRotation(GtkAction* action)
H = 256;
break;
default:
g_printerr("Congratulations, you've managed to set unsupported screen rotation angle (%s), resetting angle to 0\n",
g_printerr("Congratulations, you've managed to set unsupported screen rotation angle (%d), resetting angle to 0\n",
nds_screen_rotation_angle);
nds_screen_rotation_angle = 0;
W = 256;