~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/emu/debug/debugvw.c

  • Committer: Package Import Robot
  • Author(s): Cesare Falco
  • Date: 2011-11-30 18:50:10 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111130185010-02hcxybht1mn082w
Tags: 0.144-0ubuntu1
* New upstream release (LP: #913550)
* mame.install:
  - Added artwork/ images to be used with -effect switch
  - Be more selective with hash/ contents
* contrib/mame.ini: added /usr/share/games/mame/artwork/ to artpath

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
debug_view_source::debug_view_source(const char *name, device_t *device)
63
63
        : m_next(NULL),
64
64
          m_name(name),
65
 
          m_device(device)
 
65
          m_device(device),
 
66
          m_is_octal(false)
66
67
{
 
68
        device_execute_interface *intf;
 
69
        if (device && device->interface(intf))
 
70
                m_is_octal = intf->is_octal();
 
71
 
67
72
}
68
73
 
69
74