Small cleanups.

This commit is contained in:
Themaister 2011-01-23 13:50:22 +01:00
parent c4f78912a1
commit 1f39adec79
3 changed files with 6 additions and 6 deletions

View File

@ -104,8 +104,8 @@ static const bool force_aspect = true;
static const unsigned font_size = 48;
// Offset for where messages will be placed on-screen. Values are in range [0.0, 1.0].
static const float message_pos_offset_x = 0.3;
static const float message_pos_offset_y = 0.3;
static const float message_pos_offset_x = 0.05;
static const float message_pos_offset_y = 0.05;
#define SNES_ASPECT_RATIO (4.0/3)

View File

@ -678,7 +678,7 @@ int main(int argc, char *argv[])
if (should_savestate && !old_should_savestate)
{
msg_queue_clear(g_extern.msg_queue);
msg_queue_push(g_extern.msg_queue, "Saving state! ^_^", 1, 180);
msg_queue_push(g_extern.msg_queue, "Saving state!", 1, 180);
save_state(g_extern.savestate_name);
}
old_should_savestate = should_savestate;
@ -688,7 +688,7 @@ int main(int argc, char *argv[])
if (!should_savestate && should_loadstate && !old_should_loadstate)
{
msg_queue_clear(g_extern.msg_queue);
msg_queue_push(g_extern.msg_queue, "Loading state! ^_^", 1, 180);
msg_queue_push(g_extern.msg_queue, "Loading state!", 1, 180);
load_state(g_extern.savestate_name);
}
old_should_loadstate = should_loadstate;

View File

@ -44,8 +44,8 @@
# video_font_size = 48
# Offset for where messages will be placed on screen. Values are in range 0.0 to 1.0 for both x and y values.
# video_message_pos_x = 0.3
# video_message_pox_y = 0.3
# video_message_pos_x = 0.05
# video_message_pox_y = 0.05
#### Audio