mda
mda

Reputation:

Visual Studio 2005 C++ debugger keeps stepping into disassembly view

The Visual Studio 2005 C++ debugger keeps stepping into disassembly view when I "Step into" or "Step Over". This is not something I want, so I have to keep right-clicking and "Go To Source Code".

It doesn't always do this - I think it gets confused when stepping between different projects in the same solution (static libs, and one console app) but all the projects have default settings and the "debug" configuration is selected, and cleaning and rebuilding doesn't make any difference.

Upvotes: 4

Views: 4125

Answers (1)

svlists
svlists

Reputation: 702

There is an option under the menu Tools/Options/Debugging/General. Make sure the "Show Disassembly If Source Is Not Available.” setting is turned off.

You can also look at General, Debugging, Options Dialog Box on the MSDN site.

Upvotes: 8

Related Questions