Replace "ubyte" with "uint8_t"

This commit is contained in:
GravisZro
2024-05-23 23:07:26 -04:00
parent 9d3e361a35
commit 26b7776f43
394 changed files with 2888 additions and 2888 deletions

View File

@@ -117,13 +117,13 @@ ushort *bump_data(int handle) {
}
// returns width of bumpmap
ubyte bump_w(int handle) {
uint8_t bump_w(int handle) {
ASSERT(GameBumpmaps[handle].flags & BUMPF_USED);
return GameBumpmaps[handle].width;
}
// returns height of bumpmap
ubyte bump_h(int handle) {
uint8_t bump_h(int handle) {
ASSERT(GameBumpmaps[handle].flags & BUMPF_USED);
return GameBumpmaps[handle].height;
}