mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-10 08:15:34 +00:00
Removed unnecessary call to SDL_free().
This commit is contained in:
parent
2cde19c635
commit
22855927ce
|
@ -72,7 +72,6 @@ Emscripten_CreateDevice(int devindex)
|
||||||
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
|
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
|
||||||
if (!device) {
|
if (!device) {
|
||||||
SDL_OutOfMemory();
|
SDL_OutOfMemory();
|
||||||
SDL_free(device);
|
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue