[Allegro 4] Debugger w Microsoft Visual C++ 2010 Express
Ostatnio zmodyfikowano 2015-04-02 18:16
SeaMonster131 |
» 2015-03-31 19:20:45 |
|
Brunon3 Temat założony przez niniejszego użytkownika |
» 2015-03-31 19:25:58 @up: Dziękuję, jak mogłem zapomnieć o Google! :) PDB is a debug information file used by Visual Studio. These are system DLLs, which you don't have debug symbols for. Go to Tools->Options->Debugging->Symbols and select checkbox "Microsoft Symbol Servers", Visual Studio will download PDBs automatically. Or you may just ignore these warnings if you don't need to see correct call stack in these modules. |
Zrobiłem tak i powyższe błędy ustąpiły. :) Ale nadal wyrzuca: First-chance exception at 0x1004e967 (alleg42.dll) in The Construgert 3.exe: 0xC0000005: Access violation reading location 0x0000000c. Unhandled exception at 0x1004e967 (alleg42.dll) in The Construgert 3.exe: 0xC0000005: Access violation reading location 0x0000000c. |
? -BD. |
|
SeaMonster131 |
» 2015-03-31 20:11:40 Tak strzelam tylko: W funkcji Start() wczytujesz plik z dźwiękiem, ale dopiero potem instalujesz dźwięk install_sound(). void Start() { music = load_sample( "music.wav" ); }
void game() { Start(); install_sound( DIGI_AUTODETECT, MIDI_AUTODETECT, "" ); set_volume( 255, 255 ); }
|
|
Brunon3 Temat założony przez niniejszego użytkownika |
» 2015-03-31 20:26:44 @up: Wow, rzeczywiście tak robiłem. :D Ale poprawiłem to wywołując Start() po init'ach ale błąd nadal nie ustępuje. :( Jeszcze pokombinuję. Pozdrawiam. EDIT: Właśnie zauważyłem to Unhandled exception at 0x1004e967 (alleg42.dll) |
i czy to oznacza, że debugger nie znajduje "alleg42.dll"? Dałem tą DLL'ke do folderu Debug (z projektem) i do C:/Windows/System32. -BD. |
|
RazzorFlame |
» 2015-04-02 18:16:00 i czy to oznacza, że debugger nie znajduje "alleg42.dll"? |
Nie, to oznacza, że wystąpił nieobsłużony wyjątek w tej DLL-ce. Możliwe, że gdzieś podajesz jakieś bezsensowne dane jako argument. |
|
1 2 « 3 » |