Fixed framerate GUI bug (Bug #1101451), and minor comment update in dosintrf.asm
This commit is contained in:
@@ -381,15 +381,15 @@ void DOScreatenewcfg()
|
||||
}
|
||||
|
||||
WRITE_LINE("; ZSNES Configuration file\r\n\r\n");
|
||||
WRITE_LINE("; Frame Skip = 0 .. 9\r\n\r\n");
|
||||
WRITE_LINE("; Frame Skip: 0 = Auto, 1-10 = Skip 0 .. 9\r\n\r\n");
|
||||
|
||||
sprintf(buffer, "FrameSkip = %d\r\n\r\n", frameskip);
|
||||
SAVE_LINE(buffer);
|
||||
|
||||
WRITE_LINE("; Auto Frame Skip = 0 or 1 (1 = ON)\r\n\r\n");
|
||||
// WRITE_LINE("; Auto Frame Skip = 0 or 1 (1 = ON)\r\n\r\n");
|
||||
|
||||
sprintf(buffer, "AutoFrameSkip = %d\r\n\r\n", (frameskip == 0) ? 1 : 0);
|
||||
SAVE_LINE(buffer);
|
||||
// sprintf(buffer, "AutoFrameSkip = %d\r\n\r\n", (frameskip == 0) ? 1 : 0);
|
||||
// SAVE_LINE(buffer);
|
||||
|
||||
WRITE_LINE("; Player 1/2 Input Device. Use the GUI to set these values\r\n");
|
||||
WRITE_LINE("; NOTE : Using this to select joysticks manually will NOT work!\r\n\r\n");
|
||||
@@ -742,7 +742,7 @@ void getcfg()
|
||||
{
|
||||
if (_forceauto != 1)
|
||||
{
|
||||
frameskip = *_stringb - 47;//shouldn't this be 48??
|
||||
frameskip = *_stringb - 48;//shouldn't this be 48??
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1033,6 +1033,7 @@ db ' ',0
|
||||
|
||||
; Video Mode Feature Availability (1 = Available, 0 = Not Available)
|
||||
; Left side starts with Video Mode 0
|
||||
; 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9
|
||||
NEWSYM GUI16VID, db 0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0 ; 16-bit mode
|
||||
NEWSYM GUINGVID, db 1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0 ; New Graphics Mode Available
|
||||
NEWSYM GUISLVID, db 0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0 ; Scanlines
|
||||
|
||||
Reference in New Issue
Block a user