Replace "ushort" with "uint16_t" and fix missing includes

This commit is contained in:
GravisZro
2024-05-23 23:16:40 -04:00
parent fe855cf85e
commit aebe1bbbb6
187 changed files with 958 additions and 957 deletions

View File

@@ -236,7 +236,7 @@ float rend_GetAspectRatio(void) {
}
// Given a source x,y and width,height, draws any sized bitmap into the renderer lfb
void rend_DrawLFBBitmap(int sx, int sy, int w, int h, int dx, int dy, ushort *data, int rowsize) {}
void rend_DrawLFBBitmap(int sx, int sy, int w, int h, int dx, int dy, uint16_t *data, int rowsize) {}
// draws a scaled 2d bitmap to our buffer
void rend_DrawScaledBitmap(int x1, int y1, int x2, int y2, int bm, float u0, float v0, float u1, float v1, int color,