Search
lxdream.org :: lxdream/src/dreamcast.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.c
changeset 1119:45602839e067
prev1109:700c5ab26a63
next1270:65fd19c07e2e
author Nathan Keynes <nkeynes@lxdream.org>
date Wed Dec 14 21:51:55 2011 +1000 (12 years ago)
permissions -rw-r--r--
last change Update maximum epilogue size
file annotate diff log raw
1.1 --- a/src/dreamcast.c Thu Jun 10 22:13:16 2010 +1000
1.2 +++ b/src/dreamcast.c Wed Dec 14 21:51:55 2011 +1000
1.3 @@ -91,8 +91,10 @@
1.4 {
1.5 char *bios_path = lxdream_get_global_config_path_value(CONFIG_BIOS_PATH);
1.6 char *flash_path = lxdream_get_global_config_path_value(CONFIG_FLASH_PATH);
1.7 +
1.8 + /* Initialize the event queue first */
1.9 + event_init();
1.10
1.11 - dreamcast_register_module( &eventq_module );
1.12 /* Register the memory framework */
1.13 dreamcast_register_module( &mem_module );
1.14
1.15 @@ -127,6 +129,7 @@
1.16 dreamcast_register_module( &aica_module );
1.17 dreamcast_register_module( &maple_module );
1.18 dreamcast_register_module( &ide_module );
1.19 + dreamcast_register_module( &eventq_module );
1.20
1.21 g_free(bios_path);
1.22 g_free(flash_path);
.