trunk/src/emu/debug/dvdisasm.c
| r244901 | r244902 | |
| 319 | 319 | |
| 320 | 320 | // if we ran out of room, indicate more |
| 321 | 321 | string[maxchars - 1] = 0; |
| 322 | | if (byte < numbytes && maxchars > (char_num*2 -1)) |
| 322 | if (byte < numbytes && byte != minbytes && maxchars > (char_num*2 -1)) |
| 323 | 323 | string[maxchars - char_num] = string[maxchars - char_num - 1] = string[maxchars - char_num -2] = '.'; |
| 324 | 324 | } |
| 325 | 325 | |
| r244901 | r244902 | |
| 433 | 433 | m_last_direct_raw = source.m_space.direct().raw(); |
| 434 | 434 | m_last_change_count = source.m_device.debug()->comment_change_count(); |
| 435 | 435 | |
| 436 | | // now longer need to recompute |
| 436 | // no longer need to recompute |
| 437 | 437 | m_recompute = false; |
| 438 | 438 | return changed; |
| 439 | 439 | } |