Video: applied patch from #666 - lua drawings in nsf.
Sound: nsf can be set to Dendy.
This commit is contained in:
parent
fa6d74b373
commit
85ec4f169d
|
@ -1759,7 +1759,7 @@ int FCEUPPU_Loop(int skip) {
|
|||
kook ^= 1;
|
||||
}
|
||||
if (GameInfo->type == GIT_NSF)
|
||||
X6502_Run((256 + 85) * 240);
|
||||
X6502_Run((256 + 85) * (dendy ? 290 : 240));
|
||||
#ifdef FRAMESKIP
|
||||
else if (skip) {
|
||||
int y;
|
||||
|
|
|
@ -181,6 +181,10 @@ void FCEU_PutImage(void)
|
|||
{
|
||||
DrawNSF(XBuf);
|
||||
|
||||
#ifdef _S9XLUA_H
|
||||
FCEU_LuaGui(XBuf);
|
||||
#endif
|
||||
|
||||
//Save snapshot after NSF screen is drawn. Why would we want to do it before?
|
||||
if(dosnapsave==1)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue