diff --git a/include/dawn/libs.h b/include/dawn/libs.h index c319dfed..86dce656 100644 --- a/include/dawn/libs.h +++ b/include/dawn/libs.h @@ -42,7 +42,12 @@ #if defined(_WIN32) || defined(_WIN64) // Windows Fixes # define strtok_r strtok_s - # define sleep(n) _sleep(n) + + #if defined(Sleep) + # define sleep(n) Sleep(n) + #else + # define sleep(n) _sleep(n) + #endif #else #include #endif \ No newline at end of file diff --git a/src/display/camera.c b/src/display/camera.c index 10cda8b0..16e5c2da 100644 --- a/src/display/camera.c +++ b/src/display/camera.c @@ -41,9 +41,9 @@ void cameraOrbit(camera_t *camera, float distance, float yaw, float pitch, float targetX, float targetY, float targetZ ) { - float cy = cos(pitch); - float x = distance * sin(yaw) * cy; - float y = distance * sin(pitch); - float z = distance * cos(yaw) * cy; + float cy = cosf(pitch); + float x = distance * sinf(yaw) * cy; + float y = distance * sinf(pitch); + float z = distance * cosf(yaw) * cy; cameraLookAt(camera, x, y, z, targetX, targetY, targetZ); } \ No newline at end of file diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index e2b551ee..f14575a2 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -74,12 +74,12 @@ void pokerGameUpdate(game_t *game) { menuUpdate(&menu, &game->engine); for(i = 0; i < menu.itemCount; i++) { menuitem_t *item = menu.items + i; - frame.x = item->x * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE); - frame.y = item->y * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE); + frame.x = (float)item->x * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE); + frame.y = (float)item->y * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE); if(menu.selected == i) frame.y -= FRAME_BORDER_SIZE; frameSetSize(&frame, - item->width * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE), - item->height * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE) + (float)item->width * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE), + (float)item->height * (FRAME_BORDER_SIZE + FRAME_BORDER_SIZE) ); frameRender(&frame, &pokerGame->assets.shader); } diff --git a/src/ui/menulist.c b/src/ui/menulist.c index b832cae0..07dff6d7 100644 --- a/src/ui/menulist.c +++ b/src/ui/menulist.c @@ -5,8 +5,4 @@ * https://opensource.org/licenses/MIT */ -#include "menulist.h" - -void menuListInit(menulist_t *list) { - -} \ No newline at end of file +#include "menulist.h" \ No newline at end of file diff --git a/src/vn/gui/vntextbox.c b/src/vn/gui/vntextbox.c index f628575f..d2fa2abd 100644 --- a/src/vn/gui/vntextbox.c +++ b/src/vn/gui/vntextbox.c @@ -54,7 +54,7 @@ void vnTextBoxRebuffer(vntextbox_t *box) { void vnTextBoxUpdate(vntextbox_t *box, engine_t *engine) { int32_t i; - if(box->state & VN_TEXTBOX_STATE_CLOSED > 0) return; + if(box->state & VN_TEXTBOX_STATE_CLOSED) return; // "Next text box" if(!vnTextBoxHasScrolled(box)) { diff --git a/src/vn/vncharacter.c b/src/vn/vncharacter.c index e798305d..f579f9af 100644 --- a/src/vn/vncharacter.c +++ b/src/vn/vncharacter.c @@ -61,8 +61,8 @@ void _vnCharacterBuffer(vncharacter_t *character, float tpy = 1.0f / (float)character->texture->height; // Center inside the character - x -= (float)character->baseWidth / 2; - y += (float)character->baseHeight / 2; + x -= character->baseWidth / 2; + y += character->baseHeight / 2; quadBuffer(&character->primitive, 0.001f * (float)i, (float)x * ps, 1 - (float)y * ps,