![]() |
|
question about debugging dolphin - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Development Discussion (https://forums.dolphin-emu.org/Forum-development-discussion) +--- Thread: question about debugging dolphin (/Thread-question-about-debugging-dolphin) |
question about debugging dolphin - chelo248 - 12-16-2009 first , sorry about my english. second, i am starting with Dolphin. can i debug Dolphin with "visual c++ 2008 debugger"? i am trying to debug Star Fox Adventure, with the Dolphin debugger the game crash in this loop : ![]() but i need to know in wich part of the source code is this happening, how can i do that ? when i open the "Visual c++ debugger" with Dolphin is not loading the plugins. any comments/sugestion is welcome thanks
RE: question about debugging dolphin - shuffle2 - 12-17-2009 If you have visual studio setup correctly, when dolphin crashes you will be given the option of using VS's Just In Time debugger to debug the crash. However, if you want to start debugging from VS, you should make sure the working directory for Debugging is set to $(TargetDir) in the Dolphin project's properties. (Dolphin is probably trying to scan a nonexistant folder for plugins in your case.) RE: question about debugging dolphin - chelo248 - 12-17-2009 thank you. now the VS debugger open the plugins. now i am going to take a look the source code, according to John Peterson Starfox Adventure problem can be something in the DVDInterface that is wrong, but this can take me several months. lol. is not easy understand everything. ![]() thanks again shuffle2
RE: question about debugging dolphin - chelo248 - 01-05-2010 i have one new question, i want debug one game, using Visual c++ 2008 when i compile the "Release" (Dolphin.exe) version the game works (well , works until Dolphin hangs) but when i compile the "Debug" (DolphinD.exe) version Dolphin load the game but then i get black screen and 0 FPS. i don't know why the "Release" version works and the "Debug" version is not working. somebody can help me ? RE: question about debugging dolphin - CacoFFF - 01-06-2010 Did you make the Debug executable load the Debug versions of the plugins? RE: question about debugging dolphin - chelo248 - 01-06-2010 (01-06-2010, 08:28 AM)CacoFFF Wrote: Did you make the Debug executable load the Debug versions of the plugins? yes, of course. the Debug executable is not working but the Debug Fast executable is working, so i'm using Debug Fast. is very strange, don't you think? |