Anchor Play/Record messages to right edge of screen
This commit is contained in:
parent
42e22b63be
commit
8bdd5d58aa
|
@ -375,18 +375,22 @@ namespace BizHawk.MultiClient
|
|||
if (Global.MainForm.UserMovie.GetMovieMode() == MOVIEMODE.PLAY
|
||||
|| Global.MainForm.UserMovie.GetMovieMode() == MOVIEMODE.PLAY)
|
||||
{
|
||||
MessageFont.DrawString(null, "Playback", 208 + 1,
|
||||
MessageFont.DrawString(null, "Play", backingControl.Size.Width-47,
|
||||
0 + 1, new Color4(Color.Black));
|
||||
MessageFont.DrawString(null, "Playback", 208,
|
||||
MessageFont.DrawString(null, "Play", backingControl.Size.Width - 48,
|
||||
0, new Color4(Color.Red));
|
||||
}
|
||||
else if (Global.MainForm.UserMovie.GetMovieMode() == MOVIEMODE.RECORD)
|
||||
{
|
||||
AlertFont.DrawString(null, "Recording", 208 + 1,
|
||||
AlertFont.DrawString(null, "Record", backingControl.Size.Width - 65,
|
||||
0 + 1, new Color4(Color.Black));
|
||||
AlertFont.DrawString(null, "Recording", 208,
|
||||
AlertFont.DrawString(null, "Record", backingControl.Size.Width - 64,
|
||||
0, new Color4(Color.Red));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
private string MakeFrameCounter()
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
06/19/2011 - MTPO = sync, smb = sync, fist of the north star = doesn't sync (and is very sync unstable in fceu versions)
|
||||
|
||||
NES - In general, it's very laggy, and doesn't seem to want to turbo. Audio is always messed up in some way.
|
||||
|
||||
Adventures of Lolo (1268M) fails. Odd audio.
|
||||
|
|
Loading…
Reference in New Issue