mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-24 18:31:51 +00:00
Force a splash screen before allowing emulation to start
This commit is contained in:
parent
c075460b76
commit
3536b6b65a
@ -644,14 +644,13 @@ int main(int _argc, char **_argv) {
|
|||||||
argc = _argc;
|
argc = _argc;
|
||||||
argv = _argv;
|
argv = _argv;
|
||||||
|
|
||||||
load_settings(); /* user prefs */
|
load_settings(); // user prefs
|
||||||
c_initialize_firsttime(); /* init svga graphics and vm */
|
c_keys_set_key(kF8); // show credits before emulation start
|
||||||
|
c_initialize_firsttime(); // one-time initializations
|
||||||
|
|
||||||
// spin off cpu thread
|
// spin off cpu thread
|
||||||
pthread_create(&cpu_thread_id, NULL, (void *)&cpu_thread, (void *)NULL);
|
pthread_create(&cpu_thread_id, NULL, (void *)&cpu_thread, (void *)NULL);
|
||||||
|
|
||||||
c_keys_set_key(kF8); // show credits
|
|
||||||
|
|
||||||
video_main_loop();
|
video_main_loop();
|
||||||
}
|
}
|
||||||
#endif // TESTING
|
#endif // TESTING
|
||||||
|
Loading…
Reference in New Issue
Block a user