| 313 | } |
| 314 | |
| 315 | void SetHexEditorAddress(int gotoaddress) |
| 316 | { |
| 317 | |
| 318 | if (gotoaddress < 0) |
| 319 | gotoaddress = 0; |
| 320 | if (gotoaddress > (MaxSize-1)) |
| 321 | gotoaddress = (MaxSize-1); |
| 322 | |
| 323 | CursorStartAddy = gotoaddress; |
| 324 | CursorEndAddy = -1; |
| 325 | ChangeMemViewFocus(EditingMode, CursorStartAddy, -1); |
| 326 | } |
| 327 | |
| 328 | static void FlushUndoBuffer(){ |
| 329 | struct UNDOSTRUCT *tmp; |
no test coverage detected