Removing some compiler warnings.
This commit is contained in:
@ -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 <unistd.h>
|
||||
#endif
|
@ -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);
|
||||
}
|
@ -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);
|
||||
}
|
||||
|
@ -5,8 +5,4 @@
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "menulist.h"
|
||||
|
||||
void menuListInit(menulist_t *list) {
|
||||
|
||||
}
|
||||
#include "menulist.h"
|
@ -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)) {
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user