Skip to content

Commit

Permalink
Cleaned up some compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 27, 2014
1 parent f5bbbe4 commit 16f3cbf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
10 changes: 4 additions & 6 deletions src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -458,10 +458,11 @@ SDL_GetCPUType(void)

if (!SDL_CPUType[0]) {
int i = 0;
int a, b, c, d;

if (CPU_haveCPUID()) {
int a, b, c, d;
cpuid(0x00000000, a, b, c, d);
(void) a;
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
Expand Down Expand Up @@ -563,15 +564,12 @@ int
SDL_GetCPUCacheLineSize(void)
{
const char *cpuType = SDL_GetCPUType();

int a, b, c, d;
(void) a; (void) b; (void) c; (void) d;
if (SDL_strcmp(cpuType, "GenuineIntel") == 0) {
int a, b, c, d;

cpuid(0x00000001, a, b, c, d);
return (((b >> 8) & 0xff) * 8);
} else if (SDL_strcmp(cpuType, "AuthenticAMD") == 0) {
int a, b, c, d;

cpuid(0x80000005, a, b, c, d);
return (c & 0xff);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/joystick/emscripten/SDL_sysjoystick.c
Expand Up @@ -281,7 +281,7 @@ SDL_JoystickID SDL_SYS_GetInstanceIdOfDeviceIndex(int index)
SDL_joylist_item *item = JoystickByIndex(index);
if (item == NULL) {
SDL_SetError("Joystick with index %d not found", index);
return NULL;
return 0;
}

return item->device_instance;
Expand Down
4 changes: 2 additions & 2 deletions src/test/SDL_test_common.c
Expand Up @@ -1204,10 +1204,10 @@ SDLTest_PrintEvent(SDL_Event * event)
event->tfinger.dx, event->tfinger.dy, event->tfinger.pressure);
break;
case SDL_DOLLARGESTURE:
SDL_Log("SDL_EVENT: Dollar gesture detect: %"SDL_PRIs64, event->dgesture.gestureId);
SDL_Log("SDL_EVENT: Dollar gesture detect: %"SDL_PRIs64, (long long) event->dgesture.gestureId);
break;
case SDL_DOLLARRECORD:
SDL_Log("SDL_EVENT: Dollar gesture record: %"SDL_PRIs64, event->dgesture.gestureId);
SDL_Log("SDL_EVENT: Dollar gesture record: %"SDL_PRIs64, (long long) event->dgesture.gestureId);
break;
case SDL_MULTIGESTURE:
SDL_Log("SDL_EVENT: Multi gesture fingers: %d", event->mgesture.numFingers);
Expand Down
2 changes: 1 addition & 1 deletion src/video/emscripten/SDL_emscriptenframebuffer.c
Expand Up @@ -58,7 +58,6 @@ int Emscripten_CreateWindowFramebuffer(_THIS, SDL_Window * window, Uint32 * form

int Emscripten_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rect * rects, int numrects)
{
static int frame_number;
SDL_Surface *surface;

SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Expand Down Expand Up @@ -115,6 +114,7 @@ int Emscripten_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rec
}, surface->w, surface->h, surface->pixels);

/*if (SDL_getenv("SDL_VIDEO_Emscripten_SAVE_FRAMES")) {
static int frame_number = 0;
char file[128];
SDL_snprintf(file, sizeof(file), "SDL_window%d-%8.8d.bmp",
SDL_GetWindowID(window), ++frame_number);
Expand Down
2 changes: 1 addition & 1 deletion src/video/emscripten/SDL_emscriptenvideo.c
Expand Up @@ -227,7 +227,7 @@ Emscripten_CreateWindow(_THIS, SDL_Window * window)
return -1;
}
}
wdata->egl_surface = SDL_EGL_CreateSurface(_this, NULL);
wdata->egl_surface = SDL_EGL_CreateSurface(_this, 0);

if (wdata->egl_surface == EGL_NO_SURFACE) {
return SDL_SetError("Could not create GLES window surface");
Expand Down

0 comments on commit 16f3cbf

Please sign in to comment.