ダイレクトモードが正常に動かなかった問題を修正
This commit is contained in:
@@ -129,7 +129,7 @@ class VM
|
|||||||
}
|
}
|
||||||
void processBreakPoint()
|
void processBreakPoint()
|
||||||
{
|
{
|
||||||
if (currentSlot.debugInfo.location[pc].isBreakPoint)
|
if (currentSlot.debugInfo.location.length > pc && currentSlot.debugInfo.location[pc].isBreakPoint)
|
||||||
{
|
{
|
||||||
//TODO:まともにする
|
//TODO:まともにする
|
||||||
writefln("break point\nslot:%d,pc:%d,line:%d", currentSlotNumber, pc, currentSlot.debugInfo.location[pc].location.line);
|
writefln("break point\nslot:%d,pc:%d,line:%d", currentSlotNumber, pc, currentSlot.debugInfo.location[pc].location.line);
|
||||||
|
|||||||
Reference in New Issue
Block a user