Fixed an array out of bounds access in the debugger. Fixed a path problem with the wx vbam xpm icon. Patch by Mook.
This commit is contained in:
parent
ef62b19775
commit
427c63aa3d
|
@ -244,7 +244,7 @@ void printBreakRegList(bool verbose){
|
||||||
for (int j = 0; j < regBreakCounter[i][k]; j++){
|
for (int j = 0; j < regBreakCounter[i][k]; j++){
|
||||||
if (tmp->flags & 8)
|
if (tmp->flags & 8)
|
||||||
{
|
{
|
||||||
sprintf(monbuf, "No. %d:\tBreak if (signed)%s %08x\n", j, flagsToOP[tmp->flags], tmp->intVal); monprintf(monbuf);
|
sprintf(monbuf, "No. %d:\tBreak if (signed)%s %08x\n", j, flagsToOP[tmp->flags & 7], tmp->intVal); monprintf(monbuf);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
// ImageMagick makes the name wxvbam, but wx expects wxvbam_xpm
|
// ImageMagick makes the name wxvbam, but wx expects wxvbam_xpm
|
||||||
#define wxvbam wxvbam_xpm
|
#define wxvbam wxvbam_xpm
|
||||||
const
|
const
|
||||||
#include "xrx/wxvbam.xpm"
|
#include "xrc/vbam.xpm"
|
||||||
#undef wxvbam
|
#undef wxvbam
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue