| 1034 | static uint8 sprlinebuf[256 + 8]; |
| 1035 | |
| 1036 | void FCEUPPU_LineUpdate(void) { |
| 1037 | if (newppu) |
| 1038 | return; |
| 1039 | |
| 1040 | #ifdef FCEUDEF_DEBUGGER |
| 1041 | if (!fceuindbg) |
| 1042 | #endif |
| 1043 | if (Pline) { |
| 1044 | int l = GETLASTPIXEL; |
| 1045 | RefreshLine(l); |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | static bool rendersprites = true, renderbg = true; |
| 1050 |
no test coverage detected