mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-03 06:02:52 +02:00
Explicit void casts is kind of unnecessary for a function that generally never fails.
This commit is contained in:
@@ -1054,7 +1054,7 @@ int main(int argc, char **argv)
|
|||||||
SDL_Init(SDL_INIT_EVERYTHING & ~SDL_INIT_AUDIO);
|
SDL_Init(SDL_INIT_EVERYTHING & ~SDL_INIT_AUDIO);
|
||||||
// This is, essentially, best-effort.
|
// This is, essentially, best-effort.
|
||||||
// This function will not be called if the process is terminated in any way, anyhow.
|
// This function will not be called if the process is terminated in any way, anyhow.
|
||||||
(void)atexit(SDL_Quit);
|
atexit(SDL_Quit);
|
||||||
|
|
||||||
if ((console_supported = CON_start(completer))) {
|
if ((console_supported = CON_start(completer))) {
|
||||||
CON_set_repeat_empty(true);
|
CON_set_repeat_empty(true);
|
||||||
|
Reference in New Issue
Block a user