ref_soft: framebuffer width fix

This commit is contained in:
Crow-bar
2022-05-27 15:00:30 +03:00
parent 6073e35bfc
commit 8071355d68

View File

@@ -88,7 +88,7 @@ qboolean SW_CreateBuffer( int width, int height, uint *stride, uint *bpp, uint *
Host_Error( "Memory allocation failled! (vid_psp.disp_buffer)\n");
sceDisplaySetMode(0, PSP_FB_WIDTH, PSP_FB_HEIGHT);
sceDisplaySetFrameBuf(vid_psp.disp_buffer, PSP_FB_WIDTH, PSP_FB_FORMAT, 1);
sceDisplaySetFrameBuf(vid_psp.disp_buffer, PSP_FB_BWIDTH, PSP_FB_FORMAT, 1);
return true;
}