- Timestamp:
- 06/03/04 21:43:19 (21 years ago)
- File:
-
- 1 edited
-
ps/trunk/source/main.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ps/trunk/source/main.cpp
r392 r394 6 6 #include <cmath> 7 7 8 #include <fmod.h> 8 9 9 10 // Alan: For some reason if this gets included after anything else some … … 44 45 #include "gui/GUI.h" 45 46 #endif 47 46 48 47 49 CConsole* g_Console = 0; … … 472 474 473 475 476 if(FSOUND_Init(44100, 32, 0) == 0) 477 { 478 swprintf(err_msg, ERR_MSG_SIZE, L"Failed to initialise FMOD"); 479 display_startup_error(err_msg); 480 } 474 481 475 482 // set current directory to "$game_dir/data". … … 694 701 delete CRenderer::GetSingletonPtr(); 695 702 703 //shut down FMOD - needs adding to the atexit calls above 704 FSOUND_Close(); 705 696 706 exit(0); 697 707 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.
