From 0b41a17f6b44809f1696f015758f82a9ac1889a0 Mon Sep 17 00:00:00 2001 From: pogokeen Date: Wed, 10 Oct 2018 14:37:06 +0000 Subject: [PATCH] polymost.h: fix order of parameters to match polymost.cpp git-svn-id: https://svn.eduke32.com/eduke32@7049 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/include/polymost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/include/polymost.h b/source/build/include/polymost.h index 332544afa..224a0981a 100644 --- a/source/build/include/polymost.h +++ b/source/build/include/polymost.h @@ -32,7 +32,7 @@ extern void Polymost_prepare_loadboard(void); //void phex(char v, char *s); void uploadtexture(int32_t doalloc, vec2_t siz, int32_t texfmt, coltype *pic, vec2_t tsiz, int32_t dameth); -void uploadtextureindexed(int32_t doalloc, vec2_t siz, vec2_t offset, intptr_t tile); +void uploadtextureindexed(int32_t doalloc, vec2_t offset, vec2_t siz, intptr_t tile); void uploadbasepalette(int32_t basepalnum); void uploadpalswap(int32_t palookupnum); void polymost_drawsprite(int32_t snum);