aboutsummaryrefslogtreecommitdiff
path: root/src/gfx
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-01-27 13:55:51 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-01-27 17:38:12 +0100
commit940882d743b7e6afea97352d6fdfaf8ec8e433d6 (patch)
treeb32a7f338c9a27d8347efdd2ada283657f8b9118 /src/gfx
parentb4f904ecdcf6b0857d28ab4a877ad0f3468153f7 (diff)
downloadjancity-940882d743b7e6afea97352d6fdfaf8ec8e433d6.tar.gz
Replace "unsigned int" with "unsigned"
Diffstat (limited to 'src/gfx')
-rw-r--r--src/gfx/ps1/src/heap.c2
-rw-r--r--src/gfx/ps1/src/sort.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gfx/ps1/src/heap.c b/src/gfx/ps1/src/heap.c
index 5ef8b80..56d6b0b 100644
--- a/src/gfx/ps1/src/heap.c
+++ b/src/gfx/ps1/src/heap.c
@@ -2,7 +2,7 @@
#include <gfx_private.h>
#include <stddef.h>
-static unsigned int sel;
+static unsigned sel;
static size_t heap_i;
void gfx_swapheap(void)
diff --git a/src/gfx/ps1/src/sort.c b/src/gfx/ps1/src/sort.c
index 3f2314a..c517b89 100644
--- a/src/gfx/ps1/src/sort.c
+++ b/src/gfx/ps1/src/sort.c
@@ -61,7 +61,7 @@ int gfx_draw(void)
add_to_list(&term);
- void gpu_ctrl(unsigned int command, unsigned int param);
+ void gpu_ctrl(unsigned command, unsigned param);
gfx_sync();
gfx_swapbuffers();